chore(playwright): fix typo in comments

This commit is contained in:
Ana Margarida Silva 2024-04-08 12:03:00 +01:00
parent 3436a86205
commit 7eccbf7ff1
No known key found for this signature in database
GPG key ID: 133F7B01F252DD26

View file

@ -296,7 +296,7 @@ export class TestCase extends Base implements reporterTypes.TestCase {
return 'expected';
if (failures.length === results.length) // all failed
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 'flaky'; // mixed bag
}