mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
19 lines
547 B
JavaScript
19 lines
547 B
JavaScript
module.exports = {
|
|
displayName: "test",
|
|
rootDir: "../",
|
|
testRegex: "\\.test\\.(js|ts|tsx)$",
|
|
moduleFileExtensions: ["js", "tsx", "ts", "json"],
|
|
testPathIgnorePatterns: [
|
|
"/node_modules/",
|
|
"dist",
|
|
// TODO: Add these as we can...
|
|
"/packages/webamp/",
|
|
// TODO: Fix config import so that this can work.
|
|
"/packages/webamp-modern/src/__tests__/integration*",
|
|
],
|
|
testEnvironment: "jsdom",
|
|
setupFiles: ["<rootDir>/packages/skin-database/jest-setup.js"],
|
|
transform: {
|
|
"^.+\\.(t|j)sx?$": ["@swc/jest"],
|
|
},
|
|
};
|