mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
15 lines
281 B
JavaScript
15 lines
281 B
JavaScript
import path from 'path'
|
|
import consola from 'consola'
|
|
|
|
export * from './mocking'
|
|
export { NuxtCommand } from '../../src'
|
|
|
|
consola.mockTypes(() => jest.fn())
|
|
|
|
const localPath = modulePath => path.resolve(process.cwd(), 'node_modules', modulePath)
|
|
|
|
export {
|
|
consola,
|
|
localPath
|
|
}
|