зеркало из https://github.com/github/docs.git
37 строки
813 B
JavaScript
37 строки
813 B
JavaScript
// https://jestjs.io/docs/en/configuration.html
|
|
|
|
const isBrowser = process.env.BROWSER
|
|
const isActions = Boolean(process.env.GITHUB_ACTIONS)
|
|
|
|
module.exports = {
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 95,
|
|
functions: 95,
|
|
lines: 95,
|
|
statements: -5
|
|
}
|
|
},
|
|
preset: isBrowser
|
|
? 'jest-puppeteer'
|
|
: undefined,
|
|
reporters: isActions
|
|
? ['default', 'jest-github-actions-reporter']
|
|
: ['default'],
|
|
modulePathIgnorePatterns: [
|
|
'assets/'
|
|
],
|
|
setupFilesAfterEnv: ['jest-expect-message'],
|
|
...isBrowser ? {} : { testEnvironment: 'node' },
|
|
testPathIgnorePatterns: [
|
|
'node_modules/',
|
|
'vendor/',
|
|
'tests/helpers.js',
|
|
...isBrowser ? [] : ['tests/browser/browser.js']
|
|
],
|
|
testMatch: [
|
|
'**/tests/**/*.js'
|
|
],
|
|
testLocationInResults: isActions
|
|
}
|