mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-08 15:46:56 +00:00
15 lines
371 B
JavaScript
15 lines
371 B
JavaScript
import { defineConfig, configDefaults } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
// required to make jest-when work with vitest
|
|
globals: true,
|
|
exclude:[
|
|
...configDefaults.exclude,
|
|
'./src/**',
|
|
'**/integrationTests/e2e/**',
|
|
'**/integrationTests/e2e-tls/**',
|
|
'**/integrationTests/enterprise/**',
|
|
],
|
|
},
|
|
})
|