Skip to content

Commit

Permalink
Okay pls
Browse files Browse the repository at this point in the history
  • Loading branch information
D4N14L committed Dec 7, 2023
1 parent cf5adf6 commit ff1edfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/node-core-library/src/test/Executable.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ describe('Executable process tests', () => {
expect(result.exitCode).toEqual(1);
expect(typeof result.stdout).toEqual('string');
expect(typeof result.stderr).toEqual('string');
expect(result.stdout).toEqual('');
expect(result.stdout.indexOf('Executing javascript-file.js with args:')).toEqual(-1);
expect(result.stderr.endsWith('This is a failure'));
});

Expand Down

0 comments on commit ff1edfb

Please sign in to comment.