summaryrefslogtreecommitdiff
path: root/tests/026_workers.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-04-16 15:13:42 -0400
committerGitHub <noreply@github.com>2019-04-16 15:13:42 -0400
commit1bfb44336914a775cd01120165517394d30aec23 (patch)
tree2f126b5f36ad8fe2ddd9cae118058affd413c68d /tests/026_workers.ts
parent0c463582206881b6461742633a67f51632db614e (diff)
Implement async module loading in CLI (#2084)
Diffstat (limited to 'tests/026_workers.ts')
-rw-r--r--tests/026_workers.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/026_workers.ts b/tests/026_workers.ts
index 0cf8f53b1..a7deee217 100644
--- a/tests/026_workers.ts
+++ b/tests/026_workers.ts
@@ -1,5 +1,5 @@
-const jsWorker = new Worker("tests/subdir/test_worker.js");
-const tsWorker = new Worker("tests/subdir/test_worker.ts");
+const jsWorker = new Worker("./tests/subdir/test_worker.js");
+const tsWorker = new Worker("./tests/subdir/test_worker.ts");
tsWorker.onmessage = e => {
console.log("Received ts: " + e.data);