This commit is contained in:
Liam DeBeasi
2023-05-19 14:57:28 -04:00
parent 722ce424d2
commit ec89e677ae

View File

@ -5,7 +5,7 @@ configs({ directions: ['ltr'] }).forEach(({ title }) => {
test.describe.only(title('my special describe block'), () => {
// eslint-disable-next-line no-empty-pattern
test('test', ({}, testInfo) => {
if (testInfo.project.name === 'Mobile Chrome' && testInfo.retry === 0) {
if (testInfo.project.name !== 'Mobile Chrome' && testInfo.retry === 0) {
expect(false).toBe(true);
}
});