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 3376ee2 commit fca593dCopy full SHA for fca593d
src/headless/public/Terminal.test.ts
@@ -22,7 +22,7 @@ describe('Headless API Tests', function (): void {
22
23
it('Proposed API check', async () => {
24
term = new Terminal({ allowProposedApi: false });
25
- throws(() => term.markers, (error) => error.message === 'You must set the allowProposedApi option to true to use proposed API');
+ throws(() => term.markers, (error: any) => error.message === 'You must set the allowProposedApi option to true to use proposed API');
26
});
27
28
it('write', async () => {
0 commit comments