Fixed link to commit status and tooltip on dashboard

Regression introduced by 5a18b74632
This commit is contained in:
Beowulf 2024-06-26 22:05:18 +02:00
parent 6e83c39f13
commit 1088c057e0
No known key found for this signature in database
GPG key ID: 44225F5F2792841D
3 changed files with 33 additions and 1 deletions

View file

@ -0,0 +1,21 @@
// @ts-check
import {test, expect} from '@playwright/test';
import {login_user, load_logged_in_context} from './utils_e2e.js';
test.beforeAll(async ({browser}, workerInfo) => {
await login_user(browser, workerInfo, 'user2');
});
test('Correct link and tooltip', async ({browser}, workerInfo) => {
const context = await load_logged_in_context(browser, workerInfo, 'user2');
const page = await context.newPage();
const response = await page.goto('/?repo-search-query=test_workflows');
await expect(response?.status()).toBe(200);
await page.waitForLoadState('networkidle');
const repoStatus = page.locator('.dashboard-repos .repo-owner-name-list > li:nth-child(1) > a:nth-child(2)');
await expect(repoStatus).toHaveAttribute('href', '/user2/test_workflows/actions');
await expect(repoStatus).toHaveAttribute('data-tooltip-content', 'Failure');
});