Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Erasmus <jerasmus@gitlab.com>2019-11-22 10:14:03 +0300
committerJacques Erasmus <jerasmus@gitlab.com>2019-11-22 10:14:03 +0300
commiteb032078e44393a07752cc390aaa0ca785c3b954 (patch)
treeb7362195930bfc51e683c605a1b14a0041804a98 /package.json
parentfc1677f3616847a70c196dfc94f6be7fa83160d0 (diff)
Add Jest as a frontend testing framework
Added Jest as a frontend testing framework
Diffstat (limited to 'package.json')
-rw-r--r--package.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/package.json b/package.json
index 995b362f..cc52e78b 100644
--- a/package.json
+++ b/package.json
@@ -3,18 +3,24 @@
"version": "1.0.0",
"main": "public/index.js",
"scripts": {
- "bundle": "rollup --config rollup.config.js"
+ "bundle": "rollup --config rollup.config.js",
+ "test": "jest"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
+ "@vue/test-utils": "^1.0.0-beta.29",
+ "babel-core": "^7.0.0-bridge.0",
+ "babel-jest": "^24.9.0",
"glob": "^7.1.4",
+ "jest": "^24.9.0",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-import-resolver": "^1.0.4",
"rollup-plugin-vue": "^5.0.1",
"vue": "^2.6.10",
+ "vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10"
}
}