Remove e2e test in backport

This commit is contained in:
Beowulf 2024-07-15 14:52:50 +02:00
parent 442002c3e4
commit 3018b8a07e
No known key found for this signature in database
GPG key ID: 44225F5F2792841D
2 changed files with 0 additions and 32 deletions

View file

@ -52,14 +52,3 @@
description: My awesome deploy service
context: deploy/awesomeness
creator_id: 2
-
id: 6
index: 6
repo_id: 62
state: "failure"
sha: "774f93df12d14931ea93259ae93418da4482fcc1"
target_url: "/user2/test_workflows/actions"
description: My awesome deploy service
context: deploy/awesomeness
creator_id: 2

View file

@ -1,21 +0,0 @@
// @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');
});