snort/packages/system/tests/setupTests.ts

6 lines
204 B
TypeScript
Raw Normal View History

2023-06-08 10:45:23 +00:00
import { TextEncoder, TextDecoder } from "util";
2023-06-14 14:03:07 +00:00
import { Crypto } from "@peculiar/webcrypto";
2023-06-08 10:45:23 +00:00
Object.assign(global, { TextDecoder, TextEncoder });
2023-07-22 18:37:46 +00:00
Object.assign(globalThis.window.crypto, new Crypto());