Fix import #1613
pipeline.yml
on: push
Annotations
7 errors, 33 warnings, and 4 notices
[chromium] › e2e/examplePages.spec.ts:18:5 › Digitaltauglichkeit main functionality › displays detailed information for principle: digitale-kommunikation-sicherstellen:
packages/dito/tests/e2e/examplePages.spec.ts#L25
1) [chromium] › e2e/examplePages.spec.ts:18:5 › Digitaltauglichkeit main functionality › displays detailed information for principle: digitale-kommunikation-sicherstellen
Error: Timed out 5000ms waiting for expect(locator).toContainText(expected)
Locator: getByRole('main')
Expected string: "Prinzip 1 in Regelungstexten"
Received: <element(s) not found>
Call log:
- expect.toContainText with timeout 5000ms
- waiting for getByRole('main')
23 |
24 | const mainContent = page.getByRole("main");
> 25 | await expect(mainContent).toContainText(
| ^
26 | `Prinzip ${principles.indexOf(principle) + 1} in Regelungstexten`,
27 | );
28 | });
at /home/runner/work/digitalcheck-apps/digitalcheck-apps/packages/dito/tests/e2e/examplePages.spec.ts:25:33
|
[chromium] › e2e/examplePages.spec.ts:30:5 › Digitaltauglichkeit main functionality › renders navigation links for principle: digitale-kommunikation-sicherstellen:
packages/dito/tests/e2e/examplePages.spec.ts#L1
2) [chromium] › e2e/examplePages.spec.ts:30:5 › Digitaltauglichkeit main functionality › renders navigation links for principle: digitale-kommunikation-sicherstellen
Test timeout of 30000ms exceeded.
|
[chromium] › e2e/examplePages.spec.ts:30:5 › Digitaltauglichkeit main functionality › renders navigation links for principle: digitale-kommunikation-sicherstellen:
packages/dito/tests/e2e/examplePages.spec.ts#L43
2) [chromium] › e2e/examplePages.spec.ts:30:5 › Digitaltauglichkeit main functionality › renders navigation links for principle: digitale-kommunikation-sicherstellen
Error: expect.toHaveURL: Target page, context or browser has been closed
41 |
42 | await nextPrincipleLink.click();
> 43 | await expect(page).toHaveURL(
| ^
44 | `${ROUTE_PRINCIPLES.url}/${principles[nextPrincipleIndex]}`,
45 | );
46 | }
at /home/runner/work/digitalcheck-apps/digitalcheck-apps/packages/dito/tests/e2e/examplePages.spec.ts:43:28
|
[webkit] › e2e/methodPages.spec.ts:109:3 › five principles page › five principles conditional next step is accurate:
packages/dito/tests/e2e/methodPages.spec.ts#L121
3) [webkit] › e2e/methodPages.spec.ts:109:3 › five principles page › five principles conditional next step is accurate
Error: Timed out 5000ms waiting for expect(locator).toHaveURL(expected)
Locator: locator(':root')
Expected string: "http://localhost:5172/"
Received string: "http://localhost:5172/vorpruefung"
Call log:
- expect.toHaveURL with timeout 5000ms
- waiting for locator(':root')
9 × locator resolved to <html lang="de">…</html>
- unexpected value "http://localhost:5172/vorpruefung"
119 | );
120 | await page.getByRole("link", { name: "Digitalbezug einschätzen" }).click();
> 121 | await expect(page).toHaveURL(ROUTE_LANDING.url);
| ^
122 |
123 | await page.getByRole("link", { name: "Zu „Erarbeiten“" }).click();
124 | await expect(page).toHaveURL(ROUTE_METHODS.url);
at /home/runner/work/digitalcheck-apps/digitalcheck-apps/packages/dito/tests/e2e/methodPages.spec.ts:121:24
|
[webkit] › e2e/preCheckQuestions.spec.ts:189:3 › test question navigation › navigation resets when cookie is cleared:
packages/dito/tests/e2e/preCheckQuestions.spec.ts#L196
4) [webkit] › e2e/preCheckQuestions.spec.ts:189:3 › test question navigation › navigation resets when cookie is cleared
Error: Timed out 5000ms waiting for expect(locator).toBeDisabled()
Locator: getByRole('link', { name: 'IT-System' })
Expected: disabled
Received: enabled
Call log:
- expect.toBeDisabled with timeout 5000ms
- waiting for getByRole('link', { name: 'IT-System' })
2 × locator resolved to <a aria-current="false" data-discover="true" aria-disabled="false" aria-describedby=":R5l5:" href="/vorpruefung/it-system" class="bg-blue-100 w-full ds-label-02-reg p-16 flex gap-x-4 items-center hover:underline hover:bg-blue-300 active:bg-white focus-visible:shadow-[inset_0px_0px_0px_4px] focus:shadow-blue-800">…</a>
- unexpected value "enabled"
7 × locator resolved to <a aria-current="false" data-discover="true" aria-disabled="false" aria-describedby=":r1:" href="/vorpruefung/it-system" class="bg-blue-100 w-full ds-label-02-reg p-16 flex gap-x-4 items-center hover:underline hover:bg-blue-300 active:bg-white focus-visible:shadow-[inset_0px_0px_0px_4px] focus:shadow-blue-800">…</a>
- unexpected value "enabled"
194 | await expect(
195 | page.getByRole("link", { name: questions[0].title }),
> 196 | ).toBeDisabled();
| ^
197 | });
198 |
199 | test("current page is disabled, has aria-current and active styling", async ({
at /home/runner/work/digitalcheck-apps/digitalcheck-apps/packages/dito/tests/e2e/preCheckQuestions.spec.ts:196:7
|
[webkit] › e2e/resultForm.spec.ts:182:3 › test positive result for digital and interoperability › email body contains all answers in positive form:
packages/dito/tests/e2e/resultForm.spec.ts#L60
5) [webkit] › e2e/resultForm.spec.ts:182:3 › test positive result for digital and interoperability › email body contains all answers in positive form
Test timeout of 30000ms exceeded while running "beforeEach" hook.
58 |
59 | test.describe("test positive result for digital and interoperability", () => {
> 60 | test.beforeEach(
| ^
61 | "answer all pre-check questions with yes and go to result page",
62 | async ({ page }) => {
63 | await page.goto(questions[0].url);
at /home/runner/work/digitalcheck-apps/digitalcheck-apps/packages/dito/tests/e2e/resultForm.spec.ts:60:8
|
[webkit] › e2e/resultForm.spec.ts:182:3 › test positive result for digital and interoperability › email body contains all answers in positive form:
packages/dito/tests/e2e/resultForm.spec.ts#L65
5) [webkit] › e2e/resultForm.spec.ts:182:3 › test positive result for digital and interoperability › email body contains all answers in positive form
Error: page.waitForURL: Test timeout of 30000ms exceeded.
=========================== logs ===========================
waiting for navigation to "/vorpruefung/verpflichtungen-fuer-beteiligte" until "load"
============================================================
63 | await page.goto(questions[0].url);
64 | for (let i = 0; i < questions.length; i++) {
> 65 | await page.waitForURL(questions[i].url);
| ^
66 | await page.getByLabel("Ja").click();
67 | await page.getByRole("button", { name: "Übernehmen" }).click();
68 | }
at /home/runner/work/digitalcheck-apps/digitalcheck-apps/packages/dito/tests/e2e/resultForm.spec.ts:65:20
|
changes
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
vulnerability-scan / vulnerability-scan
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check-and-test-shared / check-and-test
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check-and-test-shared / check-and-test:
packages/shared/components/Button.tsx#L25
Unsafe member access .className on an `any` value
|
check-and-test-shared / check-and-test:
packages/shared/components/Button.tsx#L25
Unsafe member access .className on an `any` value
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/components/ParagraphList.tsx#L38
Unsafe member access .children on an `any` value
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/_index.tsx#L111
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/_index.tsx#L123
Classname 'text-link' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/beispiele.prinzipien.$prinzip.tsx#L138
Classname 'text-link' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/beispiele.regelungen.$regelung.tsx#L110
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/methoden_.fuenf-prinzipien.tsx#L78
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/sitemap.tsx#L50
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/sitemap.tsx#L53
Classname 'text-link' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/vorpruefung.$questionId/PreCheckNavigation.tsx#L25
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/components/ParagraphList.tsx#L38
Unsafe member access .children on an `any` value
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/_index.tsx#L111
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/_index.tsx#L123
Classname 'text-link' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/beispiele.prinzipien.$prinzip.tsx#L138
Classname 'text-link' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/beispiele.regelungen.$regelung.tsx#L110
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/methoden_.fuenf-prinzipien.tsx#L78
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/sitemap.tsx#L50
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/sitemap.tsx#L53
Classname 'text-link' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / check-and-test-shared / check-and-test:
packages/dito/app/routes/vorpruefung.$questionId/PreCheckNavigation.tsx#L25
Classname 'list-unstyled' is not a Tailwind CSS class!
|
check-test-build-deploy (dito) / build-and-push-image
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check-test-build-deploy (dito) / deploy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check-test-build-deploy (tool-finder) / check-and-test-shared / check-and-test
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check-test-build-deploy (tool-finder) / check-and-test-shared / check-and-test:
packages/tool-finder/src/MaintenanceModeApp.tsx#L20
Classname 'text-link' is not a Tailwind CSS class!
|
check-test-build-deploy (tool-finder) / check-and-test-shared / check-and-test:
packages/tool-finder/src/MaintenanceModeApp.tsx#L20
Classname 'increase-tap-area' is not a Tailwind CSS class!
|
check-test-build-deploy (tool-finder) / check-and-test-shared / check-and-test:
packages/tool-finder/src/MaintenanceModeApp.tsx#L20
Classname 'text-link' is not a Tailwind CSS class!
|
check-test-build-deploy (tool-finder) / check-and-test-shared / check-and-test:
packages/tool-finder/src/MaintenanceModeApp.tsx#L20
Classname 'increase-tap-area' is not a Tailwind CSS class!
|
check-test-build-deploy (tool-finder) / build-and-push-image
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check-test-build-deploy (tool-finder) / deploy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
🎭 Playwright Run Summary
87 passed (2.7m)
|
🎭 Playwright Run Summary
5 flaky
[chromium] › e2e/examplePages.spec.ts:18:5 › Digitaltauglichkeit main functionality › displays detailed information for principle: digitale-kommunikation-sicherstellen
[chromium] › e2e/examplePages.spec.ts:30:5 › Digitaltauglichkeit main functionality › renders navigation links for principle: digitale-kommunikation-sicherstellen
[webkit] › e2e/methodPages.spec.ts:109:3 › five principles page › five principles conditional next step is accurate
[webkit] › e2e/preCheckQuestions.spec.ts:189:3 › test question navigation › navigation resets when cookie is cleared
[webkit] › e2e/resultForm.spec.ts:182:3 › test positive result for digital and interoperability › email body contains all answers in positive form
421 passed (11.2m)
|
🎭 Playwright Run Summary
60 passed (50.7s)
|
🎭 Playwright Run Summary
3 passed (24.4s)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
SBOM-digitalcheck-dito
|
4.81 KB |
|
SBOM-digitalcheck-tool-finder
|
1.48 KB |
|
digitalcheck-dito-vulnerabilities.json
|
30.5 KB |
|
digitalcheck-tool-finder-vulnerabilities.json
|
45.1 KB |
|