mirror of
https://github.com/actions/setup-python.git
synced 2024-11-14 23:51:09 +07:00
48 lines
2.6 KiB
TypeScript
48 lines
2.6 KiB
TypeScript
|
/**
|
||
|
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
/// <reference types="node" />
|
||
|
import { Circus, Config } from '@jest/types';
|
||
|
import { JestEnvironment } from '@jest/environment';
|
||
|
import { TestResult } from '@jest/test-result';
|
||
|
export declare const initialize: ({ config, environment, getPrettier, getBabelTraverse, globalConfig, localRequire, parentProcess, testPath, }: {
|
||
|
config: Config.ProjectConfig;
|
||
|
environment: JestEnvironment;
|
||
|
getPrettier: () => any;
|
||
|
getBabelTraverse: () => Function;
|
||
|
globalConfig: Config.GlobalConfig;
|
||
|
localRequire: (path: string) => any;
|
||
|
testPath: string;
|
||
|
parentProcess: NodeJS.Process;
|
||
|
}) => {
|
||
|
globals: {
|
||
|
afterAll: (fn: Circus.HookFn, timeout?: number | undefined) => void;
|
||
|
afterEach: (fn: Circus.HookFn, timeout?: number | undefined) => void;
|
||
|
beforeAll: (fn: Circus.HookFn, timeout?: number | undefined) => void;
|
||
|
beforeEach: (fn: Circus.HookFn, timeout?: number | undefined) => void;
|
||
|
describe: {
|
||
|
(blockName: string, blockFn: import("@jest/types/build/Global").BlockFn): void;
|
||
|
each: (table: import("@jest/types/build/Global").EachTable, ...taggedTemplateData: unknown[]) => (title: string, test: import("@jest/types/build/Global").EachTestFn, timeout?: number | undefined) => void;
|
||
|
only: {
|
||
|
(blockName: string, blockFn: import("@jest/types/build/Global").BlockFn): void;
|
||
|
each: (table: import("@jest/types/build/Global").EachTable, ...taggedTemplateData: unknown[]) => (title: string, test: import("@jest/types/build/Global").EachTestFn, timeout?: number | undefined) => void;
|
||
|
};
|
||
|
skip: {
|
||
|
(blockName: string, blockFn: import("@jest/types/build/Global").BlockFn): void;
|
||
|
each: (table: import("@jest/types/build/Global").EachTable, ...taggedTemplateData: unknown[]) => (title: string, test: import("@jest/types/build/Global").EachTestFn, timeout?: number | undefined) => void;
|
||
|
};
|
||
|
};
|
||
|
it: import("@jest/types/build/Global").It;
|
||
|
test: import("@jest/types/build/Global").It;
|
||
|
};
|
||
|
snapshotState: import("../../../jest-snapshot/build/State").default;
|
||
|
};
|
||
|
export declare const runAndTransformResultsToJestFormat: ({ config, globalConfig, testPath, }: {
|
||
|
config: Config.ProjectConfig;
|
||
|
globalConfig: Config.GlobalConfig;
|
||
|
testPath: string;
|
||
|
}) => Promise<TestResult>;
|
||
|
//# sourceMappingURL=jestAdapterInit.d.ts.map
|