This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import NodeEnvironment from 'jest-environment-node'; | |
import type { Config, Circus } from '@jest/types'; | |
import type {EnvironmentContext} from '@jest/environment'; | |
export default class CircusEnvironment extends NodeEnvironment { | |
testPath?: string; | |
docblockPragmas?: Record<string, string | string[]>; | |
constructor(config: Config.ProjectConfig, context: EnvironmentContext) { | |
super(config); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
AggregatedResult, | |
Config, | |
Context, | |
Reporter, | |
ReporterOnStartOptions, | |
Test, | |
TestResult, | |
} from '@jest/reporters' |
NewerOlder