We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3793809 commit 8636472Copy full SHA for 8636472
packages/cli-repl/src/cli-repl.spec.ts
@@ -981,7 +981,10 @@ describe('CliRepl', () => {
981
expect(output).to.include('on clirepltest> ');
982
});
983
984
- it('renders the prompt correctly on interrupt', async() => {
+ it('renders the prompt correctly on interrupt', async function() {
985
+ if (process.platform === 'win32') { // cannot trigger SIGINT on Windows
986
+ return this.skip();
987
+ }
988
input.write('while(true) { sleep(500); }\n');
989
process.kill(process.pid, 'SIGINT');
990
0 commit comments