mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 13:23:34 +00:00
Update sdk-internal to 374 (fix breaking changes) (#17325)
* feat: update sdk-internal * fix: symbol.dispose breaking change * fix: TextEncoder/Decoder breaking change * fix: move polyfills to a global setup script * typo
This commit is contained in:
@@ -9,6 +9,8 @@ module.exports = {
|
||||
// Also anecdotally improves performance when run locally
|
||||
maxWorkers: 3,
|
||||
|
||||
setupFiles: ["<rootDir>/../../libs/shared/polyfill-node-globals.ts"],
|
||||
|
||||
transform: {
|
||||
"^.+\\.tsx?$": [
|
||||
"ts-jest",
|
||||
|
||||
11
libs/shared/polyfill-node-globals.ts
Normal file
11
libs/shared/polyfill-node-globals.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { TextEncoder, TextDecoder } from "util";
|
||||
|
||||
// SDK/WASM code relies on TextEncoder/TextDecoder being available globally
|
||||
// We can't use `test.environment.ts` because that breaks other tests that rely on
|
||||
// the default jest jsdom environment
|
||||
if (!(globalThis as any).TextEncoder) {
|
||||
(globalThis as any).TextEncoder = TextEncoder;
|
||||
}
|
||||
if (!(globalThis as any).TextDecoder) {
|
||||
(globalThis as any).TextDecoder = TextDecoder as unknown as typeof globalThis.TextDecoder;
|
||||
}
|
||||
Reference in New Issue
Block a user