index.js 300 B

12345678910
  1. import Vue from 'vue'
  2. import '../helpers/to-have-been-warned.js'
  3. import '../helpers/wait-for-update.js'
  4. import '../helpers/vdom.js'
  5. Vue.config.preserveWhitespace = false
  6. // require all test files
  7. const testsContext = require.context('./', true, /\.spec$/)
  8. testsContext.keys().forEach(testsContext)