Folo/setup-file.ts

17 lines
268 B
TypeScript

// @ts-nocheck
import "fake-indexeddb/auto"
import { enableMapSet } from "immer"
globalThis.window = {
location: new URL("https://example.com"),
__dbIsReady: true,
}
if (!globalThis.navigator) {
globalThis.navigator = {
onLine: true,
}
}
enableMapSet()