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';
|
||||
location: Location;
|
||||
parent: Suite;
|
||||
// suites: Array<DescribeSuite>;
|
||||
}
|
||||
|
||||
export interface DescribeSuite extends Suite {
|
||||
type: 'describe';
|
||||
location: Location;
|
||||
parent: Suite;
|
||||
// suites: Array<DescribeSuite>;
|
||||
}
|
||||
|
||||
export interface ProjectSuite extends Suite {
|
||||
type: 'project';
|
||||
location: undefined;
|
||||
// suites: Array<FileSuite>;
|
||||
}
|
||||
|
||||
export interface RootSuite extends Suite {
|
||||
type: 'root';
|
||||
parent: undefined;
|
||||
location: undefined;
|
||||
// suites: Array<ProjectSuite>;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -31,27 +31,23 @@ export interface FileSuite extends Suite {
|
|||
type: 'file';
|
||||
location: Location;
|
||||
parent: Suite;
|
||||
// suites: Array<DescribeSuite>;
|
||||
}
|
||||
|
||||
export interface DescribeSuite extends Suite {
|
||||
type: 'describe';
|
||||
location: Location;
|
||||
parent: Suite;
|
||||
// suites: Array<DescribeSuite>;
|
||||
}
|
||||
|
||||
export interface ProjectSuite extends Suite {
|
||||
type: 'project';
|
||||
location: undefined;
|
||||
// suites: Array<FileSuite>;
|
||||
}
|
||||
|
||||
export interface RootSuite extends Suite {
|
||||
type: 'root';
|
||||
parent: undefined;
|
||||
location: undefined;
|
||||
// suites: Array<ProjectSuite>;
|
||||
}
|
||||
|
||||
export interface TestResult {
|
||||
|
|
|
|||
Loading…
Reference in a new issue