File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,5 @@ echo "Entering working directory $targetDir"
21
21
cd $targetDir
22
22
echo " Installing node version $nodeVersion "
23
23
nvm install $nodeVersion
24
- echo " npm ci"
25
- npm ci
26
- echo " npm run compile"
27
- npm run compile
28
- echo " init e2e test subpackage"
29
- npm --prefix e2e/tests ci
30
24
echo " npm run coverage"
31
25
E2E_TEST=1 npm run coverage
Original file line number Diff line number Diff line change 3
3
4
4
echo $PWD
5
5
6
+ npm ci
7
+ echo " npm run compile"
8
+ npm run compile
9
+ echo " init e2e test subpackage"
10
+ npm --prefix e2e/tests ci
11
+ echo " npm run coverage"
12
+ E2E_TEST=1 npm run coverage
6
13
docker exec nut-ci bash -c " bash $PWD /.build/build.sh ${PWD} ${TRAVIS_NODE_VERSION} "
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ module.exports = {
8
8
preset : "ts-jest" ,
9
9
testEnvironment : "node" ,
10
10
testMatch : process . env . E2E_TEST ?
11
- [ "**/__tests__/? (e2e)/**/*.[jt]s?(x)" , "**/?(*.)? (e2e.)+(spec|test).[jt]s?(x)" ] :
11
+ [ "**/__tests__/(e2e)/**/*.[jt]s?(x)" , "**/?(*.)(e2e.)+(spec|test).[jt]s?(x)" ] :
12
12
[ "**/__tests__/!(e2e)/**/*.[jt]s?(x)" , "**/!(*.e2e.*)+(spec|test).[jt]s?(x)" ] ,
13
13
testPathIgnorePatterns : [
14
14
"/node_modules/" ,
You can’t perform that action at this time.
0 commit comments