diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-04-16 15:13:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-16 15:13:42 -0400 |
commit | 1bfb44336914a775cd01120165517394d30aec23 (patch) | |
tree | 2f126b5f36ad8fe2ddd9cae118058affd413c68d /tests/026_workers.ts | |
parent | 0c463582206881b6461742633a67f51632db614e (diff) |
Implement async module loading in CLI (#2084)
Diffstat (limited to 'tests/026_workers.ts')
-rw-r--r-- | tests/026_workers.ts | 4 |
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); |