@vue/test-utils integration with Vue Components served by Vite
- Component Driven Development Workflow
- Running individual specs one-at-a-time with
/tests?spec=HelloWorld.spec.js,App.spec.js
- Full customization of runner and plugins provided by aria-vue
- Headless mode
- In-browser Reporter
- queueing multiple specs
- Re-run specs on source or spec file update
- Clone this repository
npm install
npm run headless
to run your test in headlessnpm run tdd
to run in tdd modenpm run tdd:vite
to run in tdd mode using vite
- Zero configuration. Vite is zero config. Your tests can be, too.
- Convenience. By sharing transform middleware with Vite, you do not need to maintain two sources of truth for your code transforms (e.g.
jest.config.js
and awebpack.config.js
) - Speed. Bundling all of your specs is slower than transforming by resource request with Vite.