File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 46
46
"serve" : " http-server" ,
47
47
"serve:silent" : " http-server --silent" ,
48
48
"webdriver" : " webdriver-manager" ,
49
- "e2e" : " jest --runInBand --config ./test/jestConfig.json" ,
50
49
"test" : " npm-run-all \" webdriver -- update\" build:prod --parallel -r \" webdriver -- start --quiet\" test:ci" ,
51
- "test:ci" : " run-p -r serve:silent e2e" ,
50
+ "test:unit" : " jest --config ./test/jestConfig.json test/unit" ,
51
+ "test:e2e" : " jest --runInBand --config ./test/jestConfig.json test/specs" ,
52
+ "test:ci" : " run-p -r serve:silent test:unit test:e2e" ,
52
53
"semantic-release" : " semantic-release pre && npm publish && semantic-release post"
53
54
},
54
55
"husky" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"setupTestFrameworkScriptFile" : " ./setupTests.js" ,
3
- "testMatch" : [
4
- " **/specs/**/*.js" ,
5
- " **/unit/**/*.js"
6
- ],
3
+ "testMatch" : [" **/*.js" ],
7
4
"globals" : {
8
5
"__baseUrl__" : " http://localhost:8080"
9
6
}
You can’t perform that action at this time.
0 commit comments