mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
24 lines
453 B
JavaScript
24 lines
453 B
JavaScript
import { NuxtCommand } from '../utils'
|
|
|
|
describe('dev', () => {
|
|
let dev
|
|
|
|
beforeAll(async () => {
|
|
dev = await import('../../src/commands/dev').then(m => m.default)
|
|
})
|
|
|
|
afterEach(() => jest.clearAllMocks())
|
|
|
|
test('config hook', async () => {
|
|
const hooks = {
|
|
config: jest.fn()
|
|
}
|
|
|
|
await NuxtCommand.run(dev, [], hooks)
|
|
|
|
expect(hooks.config).toHaveBeenCalledWith(expect.objectContaining({
|
|
_cli: true
|
|
}))
|
|
})
|
|
})
|