Marc Cataford
b77574e596
* refactor: replace fetch with axios * build(frontend): update test command to allow cli args passthrough
9 lines
219 B
JavaScript
9 lines
219 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "jsdom",
|
|
setupFilesAfterEnv: ["./tests/testSetup.ts"],
|
|
transform: {
|
|
"^.+\\.(ts|tsx)$": "ts-jest",
|
|
},
|
|
}
|