Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
428 B

  1. import { defineConfig } from 'vitest/config'
  2. export default defineConfig({
  3. test: {
  4. include: ['**/cypress/**/*.test.ts'],
  5. exclude: [
  6. '**/node_modules/**',
  7. '**/dist/**',
  8. '**/.{idea,git,cache,output,temp}/**',
  9. '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*',
  10. ],
  11. globals: true,
  12. environment: 'jsdom',
  13. globalSetup: './test-globals.js',
  14. },
  15. })