We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7226a2 commit 05f34c6Copy full SHA for 05f34c6
.github/workflows/ci.yml
@@ -29,3 +29,5 @@ jobs:
29
run: npm run lint
30
- name: Typecheck
31
run: npm run typecheck
32
+ - name: Unit
33
+ run: npm run test
jest.config.ts
@@ -155,10 +155,10 @@ const config: Config = {
155
// testLocationInResults: false,
156
157
// The glob patterns Jest uses to detect test files
158
- // testMatch: [
159
- // "**/__tests__/**/*.[jt]s?(x)",
160
- // "**/?(*.)+(spec|test).[tj]s?(x)"
161
- // ],
+ testMatch: [
+ // "**/__tests__/**/*.[jt]s?(x)",
+ '**/?(*.)+(spec).[tj]s?(x)',
+ ],
162
163
// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
164
// testPathIgnorePatterns: [
0 commit comments