| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -46,8 +46,8 @@ proc.stdout.on('data', (data) => { | |||
| 46 | 46 | proc.stderr.on('data', (data) => stderr += data); | |
| 47 | 47 | ||
| 48 | 48 | process.on('exit', (code) => { | |
| 49 | - assert.equal(code, 0, 'the program should exit cleanly'); | ||
| 50 | - assert.equal(stdout.includes('{ a: \'b\' }'), true, | ||
| 51 | - 'the debugger should print the result of util.inspect'); | ||
| 52 | - assert.equal(stderr, '', 'stderr should be empty'); | ||
| 49 | + assert.strictEqual(code, 0, 'the program should exit cleanly'); | ||
| 50 | + assert.strictEqual(stdout.includes('{ a: \'b\' }'), true, | ||
| 51 | + 'the debugger should print the result of util.inspect'); | ||
| 52 | + assert.strictEqual(stderr, '', 'stderr should be empty'); | ||
| 53 | 53 | }); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments