index.js 387 B

12345678910111213
  1. import Vue from 'vue'
  2. import 'classlist-polyfill' // for IE9
  3. // ignore whitespace in tests
  4. Vue.config.preserveWhitespace = false
  5. // import all helpers
  6. const helpersContext = require.context('../helpers', true)
  7. helpersContext.keys().forEach(helpersContext)
  8. // require all test files
  9. const testsContext = require.context('./', true, /\.spec$/)
  10. testsContext.keys().forEach(testsContext)