Skip to content

Commit

Permalink
make test less fragile
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimkibana committed Sep 23, 2021
1 parent 1d6b537 commit 8e43c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/apps/discover/_shared_links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});

it('should allow for copying the snapshot URL as a short URL', async function () {
const re = new RegExp(baseUrl + '/goto/[0-9a-f]{32}$');
const re = new RegExp(baseUrl + '/goto/.+$');
await PageObjects.share.checkShortenUrl();
await retry.try(async () => {
const actualUrl = await PageObjects.share.getSharedUrl();
Expand Down

0 comments on commit 8e43c31

Please sign in to comment.