0.5.2 • Published 2 years ago
vitest-fixture v0.5.2
vitest-fixture
Reusable fixtures for your Vitest tests
Getting started
npm install --save-dev vitest-fixture vitestCreate vitest.config.js:
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
deps: {
inline: ["vitest-fixture"],
},
},
});Documentation
The concept of test fixtures provides a way to build reusable and composable setup and teardown code for your tests, and thereby helps you remove much of otherwise duplicated before / after boilerplate code.
- See example usage where the
serverfixture is passed into the test. - See the sample
serverfixture which is itself defined on top of adbfixture. - API documentation
Develop
npm install
npm testPublish
npm version minor
npm publish
git pushCredits
Thanks to the Playwright team for the inspiration for the fixture API.