chore(bidi): skip only timeouts on CI

This commit is contained in:
Yury Semikhatsky 2024-12-16 14:24:42 -08:00
parent b58a4762f4
commit d1740d0dd6

View file

@ -29,7 +29,7 @@ export async function createSkipTestPredicate(projectName: string): Promise<Shou
return (info: TestInfo) => { return (info: TestInfo) => {
const key = info.titlePath.join(' '); const key = info.titlePath.join(' ');
const expectation = expectationsMap.get(key); const expectation = expectationsMap.get(key);
return expectation === 'fail' || expectation === 'timeout'; return expectation === 'timeout';
}; };
} }