mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-02-15 11:28:40 -06:00
14 lines
344 B
JavaScript
14 lines
344 B
JavaScript
jest.setTimeout(3000000)
|
|
|
|
const createOutside = require('@vue/cli-test-utils/createUpgradableProject')
|
|
|
|
test('should work', async () => {
|
|
const project = await createOutside('unit-mocha', {
|
|
plugins: {
|
|
'@vue/cli-plugin-babel': {},
|
|
'@vue/cli-plugin-unit-mocha': {}
|
|
}
|
|
})
|
|
await project.run(`vue-cli-service test:unit`)
|
|
})
|