Unify tests into the top level workspace

This commit is contained in:
Jordan Eldredge 2022-03-06 22:37:37 -08:00
parent c706110e6f
commit 1880070205
24 changed files with 7979 additions and 2615 deletions

14
config/jest.unit.js Normal file
View file

@ -0,0 +1,14 @@
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/",
"/packages/webamp-modern/src/__tests__/integration*",
],
testEnvironment: "jsdom",
};