You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
387 B
13 lines
387 B
import Vue from 'vue'
|
|
import 'classlist-polyfill' // for IE9
|
|
|
|
// ignore whitespace in tests
|
|
Vue.config.preserveWhitespace = false
|
|
|
|
// import all helpers
|
|
const helpersContext = require.context('../helpers', true)
|
|
helpersContext.keys().forEach(helpersContext)
|
|
|
|
// require all test files
|
|
const testsContext = require.context('./', true, /\.spec$/)
|
|
testsContext.keys().forEach(testsContext)
|
|
|