mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 15:31:48 +00:00
When running vitests concurrently the target //client/browser:test fails
Revert "switch from jest to vitest for faster, simpler tests (#57886)"
This reverts commit ae5325e432.
14 lines
232 B
JavaScript
14 lines
232 B
JavaScript
// @ts-check
|
|
|
|
const config = require('../../jest.config.base')
|
|
|
|
const exportedConfig = {
|
|
...config,
|
|
displayName: 'codeintellify',
|
|
rootDir: __dirname,
|
|
roots: ['<rootDir>'],
|
|
verbose: true,
|
|
}
|
|
|
|
module.exports = exportedConfig
|