mirror of https://github.com/vuejs/vue.git
11 lines
309 B
JavaScript
11 lines
309 B
JavaScript
import Vue from 'vue'
|
|
import '../helpers/to-have-been-warned.js'
|
|
import '../helpers/wait-for-update.js'
|
|
import '../helpers/trigger-event.js'
|
|
|
|
Vue.config.preserveWhitespace = false
|
|
|
|
// require all test files
|
|
const testsContext = require.context('./', true, /\.spec$/)
|
|
testsContext.keys().forEach(testsContext)
|