Files
vue-cli/packages/@vue/cli-plugin-unit-mocha/__tests__/mochaPlugin.spec.js
2020-12-03 15:16:35 +08:00

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`)
})