Skip to content

Commit

Permalink
chore(bidi): skip only timeouts on CI (#34041)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s authored Dec 16, 2024
1 parent 94d0fc7 commit 7ce1a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bidi/expectationUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
};
}

Expand Down

0 comments on commit 7ce1a54

Please sign in to comment.