2024-06-26 22:05:18 +02:00
|
|
|
// @ts-check
|
2024-09-11 22:34:33 +02:00
|
|
|
|
|
|
|
// @watch start
|
|
|
|
// web_src/js/components/DashboardRepoList.vue
|
|
|
|
// @watch end
|
|
|
|
|
2024-08-14 23:34:36 +02:00
|
|
|
import {expect} from '@playwright/test';
|
|
|
|
import {test, login_user, load_logged_in_context} from './utils_e2e.js';
|
2024-06-26 22:05:18 +02:00
|
|
|
|
|
|
|
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)');
|
|
|
|
|
2024-09-11 14:31:46 +02:00
|
|
|
await expect(repoStatus).toHaveAttribute('href', '/user2/test_workflows/actions', {timeout: 10000});
|
2024-06-26 22:05:18 +02:00
|
|
|
await expect(repoStatus).toHaveAttribute('data-tooltip-content', 'Failure');
|
|
|
|
});
|