From 21a299b6d3da1ad6f53d2c7097a21cfbdd783e91 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Thu, 26 Mar 2026 11:21:15 +0000 Subject: [PATCH] test: Remove unused login import from CSS importing test The side-effect import of @vaadin/vaadin-login was not needed for this test, which only verifies that .css imports produce valid CSSResultGroup types (regression test for flow#9167). The login package is not a declared dependency of this test module, so it fails in CI with TS6's stricter TS2882 check for side-effect imports without type declarations. --- flow-tests/test-ccdm/src/main/frontend/css-importing-test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/flow-tests/test-ccdm/src/main/frontend/css-importing-test.ts b/flow-tests/test-ccdm/src/main/frontend/css-importing-test.ts index 46c3b6f663d..f5ed121d80e 100644 --- a/flow-tests/test-ccdm/src/main/frontend/css-importing-test.ts +++ b/flow-tests/test-ccdm/src/main/frontend/css-importing-test.ts @@ -1,6 +1,5 @@ import { LitElement } from 'lit'; -import '@vaadin/vaadin-login/vaadin-login-overlay'; import styles from './test-styles.css?inline'; // Regression test for flow#9167 (`styles` assignment will cause a type