chore(bidi): skip only timeouts on CI (#34041)
This commit is contained in:
parent
94d0fc780d
commit
7ce1a540bc
|
|
@ -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';
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue