Skip to content

Commit

Permalink
chore: Kill the test process
Browse files Browse the repository at this point in the history
Simply requesting it to close seems to be hanging in the latest Insider
release.
  • Loading branch information
dustinbyrne committed Feb 1, 2024
1 parent 17053b1 commit 2bc2a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/systemTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ async function main(): Promise<void> {
this.project = project;
};
const afterEach: Mocha.Func = async function () {
await Promise.all([this.app.waitForEvent('close'), this.app.close()]);
await Promise.all([this.app.waitForEvent('close'), this.app.process().kill()]);
};

const mocha = new Mocha({
Expand Down

0 comments on commit 2bc2a39

Please sign in to comment.