Skip to content

Commit 5d5cc87

Browse files
authored
Fix flaky expression test (#229930)
## Summary Fix flaky tests on 7.17 #156780 fix #156780
1 parent 673f544 commit 5d5cc87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/examples/expressions_explorer/expressions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default function ({ getService }: PluginFunctionalProviderContext) {
5353
await find.clickByCssSelector(selector);
5454
await retry.try(async () => {
5555
const text = await browser.getCurrentUrl();
56-
expect(text).to.be('https://www.google.com/');
56+
expect(text).to.contain('https://www.google.com');
5757
});
5858
});
5959
});

0 commit comments

Comments
 (0)