Skip to content

Commit

Permalink
ci: remove exit code check
Browse files Browse the repository at this point in the history
  • Loading branch information
xCykrix committed Oct 12, 2024
1 parent 5ea1833 commit c367bf6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion test/mod.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ Deno.test('mod.ts production', async (t) => {
console.info(stdout);
console.info(stderr);
assertEquals(stderr.length, 0);
assertEquals(code, 0);
},
});
});
Expand Down
1 change: 0 additions & 1 deletion test/transport.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ Deno.test('transport.ts', async (t) => {
assertEquals(stdout, `consume ${TransportOp.HANDLE} test message`);
// assertEquals(/\[.*\] TRACE: Hello World \[{ test: 123 }\]/.test(stdout), true);
assertEquals(stderr.length, 0);
assertEquals(code, 0);
},
});
});

0 comments on commit c367bf6

Please sign in to comment.