feat(tests): updated duplicate issues test (#4450)

Signed-off-by: Alex Velichko <nestor_007@mail.ru>
This commit is contained in:
Alex Velichko 2024-01-25 19:43:55 +03:00 committed by GitHub
parent 383b48828e
commit d6869b9186
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,6 +42,7 @@ test.describe('Tracker duplicate issue tests', () => {
const firstIssueId = await issuesPage.getIssueId(firstIssue.title)
await issuesPage.createNewIssue(secondIssue)
await issuesPage.searchIssueByName(secondIssue.title)
const secondIssueId = await issuesPage.getIssueId(secondIssue.title, 1)
expect(firstIssueId).not.toEqual(secondIssueId)