mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
10 lines
384 B
JavaScript
10 lines
384 B
JavaScript
module.exports = {
|
|
roots: ["<rootDir>/src"],
|
|
testMatch: ["**/*.test.+(ts|tsx)"],
|
|
transform: {
|
|
"^.+\\.(ts|tsx)$": "ts-jest"
|
|
},
|
|
// The environment is the DOM by default, so discord.js fails to load because it's calling a Node-specific function.
|
|
// https://github.com/discordjs/discord.js/issues/3971#issuecomment-602010271
|
|
testEnvironment: "node"
|
|
};
|