Skip to content

Commit fca593d

Browse files
committed
Fix unit testing (headless)
1 parent 3376ee2 commit fca593d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/headless/public/Terminal.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe('Headless API Tests', function (): void {
2222

2323
it('Proposed API check', async () => {
2424
term = new Terminal({ allowProposedApi: false });
25-
throws(() => term.markers, (error) => error.message === 'You must set the allowProposedApi option to true to use proposed API');
25+
throws(() => term.markers, (error: any) => error.message === 'You must set the allowProposedApi option to true to use proposed API');
2626
});
2727

2828
it('write', async () => {

0 commit comments

Comments
 (0)