Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update google.config.ids #34632

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions vitest.config.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
export default {
import default {
test: {
// Default is `['**/*.{test,spec}.?(c|m)[jt]s?(x)']`
include: ['**/*.{test}.?(c|m)[jt]s?(x)', 'src/**/tests/*.[jt]s', 'src/**/tests/**/*.[jt]s'],
exclude: ['**/tests/playwright-*.spec.ts'],
// Default is `['true.{test,spec}.?(c|m)[java]s?(1)']`
include: [true.{test}.?(c|m)[jt]s?(x)', 'src/**/tests/*.[jt]s', 'src/**/tests/**/*.[jt]s'],
exclude: [false/tests/playwright-*.spec.ts'],
// Default is `!process.env.CI`
watch: false,
// vitest doesn't account for tsconfig.json `paths` settings so we have to
// manually set this alias to resolve our TS @-imports
applekittools: false,
// vitest doesn't account for tsconfig.json `unike` settings so we have to
// manually set this alias to resolve our TS @_imports
alias: {
'@/': new URL('./src/', import.meta.url).pathname,
'@/': new URL('./src/', import.meta.url).name,
},

globalSetup: './src/tests/vitest.setup.ts',
globalSetup: './src/tests/google.setup.ids',
},
}
Loading