Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Missing *.spec.tsx pattern in multiple tsconfig.spec.json files #557

Merged
merged 1 commit into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Missing *.spec.tsx pattern in multiple tsconfig.spec.json files
  • Loading branch information
emil-litwiniec committed May 16, 2024
commit 13e0b6620324e8747495197e555bf9d202089cf5
1 change: 1 addition & 0 deletions packages/webapp-libs/webapp-contentful/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"jest.config.ts",
"src/**/*.test.ts",
"src/**/*.spec.ts",
"src/**/*.spec.tsx",
"src/**/*.d.ts",
"src/tests/**/*.ts",
"src/tests/**/*.tsx"
Expand Down
4 changes: 1 addition & 3 deletions packages/webapp-libs/webapp-core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"types": ["@testing-library/jest-dom"],
"noFallthroughCasesInSwitch": true,
"jsx": "react-jsx"
"noFallthroughCasesInSwitch": true
},
"files": [],
"include": [],
Expand Down
5 changes: 3 additions & 2 deletions packages/webapp-libs/webapp-core/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"outDir": "../../../dist/out-tsc",
"module": "commonjs",
"types": ["jest", "node", "@types/gtag.js"],
"esModuleInterop": true
"esModuleInterop": true,
"jsx": "react-jsx"
},
"include": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts", "src/**/*.d.ts"]
"include": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.tsx", "src/**/*.spec.ts", "src/**/*.d.ts"]
}
2 changes: 1 addition & 1 deletion packages/webapp-libs/webapp-emails/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"esModuleInterop": true,
"jsx": "react-jsx"
},
"include": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts", "src/**/*.d.ts"]
"include": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.tsx", "src/**/*.spec.ts", "src/**/*.d.ts"]
}
Loading