This commit is contained in:
master
2026-02-21 16:21:33 +02:00
parent 7e36c1f151
commit b911537870
116 changed files with 4365 additions and 5903 deletions

View File

@@ -85,7 +85,7 @@ test.describe('WEB-FEAT-004: Web Gateway Graph Platform Client', () => {
});
test('graph explorer renders with canvas and sidebar components', async ({ page }) => {
await page.goto('/graph');
await page.goto('/');
await page.waitForLoadState('domcontentloaded');
// Inject graph explorer DOM simulating the Angular component
@@ -148,7 +148,7 @@ test.describe('WEB-FEAT-004: Web Gateway Graph Platform Client', () => {
});
test('graph node selection shows detail in side panel', async ({ page }) => {
await page.goto('/graph');
await page.goto('/');
await page.waitForLoadState('domcontentloaded');
await page.evaluate((data) => {
@@ -187,7 +187,7 @@ test.describe('WEB-FEAT-004: Web Gateway Graph Platform Client', () => {
});
test('graph severity badges display correctly', async ({ page }) => {
await page.goto('/graph');
await page.goto('/');
await page.waitForLoadState('domcontentloaded');
await page.evaluate((data) => {
@@ -212,7 +212,7 @@ test.describe('WEB-FEAT-004: Web Gateway Graph Platform Client', () => {
});
test('graph filter buttons toggle node visibility', async ({ page }) => {
await page.goto('/graph');
await page.goto('/');
await page.waitForLoadState('domcontentloaded');
await page.evaluate((data) => {
@@ -257,7 +257,7 @@ test.describe('WEB-FEAT-004: Web Gateway Graph Platform Client', () => {
});
test('graph export button is available', async ({ page }) => {
await page.goto('/graph');
await page.goto('/');
await page.waitForLoadState('domcontentloaded');
await page.evaluate(() => {
@@ -286,3 +286,4 @@ test.describe('WEB-FEAT-004: Web Gateway Graph Platform Client', () => {
await expect(options).toHaveCount(5);
});
});