Skip to content

Commit

Permalink
make tests less fragile
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimkibana committed Sep 23, 2021
1 parent 8e43c31 commit bc9ed15
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 @@ -148,7 +148,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});

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

0 comments on commit bc9ed15

Please sign in to comment.