From 2afa9f0536dfea65964f720da7854ba21cb676d1 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 14 Jul 2026 13:30:53 +0200 Subject: [PATCH] test(browser-integration): Fix local runs referencing renamed `check-types` command --- dev-packages/browser-integration-tests/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-packages/browser-integration-tests/package.json b/dev-packages/browser-integration-tests/package.json index bc85550f49f1..fdf8b7c13eac 100644 --- a/dev-packages/browser-integration-tests/package.json +++ b/dev-packages/browser-integration-tests/package.json @@ -14,7 +14,7 @@ "lint:fix": "OXLINT_TSGOLINT_DANGEROUSLY_SUPPRESS_PROGRAM_DIAGNOSTICS=true oxlint . --fix --type-aware", "lint:types": "tsc --noEmit", "postinstall": "yarn install-browsers", - "pretest": "yarn clean && yarn type-check", + "pretest": "yarn clean && yarn lint:types", "test": "yarn test:all --project='chromium'", "test:all": "npx playwright test -c playwright.browser.config.ts", "test:bundle": "PW_BUNDLE=bundle yarn test",