File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 2929 run : npm run lint
3030 - name : Typecheck
3131 run : npm run typecheck
32+ - name : Unit
33+ run : npm run test
Original file line number Diff line number Diff line change @@ -155,15 +155,13 @@ const config: Config = {
155155 // testLocationInResults: false,
156156
157157 // The glob patterns Jest uses to detect test files
158- // testMatch: [
159- // "**/__tests__/**/*.[jt]s?(x)",
160- // " **/?(*.)+(spec|test).[tj]s?(x)"
161- // ],
158+ testMatch : [
159+ // "**/__tests__/**/*.[jt]s?(x)",
160+ ' **/?(*.)+(spec|test).[tj]s?(x)' ,
161+ ] ,
162162
163163 // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
164- // testPathIgnorePatterns: [
165- // "/node_modules/"
166- // ],
164+ testPathIgnorePatterns : [ '.*/__tests__/.*' ] ,
167165
168166 // The regexp pattern or array of patterns that Jest uses to detect test files
169167 // testRegex: [],
You can’t perform that action at this time.
0 commit comments