Remove suites comment

This commit is contained in:
Yury Semikhatsky 2024-03-27 17:42:13 -07:00
parent d76fafff1c
commit 83baf21128
2 changed files with 0 additions and 8 deletions

View file

@ -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>;
} }
/** /**

View file

@ -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 {