Files
vue-cli/packages/@vue/cli-plugin-unit-mocha/__tests__/mochaPlugin.spec.js
T
2018-01-11 00:39:15 -05:00

14 lines
317 B
JavaScript

jest.setTimeout(20000)
const create = require('@vue/cli-test-utils/createTestProject')
test('should work', async () => {
const project = await create('unit-mocha', {
plugins: {
'@vue/cli-plugin-babel': {},
'@vue/cli-plugin-unit-mocha': {}
}
})
await project.run(`vue-cli-service test`)
})