mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
13 lines
277 B
JavaScript
13 lines
277 B
JavaScript
import consola from 'consola'
|
|
import chalk from 'chalk'
|
|
|
|
const isWin = process.platform === 'win32'
|
|
describe.skip.win = isWin ? describe.skip : describe
|
|
test.skip.win = isWin ? test.skip : test
|
|
|
|
chalk.enabled = false
|
|
|
|
jest.setTimeout(60000)
|
|
|
|
consola.mockTypes(() => jest.fn())
|