You've already forked tf2wikipricing
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import { GlobalRegistrator } from "@happy-dom/global-registrator";
|
|
import { mock } from "bun:test";
|
|
|
|
GlobalRegistrator.register();
|
|
Object.assign(global, require('jest-chrome'))
|
|
|
|
// Mock GM_fetch
|
|
globalThis.GM_fetch = mock(async () => {});
|