Start server in background on CI

This commit is contained in:
Jeremy Tuloup 2021-01-28 14:29:34 +01:00
parent ba396897ed
commit 4c9927341e
2 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@
"clean": "rimraf build",
"prepublishOnly": "yarn run build",
"test": "jest",
"test:pwdebug": "PWDEBUG=1 jest",
"test:cov": "jest --collect-coverage",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",

View File

@ -33,7 +33,7 @@
"release:patch": "node ./buildutils/lib/release-patch.js",
"start": "jupyter classic --config ./app/test/jupyter_server_config.py --no-browser",
"test": "lerna run test",
"test:ci": "run-p start test",
"test:ci": "(jlpm run start&) && jlpm run test",
"update:dependency": "node ./node_modules/@jupyterlab/buildutils/lib/update-dependency.js --lerna"
},
"husky": {