vue2/test/unit/index.js

13 lines
376 B
JavaScript
Raw Normal View History

2016-04-26 01:17:59 +08:00
import Vue from 'vue'
2016-05-27 07:07:44 +08:00
import 'classlist-polyfill' // for IE9
import '../helpers/to-have-been-warned.js'
import '../helpers/wait-for-update.js'
2016-05-27 01:54:37 +08:00
import '../helpers/trigger-event.js'
2016-05-23 00:26:29 +08:00
import '../helpers/vdom.js'
2016-04-26 01:17:59 +08:00
Vue.config.preserveWhitespace = false
2016-04-24 08:00:38 +08:00
// require all test files
const testsContext = require.context('./', true, /\.spec$/)
2016-04-24 08:00:38 +08:00
testsContext.keys().forEach(testsContext)