| 12345678910111213 |
- 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)
|