Skip to content

Commit

Permalink
fix: use proper link format in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
  • Loading branch information
aonnikov committed Sep 18, 2024
1 parent ea60dff commit 66e2d68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/sanity/tests/documents/documents.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ test.describe('Documents tests', () => {
await documentContentPage.addRandomLines(5)
await documentContentPage.addContentToTheNewLine(contentLink)
await documentContentPage.addRandomLines(5)
await documentContentPage.addLinkToText(contentLink, 'test/link/123456')
await documentContentPage.checkLinkInTheText(contentLink, 'test/link/123456')
await documentContentPage.addLinkToText(contentLink, 'http://test/link/123456')
await documentContentPage.checkLinkInTheText(contentLink, 'http://test/link/123456')
})

test('Locked document and checking URL', async ({ page, context }) => {
Expand Down

0 comments on commit 66e2d68

Please sign in to comment.