From 57cab68282e02cbd4cac8849f6380f2220212312 Mon Sep 17 00:00:00 2001 From: koji Date: Fri, 21 Nov 2025 16:52:24 -0500 Subject: [PATCH] chore(remove configs that are related to pd cypress): remove configs that are related to pd cypress --- .eslintignore | 1 - vitest.config.mts | 8 ++++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.eslintignore b/.eslintignore index 698dfd264bf..1817bfb34aa 100644 --- a/.eslintignore +++ b/.eslintignore @@ -13,7 +13,6 @@ !api/release-notes.md !app-shell/build/release-notes.md **/.yarn-cache/** -protocol-designer/cypress/downloads/** # components library storybook-static diff --git a/vitest.config.mts b/vitest.config.mts index fc30db4864a..f41fe2603af 100644 --- a/vitest.config.mts +++ b/vitest.config.mts @@ -17,7 +17,12 @@ export default mergeConfig( test: { environment: 'jsdom', allowOnly: true, - exclude: [...configDefaults.exclude, '**/node_modules/**', '**/dist/**', '**/lib/**'], + exclude: [ + ...configDefaults.exclude, + '**/node_modules/**', + '**/dist/**', + '**/lib/**', + ], setupFiles: ['./setup-vitest.mts'], coverage: { exclude: [ @@ -25,7 +30,6 @@ export default mergeConfig( '**/dist/**', '**/__tests__/**', '**/lib/**', - 'protocol-designer/cypress/**/*', 'labware-library/cypress/**/*', ...configDefaults.exclude, ],