2
0
mirror of https://github.com/tenrok/vue-native-websocket.git synced 2026-06-21 07:10:35 +03:00
* wire up specs

* tests + fixes for #1

* travis
This commit is contained in:
Nathan
2017-07-07 09:27:32 -07:00
committed by GitHub
parent 57a33ebae5
commit b62cc5a27c
12 changed files with 1342 additions and 74 deletions
+13
View File
@@ -0,0 +1,13 @@
import Vue from 'vue'
Vue.config.productionTip = false
// require all test files (files that ends with .spec.js)
const testsContext = require.context('./specs', true, /\.spec$/)
testsContext.keys().forEach(testsContext)
// require all src files except main.js for coverage.
// you can also change this to match only the subset of files that
// you want coverage for.
const srcContext = require.context('../../src', true, /^\.\/(?!main(\.js)?$)/)
srcContext.keys().forEach(srcContext)