We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5855358 commit a8f97edCopy full SHA for a8f97ed
pkgs/test/CHANGELOG.md
@@ -4,6 +4,7 @@
4
* Require Dart 3.7
5
* Add `--coverage-path` and `--branch-coverage` options to `dart test`.
6
* Serve dart2wasm source map files.
7
+* Fix Node.js dart2wasm tests on windows.
8
* Doc edit: clarify in README that a platform selector includes the compiler.
9
10
## 1.26.3
pkgs/test/lib/src/runner/node/platform.dart
@@ -296,7 +296,7 @@ const { PassThrough } = require('stream');
296
const main = async () => {
297
const { instantiate, invoke } = await import("./$loader");
298
299
- const wasmContents = createReadStream("$wasmPath.wasm");
+ const wasmContents = createReadStream(String.raw`$wasmPath.wasm`);
300
const stream = new PassThrough();
301
wasmContents.pipe(stream);
302
0 commit comments