Nuxt/test/utils/setup.js

13 lines
277 B
JavaScript
Raw Normal View History

2018-11-08 09:15:56 +00:00
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
2018-11-08 09:15:56 +00:00
chalk.enabled = false
2018-08-16 15:46:42 +00:00
jest.setTimeout(60000)
2018-11-08 09:15:56 +00:00
consola.mockTypes(() => jest.fn())