mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
11 lines
226 B
JavaScript
11 lines
226 B
JavaScript
module.exports = {
|
|
preset: "ts-jest",
|
|
rootDir: "./",
|
|
displayName: "supabase",
|
|
setupFilesAfterEnv: ["<rootDir>/test/jest.setup.ts"],
|
|
testEnvironment: "jsdom",
|
|
moduleNameMapper: {
|
|
"^(..?/.+).js?$": "$1",
|
|
},
|
|
};
|