jest.config.js 185 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
/** @type {import('jest').Config} */
const config = {
	testEnvironment: "jsdom",
	setupFiles: ["./globalSetup.js"],
	clearMocks: true,
	resetModules: true,
};

module.exports = config;