Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit ffb6384

Browse files
committed
test(SSR): fix types
1 parent 59816a6 commit ffb6384

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/index.ssr.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ import Child, { TEXT } from './__mocks__/ChildComponent';
1111
// @ts-ignore
1212
config.stubs.transition = false;
1313

14-
let windowSpy;
14+
let windowSpy: any;
1515

1616
describe('SSR', () => {
1717
beforeEach(() => {
1818
windowSpy = jest.spyOn(window, 'window', 'get');
19+
// @ts-ignore
1920
windowSpy.mockImplementation(() => undefined);
2021
});
2122

0 commit comments

Comments
 (0)