mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { expect, test } from './fixtures'
|
|
import { selectors } from './selectors'
|
|
import { testURL } from './testURL'
|
|
import { sleep, waitForRedirect } from './utils'
|
|
|
|
test.describe('in Gitako commits page', () => {
|
|
test.beforeEach(async ({ extensionPage }) => {
|
|
await extensionPage.goto(testURL`https://github.com/EnixCoda/Gitako/commits/develop`)
|
|
})
|
|
|
|
test('should not break go back in history', async ({ extensionPage }) => {
|
|
for (let i = 0; i < 3; i++) {
|
|
const commitLinks = await extensionPage.locator(selectors.github.commitLinks).all()
|
|
if (commitLinks.length < 2) throw new Error(`No enough commits`)
|
|
|
|
await commitLinks[i].click()
|
|
await waitForRedirect(extensionPage)
|
|
await expect(extensionPage.locator(selectors.github.commitPage).first()).toBeVisible({
|
|
timeout: 5000,
|
|
})
|
|
await sleep(1000)
|
|
|
|
await extensionPage.goBack()
|
|
await sleep(1000)
|
|
// The selector for commit page should not be visible
|
|
await expect(extensionPage.locator(selectors.github.commitPage)).not.toBeVisible({
|
|
timeout: 2000,
|
|
})
|
|
}
|
|
})
|
|
})
|