You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
626 B
18 lines
626 B
import { Suite } from "@playwright/test/reporter";
|
|
import SuiteNode from "../core/suiteNode";
|
|
import PlaywrightTestNode from "./playwrightTestNode";
|
|
export default class PlaywrightSuitNode extends SuiteNode {
|
|
readonly nativeSuite: Suite;
|
|
readonly isProjectSuite: boolean;
|
|
readonly isFileSuite: boolean;
|
|
readonly isRoot: boolean;
|
|
readonly locationInFile: string;
|
|
readonly suites: PlaywrightSuitNode[];
|
|
readonly tests: PlaywrightTestNode[];
|
|
readonly title: string;
|
|
get duration(): number;
|
|
get absoluteFilePath(): string;
|
|
get protocol(): string;
|
|
constructor(nativeSuite: Suite);
|
|
}
|