Skip to content

Commit

Permalink
Fix test, fix all unit tests running on mac/linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Jul 15, 2024
1 parent 2a6cd82 commit 56ec862
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions bin/test_unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ const COVERAGE_LINES_THRESHOLD = 40;
const env = { ...process.env };
env.NODE_PATH = path.resolve(__dirname, '../out-esbuild');

let testFiles = [
'./out-esbuild/**/*test.js',
'./addons/**/out-esbuild/*test.js',
];
let testFiles = ['**/out-esbuild/**/*.test.js'];

let flagArgs = [];

Expand Down
2 changes: 1 addition & 1 deletion src/headless/public/Terminal.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ describe('Headless API Tests', function (): void {

it('dispose', async () => {
term.dispose();
strictEqual((term as any)._core._isDisposed, true);
strictEqual((term as any)._core._store.isDisposed, true);
});
});

Expand Down

0 comments on commit 56ec862

Please sign in to comment.