chore(bidi): skip only timeouts on CI
This commit is contained in:
parent
b58a4762f4
commit
d1740d0dd6
|
|
@ -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