Skip to content

Commit bfbe721

Browse files
committed
more
1 parent 8ca1695 commit bfbe721

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/smoke/run/run-script.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ const ensureStreams = (name: string, script: string, stdout: string, stderr: str
3030
true
3131
);
3232
assert(result.success);
33-
assertEquals(result.stdout, stdout);
34-
assertEquals(result.stderr, stderr);
33+
assertEquals((result.stdout ?? "").replaceAll("\r", ""), stdout);
34+
assertEquals((result.stderr ?? "").replaceAll("\r", ""), stderr);
3535
},
3636
{
3737
teardown: () => {

0 commit comments

Comments
 (0)