mirror of
https://github.com/harness/drone.git
synced 2025-05-01 21:21:11 +00:00
10 lines
238 B
JavaScript
10 lines
238 B
JavaScript
process.env.TZ = 'GMT'
|
|
|
|
const config = require('./jest.config')
|
|
const { omit } = require('lodash')
|
|
|
|
module.exports = {
|
|
...omit(config, ['coverageThreshold', 'coverageReporters']),
|
|
coverageReporters: ['text-summary', 'json-summary']
|
|
}
|