chore(playwright): fix typo in comments
This commit is contained in:
parent
3436a86205
commit
7eccbf7ff1
|
|
@ -296,7 +296,7 @@ export class TestCase extends Base implements reporterTypes.TestCase {
|
||||||
return 'expected';
|
return 'expected';
|
||||||
if (failures.length === results.length) // all failed
|
if (failures.length === results.length) // all failed
|
||||||
return 'unexpected';
|
return 'unexpected';
|
||||||
if (failures.length && skipped.length && !passed.length) // some failed, none succedded and the rest where skipped
|
if (failures.length && skipped.length && !passed.length) // some failed, none succeeded and the rest were skipped
|
||||||
return 'unexpected';
|
return 'unexpected';
|
||||||
return 'flaky'; // mixed bag
|
return 'flaky'; // mixed bag
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue