Vite plugin with mocha and puppeteer
Headless test your Vue
, React
and Lit-Element
component
npm install --save-dev vite-plugin-test puppeteer
yarn install
yarn build
- Vue
yarn --cwd examples/vue test
- Lit-Element
yarn --cwd examples/lit-element test
- React
yarn --cwd examples/react test
export interface TestPluginOptions {
dir?: string
watch?: boolean
loaders?: {
[ext: string]: Loader
}
}
dir
- [default: 'tests'] directory where the test or spec fileswatch
- [default: false] enable/diable watchloaders
- when you have a.js
test files withjsx
ortsx
code
(Please see./examples/react/vite.config.test.ts
)loaders: { '.spec.js': 'jsx' }
- Create
vite.config.test.js
file
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import viteTestPlugin from 'vite-plugin-test'
export default defineConfig({
plugins: [
vue(),
viteTestPlugin({
watch: true
})
]
})
vite --config vite.config.test.js
- Code Coverage