Remove suites comment
This commit is contained in:
parent
d76fafff1c
commit
83baf21128
4
packages/playwright/types/testReporter.d.ts
vendored
4
packages/playwright/types/testReporter.d.ts
vendored
|
|
@ -241,27 +241,23 @@ export interface FileSuite extends Suite {
|
||||||
type: 'file';
|
type: 'file';
|
||||||
location: Location;
|
location: Location;
|
||||||
parent: Suite;
|
parent: Suite;
|
||||||
// suites: Array<DescribeSuite>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DescribeSuite extends Suite {
|
export interface DescribeSuite extends Suite {
|
||||||
type: 'describe';
|
type: 'describe';
|
||||||
location: Location;
|
location: Location;
|
||||||
parent: Suite;
|
parent: Suite;
|
||||||
// suites: Array<DescribeSuite>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProjectSuite extends Suite {
|
export interface ProjectSuite extends Suite {
|
||||||
type: 'project';
|
type: 'project';
|
||||||
location: undefined;
|
location: undefined;
|
||||||
// suites: Array<FileSuite>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface RootSuite extends Suite {
|
export interface RootSuite extends Suite {
|
||||||
type: 'root';
|
type: 'root';
|
||||||
parent: undefined;
|
parent: undefined;
|
||||||
location: undefined;
|
location: undefined;
|
||||||
// suites: Array<ProjectSuite>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -31,27 +31,23 @@ export interface FileSuite extends Suite {
|
||||||
type: 'file';
|
type: 'file';
|
||||||
location: Location;
|
location: Location;
|
||||||
parent: Suite;
|
parent: Suite;
|
||||||
// suites: Array<DescribeSuite>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface DescribeSuite extends Suite {
|
export interface DescribeSuite extends Suite {
|
||||||
type: 'describe';
|
type: 'describe';
|
||||||
location: Location;
|
location: Location;
|
||||||
parent: Suite;
|
parent: Suite;
|
||||||
// suites: Array<DescribeSuite>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ProjectSuite extends Suite {
|
export interface ProjectSuite extends Suite {
|
||||||
type: 'project';
|
type: 'project';
|
||||||
location: undefined;
|
location: undefined;
|
||||||
// suites: Array<FileSuite>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface RootSuite extends Suite {
|
export interface RootSuite extends Suite {
|
||||||
type: 'root';
|
type: 'root';
|
||||||
parent: undefined;
|
parent: undefined;
|
||||||
location: undefined;
|
location: undefined;
|
||||||
// suites: Array<ProjectSuite>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface TestResult {
|
export interface TestResult {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue