mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import 'jest-preset-angular/setup-jest';
|
|
|
|
import { webcrypto } from 'node:crypto';
|
|
|
|
Object.defineProperty(window, 'crypto', {
|
|
get() {
|
|
return webcrypto;
|
|
},
|
|
});
|
|
|
|
global.EventSource = class {} as any;
|