webamp/config/jest.unit.js
2022-03-09 21:40:01 -08:00

17 lines
481 B
JavaScript

module.exports = {
displayName: "test",
rootDir: "../",
testRegex: "\\.test\\.(js|ts|tsx)$",
moduleFileExtensions: ["js", "tsx", "ts"],
testPathIgnorePatterns: [
"/node_modules/",
"dist",
// TODO: Add these as we can...
"/packages/webamp/",
// TODO: Fix config improt so that this can work.
"/packages/webamp-modern/src/__tests__/integration*",
],
testEnvironment: "jsdom",
setupFiles: ["<rootDir>/packages/skin-database/jest-setup.js"],
};