mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-04-21 20:08:41 -05:00
14 lines
317 B
JavaScript
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`)
|
|
})
|