File tree 2 files changed +36
-1
lines changed
2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2.0" ,
3
+ "configurations" : [
4
+ {
5
+ "type" : " node" ,
6
+ "request" : " launch" ,
7
+ "name" : " Jest All" ,
8
+ "program" : " ${workspaceFolder}/node_modules/.bin/jest" ,
9
+ "args" : [" --runInBand" ],
10
+ "console" : " integratedTerminal" ,
11
+ "internalConsoleOptions" : " neverOpen" ,
12
+ "disableOptimisticBPs" : true ,
13
+ "windows" : {
14
+ "program" : " ${workspaceFolder}/node_modules/jest/bin/jest" ,
15
+ }
16
+ },
17
+ {
18
+ "type" : " node" ,
19
+ "request" : " launch" ,
20
+ "name" : " Jest Current File" ,
21
+ "program" : " ${workspaceFolder}/node_modules/.bin/jest" ,
22
+ "args" : [
23
+ " ${fileBasenameNoExtension}" ,
24
+ " --config" ,
25
+ " jest.config.js"
26
+ ],
27
+ "console" : " integratedTerminal" ,
28
+ "internalConsoleOptions" : " neverOpen" ,
29
+ "disableOptimisticBPs" : true ,
30
+ "windows" : {
31
+ "program" : " ${workspaceFolder}/node_modules/jest/bin/jest" ,
32
+ }
33
+ }
34
+ ]
35
+ }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ module.exports = {
7
7
] ,
8
8
preset : "ts-jest" ,
9
9
testMatch : null ,
10
- testRegex : "/__tests__/.* \\.test\\.(js|ts)$" ,
10
+ testRegex : "/apollo-gateway/src/ __tests__/integration/requires \\.test\\.(js|ts)$" ,
11
11
testPathIgnorePatterns : [
12
12
"/node_modules/" ,
13
13
"/dist/"
You can’t perform that action at this time.
0 commit comments