0.1.0 • Published 3 years ago

vite-web-test-runner-plugin v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

vite-web-test-runner-plugin

A @web/test-runner plugin to test Vite-powered projects. This plugin automatically connects to the Vite project in the current directory, loads the project configuration, and the uses your already-configured Vite build pipeline to build each test file.

Usage

npm install vite-web-test-runner-plugin --save-dev
// web-test-runner.config.js
const vite = require("vite-web-test-runner-plugin");

module.exports = {
  plugins: [vite()],
};

Options

None! If you need to configure Vite, you can do so in your project vite.config.js file.

Notes

  • some frameworks might require a custom testRunnerHtml (eg svelte and react)
  • vue is currently defunct