move tests-ui

This commit is contained in:
huchenlei
2024-06-13 14:09:15 -04:00
parent 36f55018ce
commit 33fe18fa41
17 changed files with 8501 additions and 0 deletions

11
tests-ui/jest.config.js Normal file
View File

@@ -0,0 +1,11 @@
/** @type {import('jest').Config} */
const config = {
testEnvironment: "jsdom",
setupFiles: ["./globalSetup.js"],
setupFilesAfterEnv: ["./afterSetup.js"],
clearMocks: true,
resetModules: true,
testTimeout: 10000
};
module.exports = config;