Skip to content

Commit

Permalink
Fix tests final time
Browse files Browse the repository at this point in the history
  • Loading branch information
D4N14L committed Dec 7, 2023
1 parent cad5ac9 commit 2b418dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libraries/node-core-library/src/test/Executable.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ describe('Executable process tests', () => {
expect(result.exitCode).toEqual(0);
expect(Buffer.isBuffer(result.stdout)).toEqual(true);
expect(Buffer.isBuffer(result.stderr)).toEqual(true);
expect(
result.stdout.toString('utf8').startsWith('Executing npm-binary-wrapper.cmd with args:\r\n"1 2 3"')
).toEqual(true);
expect(result.stdout.toString('utf8').startsWith('Executing npm-binary-wrapper.cmd with args:')).toEqual(
true
);
expect(result.stderr.toString('utf8')).toEqual('');
});

Expand Down

0 comments on commit 2b418dc

Please sign in to comment.