mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
116 lines
2.9 KiB
TypeScript
116 lines
2.9 KiB
TypeScript
/**
|
|
* Copyright Microsoft Corporation. All rights reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import type { ConfigCLIOverrides } from './runner';
|
|
import type { TestInfoError, TestStatus } from './types';
|
|
|
|
export type SerializedLoaderData = {
|
|
configFile: string | undefined;
|
|
configDir: string;
|
|
configCLIOverrides: ConfigCLIOverrides;
|
|
};
|
|
|
|
export type TtyParams = {
|
|
rows: number | undefined;
|
|
columns: number | undefined;
|
|
colorDepth: number;
|
|
};
|
|
|
|
export type WorkerIsolation =
|
|
'isolate-projects' | // create new worker for new project type
|
|
'isolate-pools'; // create new worker for new worker fixture pool digest
|
|
|
|
|
|
export type WorkerInitParams = {
|
|
workerIsolation: WorkerIsolation;
|
|
workerIndex: number;
|
|
parallelIndex: number;
|
|
repeatEachIndex: number;
|
|
projectId: string;
|
|
loader: SerializedLoaderData;
|
|
stdoutParams: TtyParams;
|
|
stderrParams: TtyParams;
|
|
};
|
|
|
|
export type WatchTestResolvedPayload = {
|
|
testId: string;
|
|
title: string;
|
|
location: { file: string, line: number, column: number };
|
|
};
|
|
|
|
export type TestBeginPayload = {
|
|
testId: string;
|
|
startWallTime: number; // milliseconds since unix epoch
|
|
};
|
|
|
|
export type TestEndPayload = {
|
|
testId: string;
|
|
duration: number;
|
|
status: TestStatus;
|
|
errors: TestInfoError[];
|
|
expectedStatus: TestStatus;
|
|
annotations: { type: string, description?: string }[];
|
|
timeout: number;
|
|
attachments: { name: string, path?: string, body?: string, contentType: string }[];
|
|
};
|
|
|
|
export type StepBeginPayload = {
|
|
testId: string;
|
|
stepId: string;
|
|
title: string;
|
|
category: string;
|
|
canHaveChildren: boolean;
|
|
forceNoParent: boolean;
|
|
wallTime: number; // milliseconds since unix epoch
|
|
location?: { file: string, line: number, column: number };
|
|
};
|
|
|
|
export type StepEndPayload = {
|
|
testId: string;
|
|
stepId: string;
|
|
refinedTitle?: string;
|
|
wallTime: number; // milliseconds since unix epoch
|
|
error?: TestInfoError;
|
|
};
|
|
|
|
export type TestEntry = {
|
|
testId: string;
|
|
retry: number;
|
|
};
|
|
|
|
export type RunPayload = {
|
|
file: string;
|
|
entries: TestEntry[];
|
|
watchMode: boolean;
|
|
projectSetup: boolean;
|
|
};
|
|
|
|
export type DonePayload = {
|
|
fatalErrors: TestInfoError[];
|
|
skipTestsDueToSetupFailure: string[]; // test ids
|
|
fatalUnknownTestIds?: string[];
|
|
};
|
|
|
|
export type TestOutputPayload = {
|
|
testId?: string;
|
|
text?: string;
|
|
buffer?: string;
|
|
};
|
|
|
|
export type TeardownErrorsPayload = {
|
|
fatalErrors: TestInfoError[];
|
|
};
|