Check browser compile compatibility in integration tests

This commit is contained in:
mrjvs
2023-12-24 18:02:56 +01:00
parent c00ed69801
commit 0fe2fb40e1
7 changed files with 1087 additions and 1 deletions

8
tests/browser/index.ts Normal file
View File

@@ -0,0 +1,8 @@
import { makeProviders, makeStandardFetcher, targets } from '../../lib/index.mjs';
(window as any).TEST = () => {
makeProviders({
fetcher: makeStandardFetcher(fetch),
target: targets.ALL,
});
}