This commit is contained in:
Yury Semikhatsky 2024-07-15 14:09:22 -07:00
parent 709de8ff03
commit 3e38b89e05

View file

@ -641,10 +641,4 @@ function createSnippets(stepsInFile: MultiMap<string, TestStep>) {
}
}
function projectSuite(suite: Suite): Suite {
while (suite.parent?.parent)
suite = suite.parent;
return suite;
}
export default HtmlReporter;