0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00

chore: update functional script name

This commit is contained in:
Juan Picado @jotadeveloper 2018-06-23 20:40:30 +02:00
parent 90e700ce78
commit 32e64c0fe3
No known key found for this signature in database
GPG key ID: 18AC54485952D158
3 changed files with 5 additions and 5 deletions

View file

@ -103,7 +103,7 @@ jobs:
- run:
name: Test with Node 8
command: yarn test
command: yarn test:func
command: yarn test:functional
test_node9:
<<: *defaults
@ -113,7 +113,7 @@ jobs:
- run:
name: Test with Node 9
command: yarn test
command: yarn test:func
command: yarn test:functional
- save_cache:
key: *coverage_key
paths:
@ -127,7 +127,7 @@ jobs:
- run:
name: Test with Node 10
command: yarn run test
command: yarn test:func
command: yarn test:functional
test_e2e:
<<: *defaults

View file

@ -156,9 +156,9 @@
"pretest": "npm run code:build",
"test": "npm run test:unit",
"test:unit": "cross-env NODE_ENV=test BABEL_ENV=test TZ=UTC jest --config ./jest.config.unit.js --maxWorkers 2",
"test:func": "cross-env NODE_ENV=testOldEnv jest --config ./test/jest.config.func.js --testPathPattern ./test/functional/index*",
"test:functional": "cross-env NODE_ENV=testOldEnv jest --config ./test/jest.config.func.js --testPathPattern ./test/functional/index*",
"test:e2e": "cross-env BABEL_ENV=testOldEnv jest --config ./test/jest.config.e2e.js",
"test:all": "npm run test && npm run test:func && npm run test:e2e",
"test:all": "npm run test && npm run test:functional && npm run test:e2e",
"pre:ci": "npm run lint && npm run build:webui",
"commitmsg": "commitlint -e $GIT_PARAMS",
"coverage:publish": "codecov",