Skip to content
Open
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<link href="./src/global.css" rel="stylesheet" />
<!-- Default theme loaded first for instant styling and first load -->
<link
href="./src/themes/Themes/Blue/Blue.theme.css"
href="./src/ui/resources/themes/Palettes/Blue/Blue.theme.css"
rel="stylesheet"
id="theme-link"
/>
Expand Down
21 changes: 21 additions & 0 deletions Build/jest.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
testEnvironment: "jsdom",
roots: ["<rootDir>/tests"],
testMatch: ["**/*.test.ts", "**/*.spec.ts"],
moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json"],
transform: {
"^.+\\.tsx?$": ["ts-jest", { useESM: true }],
},
moduleNameMapper: {
"^@core/(.*)$": "<rootDir>/src/core/$1",
"^@platform/(.*)$": "<rootDir>/src/platform/$1",
},
setupFiles: ["<rootDir>/tests/__mocks__/browser.ts"],
collectCoverageFrom: [
"src/core/engine/**/*.ts",
"src/platform/audio/**/*.ts",
],
coverageDirectory: "coverage",
coverageReporters: ["text", "json", "html"],
verbose: true,
};
Loading
Loading