mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
// eslint-disable
|
|
require('consola').clear().add({
|
|
log: jest.fn()
|
|
})
|
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60 * 1000
|
|
|
|
const isAppveyor = !!process.env.APPVEYOR
|
|
describe.skip.appveyor = isAppveyor ? describe.skip : describe
|
|
test.skip.appveyor = isAppveyor ? test.skip : test
|