|
21 | 21 | "build:logger": "node scripts/build-logger.js", |
22 | 22 | "lint": "eslint src test", |
23 | 23 | "test": "npm run lint && npm run test:types && npm run test:unit && npm run test:ssr && npm run test:e2e", |
24 | | - "test:unit": "jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json", |
| 24 | + "test:unit": "jest --testPathIgnorePatterns test/e2e", |
25 | 25 | "test:e2e": "node test/e2e/runner.js", |
26 | | - "test:ssr": "cross-env VUE_ENV=server jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json", |
| 26 | + "test:ssr": "cross-env VUE_ENV=server jest --testPathIgnorePatterns test/e2e", |
27 | 27 | "test:types": "tsc -p types/test", |
| 28 | + "coverage": "jest --testPathIgnorePatterns test/e2e --coverage", |
28 | 29 | "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", |
29 | 30 | "release": "node scripts/release.js", |
30 | 31 | "docs": "vuepress dev docs", |
|
44 | 45 | "vue": "^2.0.0" |
45 | 46 | }, |
46 | 47 | "devDependencies": { |
| 48 | + "@babel/core": "^7.9.0", |
| 49 | + "@babel/preset-env": "^7.9.5", |
47 | 50 | "@rollup/plugin-buble": "^0.21.3", |
48 | 51 | "@rollup/plugin-commonjs": "^11.1.0", |
49 | 52 | "@rollup/plugin-node-resolve": "^7.1.3", |
50 | 53 | "@rollup/plugin-replace": "^2.3.2", |
51 | 54 | "@types/node": "^13.13.2", |
52 | | - "babel-core": "^6.22.1", |
53 | | - "babel-loader": "^7.1.2", |
54 | | - "babel-plugin-transform-object-rest-spread": "^6.23.0", |
55 | | - "babel-polyfill": "^6.22.0", |
56 | | - "babel-preset-env": "^1.5.1", |
| 55 | + "babel-jest": "^25.4.0", |
| 56 | + "babel-loader": "^8.1.0", |
57 | 57 | "brotli": "^1.3.2", |
58 | 58 | "chalk": "^4.0.0", |
59 | 59 | "chromedriver": "^80.0.1", |
|
66 | 66 | "eslint-plugin-vue-libs": "^4.0.0", |
67 | 67 | "execa": "^4.0.0", |
68 | 68 | "express": "^4.17.1", |
69 | | - "jasmine": "2.8.0", |
70 | | - "jasmine-core": "2.8.0", |
| 69 | + "jest": "^25.4.0", |
71 | 70 | "nightwatch": "^1.3.1", |
72 | 71 | "nightwatch-helpers": "^1.2.0", |
| 72 | + "regenerator-runtime": "^0.13.5", |
73 | 73 | "rollup": "^2.7.2", |
74 | 74 | "rollup-plugin-terser": "^5.3.0", |
75 | 75 | "semver": "^7.3.2", |
|
0 commit comments