File tree Expand file tree Collapse file tree 5 files changed +14
-0
lines changed
react-router-dom-v5-compat Expand file tree Collapse file tree 5 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 34
34
check-latest : true
35
35
node-version-file : " .nvmrc"
36
36
37
+ - name : Disable GitHub Actions Annotations
38
+ run : |
39
+ echo "::remove-matcher owner=tsc::"
40
+ echo "::remove-matcher owner=eslint-compact::"
41
+ echo "::remove-matcher owner=eslint-stylish::"
42
+
37
43
- name : 📥 Install deps
38
44
run : yarn --frozen-lockfile
39
45
Original file line number Diff line number Diff line change
1
+ /** @type {import('jest').Config } */
1
2
module . exports = {
2
3
testEnvironment : "jsdom" ,
3
4
testMatch : [ "**/__tests__/*-test.[jt]s?(x)" ] ,
@@ -20,4 +21,5 @@ module.exports = {
20
21
"^react-router$" : "<rootDir>/../react-router/index.ts" ,
21
22
"^react-router-dom-v5-compat$" : "<rootDir>/index.ts" ,
22
23
} ,
24
+ reporters : [ "default" ] ,
23
25
} ;
Original file line number Diff line number Diff line change
1
+ /** @type {import('jest').Config } */
1
2
module . exports = {
2
3
testEnvironment : "jsdom" ,
3
4
testMatch : [ "**/__tests__/*-test.[jt]s?(x)" ] ,
@@ -20,4 +21,5 @@ module.exports = {
20
21
"^react-router$" : "<rootDir>/../react-router/index.ts" ,
21
22
"^react-router-dom$" : "<rootDir>/index.tsx" ,
22
23
} ,
24
+ reporters : [ "default" ] ,
23
25
} ;
Original file line number Diff line number Diff line change
1
+ /** @type {import('jest').Config } */
1
2
module . exports = {
2
3
preset : "react-native" ,
3
4
testMatch : [ "**/__tests__/*-test.[jt]s?(x)" ] ,
@@ -23,4 +24,5 @@ module.exports = {
23
24
"^react-router$" : "<rootDir>/../react-router/index.ts" ,
24
25
"^react-router-native$" : "<rootDir>/index.tsx" ,
25
26
} ,
27
+ reporters : [ "default" ] ,
26
28
} ;
Original file line number Diff line number Diff line change
1
+ /** @type {import('jest').Config } */
1
2
module . exports = {
2
3
testEnvironment : "jsdom" ,
3
4
testMatch : [ "**/__tests__/*-test.(js|ts)" ] ,
@@ -15,4 +16,5 @@ module.exports = {
15
16
"@web3-storage/multipart-parser"
16
17
) ,
17
18
} ,
19
+ reporters : [ "default" ] ,
18
20
} ;
You can’t perform that action at this time.
0 commit comments