Bug 1510196 [wpt PR 14253] - Remove timeout from promise_test, a=testonly

Automatic update from web-platform-tests
Remove timeout from promise_test (#14253)

Related: #11120
--

wpt-commits: 5df11b94ab1a46595153cd0dd94e4a2409a0a92b
wpt-pr: 14253
This commit is contained in:
qiuzhong 2018-11-30 18:03:45 +00:00 коммит произвёл James Graham
Родитель 81ece5a683
Коммит e2d8458afc
15 изменённых файлов: 16 добавлений и 28 удалений

Просмотреть файл

@ -52,8 +52,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -30,8 +30,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -48,8 +48,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -33,8 +33,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -70,8 +70,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -56,8 +56,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -43,8 +43,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -59,8 +59,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -27,8 +27,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -59,8 +59,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -69,8 +69,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}

Просмотреть файл

@ -24,7 +24,7 @@
<script>
setup({ explicit_timeout: true });
promise_test(createCookieTest("%s"), "DEBUG", { timeout: 3000 });
promise_test(createCookieTest("%s"), "DEBUG");
</script>
</body>

Просмотреть файл

@ -32,8 +32,7 @@
for (const i in TEST_CASES) {
const t = TEST_CASES[i];
promise_test(createCookieTest(t.file),
t.file + " - " + t.name,
{ timeout: 3000 });
t.file + " - " + t.name);
}
</script>

Просмотреть файл

@ -101,9 +101,9 @@
// create all the tests we need
for (var i = 0; i < kANIMATABLE_CSS_PROPERTIES.length; i++) {
testsIntermediate.push(async_test(kANIMATABLE_CSS_PROPERTIES[i][0] + " intermediate",
{ timeout: 2000, assert: "property " + kANIMATABLE_CSS_PROPERTIES[i][0] + " is animatable" }));
{ assert: "property " + kANIMATABLE_CSS_PROPERTIES[i][0] + " is animatable" }));
testsEnd.push(async_test(kANIMATABLE_CSS_PROPERTIES[i][0] + " end",
{ timeout: 2000, assert: "property " + kANIMATABLE_CSS_PROPERTIES[i][0] + " has correct value after transition's end" }));
{ assert: "property " + kANIMATABLE_CSS_PROPERTIES[i][0] + " has correct value after transition's end" }));
}
// getComputedStyle helper

Просмотреть файл

@ -101,7 +101,7 @@ function runTest(config)
// Typical test duration is 6 seconds on release builds
// (12 seconds on debug).
}, 'Waiting for a key.', {timeout: 20000});
}, 'Waiting for a key.');
// Wait for an 'encrypted' event
function wait_for_encrypted_event(video)