mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-02-06 10:46:46 +00:00
- Fix pnpm version mismatch in test_next_server.yml (8 → auto-detect 10) - Add concurrency group to cancel stale CI runs - Remove redundant setup-node step - Update jest.config.js for jsdom + tsx support - Add meetingStatusBatcher integration test (3 tests) - Extract createMeetingStatusBatcher factory for testability
24 lines
584 B
JavaScript
24 lines
584 B
JavaScript
module.exports = {
|
|
testEnvironment: "jest-environment-jsdom",
|
|
roots: ["<rootDir>/app"],
|
|
testMatch: ["**/__tests__/**/*.test.ts", "**/__tests__/**/*.test.tsx"],
|
|
collectCoverage: false,
|
|
transform: {
|
|
"^.+\\.[jt]sx?$": [
|
|
"ts-jest",
|
|
{
|
|
tsconfig: {
|
|
jsx: "react-jsx",
|
|
module: "esnext",
|
|
moduleResolution: "bundler",
|
|
esModuleInterop: true,
|
|
strict: false,
|
|
strictNullChecks: true,
|
|
downlevelIteration: true,
|
|
lib: ["dom", "dom.iterable", "esnext"],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|