mirror of
https://github.com/servo/servo.git
synced 2025-08-20 04:45:33 +01:00
Update web-platform-tests to revision ef44bff0adaa07f2e420a0cbc1bc493cd5786656
This commit is contained in:
parent
61cadfa9a6
commit
67592a2228
61 changed files with 981 additions and 481 deletions
|
@ -1,13 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8">
|
||||
<title>KV Storage: keys() trickier tests</title>
|
||||
<meta name="timeout" content="long">
|
||||
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
|
||||
<script type="module">
|
||||
import { testWithArea } from "./helpers/kvs-tests.js";
|
||||
import * as classAssert from "./helpers/class-assert.js";
|
||||
import * as iterAssert from "./helpers/iter-assert.js";
|
||||
import {
|
||||
assertAsyncIteratorEquals,
|
||||
assertAsyncIteratorCustomEquals,
|
||||
|
@ -62,7 +63,7 @@ testWithArea(async area => {
|
|||
await iter.next()
|
||||
];
|
||||
|
||||
classAssert.iterResults(iterResults, [
|
||||
iterAssert.iterResults(iterResults, [
|
||||
[1, false],
|
||||
[2, false],
|
||||
[3, false],
|
||||
|
@ -88,7 +89,7 @@ testWithArea(async area => {
|
|||
];
|
||||
const iterResults = await Promise.all(promises);
|
||||
|
||||
classAssert.iterResults(iterResults, [
|
||||
iterAssert.iterResults(iterResults, [
|
||||
[1, false],
|
||||
[2, false],
|
||||
[3, false],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue