chore(bidi): skip only timeouts on CI (#34041)

This commit is contained in:
Yury Semikhatsky 2024-12-16 15:28:21 -08:00 committed by GitHub
parent 94d0fc780d
commit 7ce1a540bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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