Skip to content

Commit 89f8d99

Browse files
authored
chore: remove configs that are related to pd cypress (#20226)
* chore: remove configs that are related to pd cypress
1 parent 7550419 commit 89f8d99

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
!api/release-notes.md
1414
!app-shell/build/release-notes.md
1515
**/.yarn-cache/**
16-
protocol-designer/cypress/downloads/**
1716

1817
# components library
1918
storybook-static

vitest.config.mts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,19 @@ export default mergeConfig(
1717
test: {
1818
environment: 'jsdom',
1919
allowOnly: true,
20-
exclude: [...configDefaults.exclude, '**/node_modules/**', '**/dist/**', '**/lib/**'],
20+
exclude: [
21+
...configDefaults.exclude,
22+
'**/node_modules/**',
23+
'**/dist/**',
24+
'**/lib/**',
25+
],
2126
setupFiles: ['./setup-vitest.mts'],
2227
coverage: {
2328
exclude: [
2429
'**/node_modules/**',
2530
'**/dist/**',
2631
'**/__tests__/**',
2732
'**/lib/**',
28-
'protocol-designer/cypress/**/*',
2933
'labware-library/cypress/**/*',
3034
...configDefaults.exclude,
3135
],

0 commit comments

Comments
 (0)