UNPKG

@oaklean/profiler-core

Version:

Part of the @oaklean suite. It provides all basic functions to work with the `.oak` file format. It allows parsing the `.oak` file format as well as tools for analyzing the measurement values. It also provides all necessary capabilities required for prec

16 lines (15 loc) 687 B
import { ScriptTransformer } from '@jest/transform'; import { JestEnvironmentConfig, EnvironmentContext } from '@jest/environment'; import { BaseAdapter } from './BaseAdapter'; import { UnifiedPath } from '../../system/UnifiedPath'; export declare class JestAdapter extends BaseAdapter { private _config; private _context; private _transformer?; constructor(config: JestEnvironmentConfig, context: EnvironmentContext); config(): Promise<JestEnvironmentConfig>; context(): Promise<EnvironmentContext>; transformer(): Promise<ScriptTransformer>; shouldProcess(filePath: UnifiedPath): Promise<boolean>; process(filePath: UnifiedPath): Promise<string>; }