blob: b1d086314cc981a2569d1462b5ce2a7cd79d7507 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
importScripts("../testharness.js");
test(
function(test) {
assert_true(true, "True is true");
},
"Worker test that completes successfully");
test(
function(test) {
assert_true(false, "Failing test");
},
"Worker test that fails ('FAIL')");
async_test(
function(test) {
assert_true(true, "True is true");
},
"Worker test that times out ('TIMEOUT')");
async_test("Worker test that doesn't run ('NOT RUN')");
async_test(
function(test) {
self.setTimeout(
function() {
test.done();
},
0);
},
"Worker async_test that completes successfully");
// An explicit done() is required for dedicated and shared web workers.
done();
|