-
- Downloads
Init gitlab ci
- don't ignore package-lock.json as its needed for test (via npm ci) - added jest-junit for proper gitlab integration
.gitlab-ci.yml
0 → 100644
package-lock.json
0 → 100644
Source diff could not be displayed: it is too large. Options to address this: view the blob.
... | ... | @@ -18,7 +18,8 @@ |
"start": "nwb serve-react-demo", | ||
"test": "npm run lint && jest", | ||
"test:coverage": "jest --coverage", | ||
"test:watch": "jest --watch" | ||
"test:watch": "jest --watch", | ||
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --watchAll=false" | ||
}, | ||
"dependencies": { | ||
"@psychobolt/react-paperjs": "< 1.0", | ||
... | ... | @@ -61,6 +62,7 @@ |
"eslint-plugin-react": "^7.20.3", | ||
"jest": "^26.1.0", | ||
"jest-canvas-mock": "^2.2.0", | ||
"jest-junit": "^15.0.0", | ||
"jest-localstorage-mock": "^2.4.2", | ||
"mirador": "^3.0.0-rc.5", | ||
"nwb": "^0.24.7", | ||
... | ... |
Please register or sign in to comment