vitest-fixture
TypeScript icon, indicating that this package has built-in type declarations

0.5.2 • Public • Published

vitest-fixture

npm npm

Reusable fixtures for your Vitest tests

Getting started

npm install --save-dev vitest-fixture vitest

Create 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.

Develop

npm install
npm test

Publish

npm version minor
npm publish
git push

Credits

Thanks to the Playwright team for the inspiration for the fixture API.

Dependencies (0)

    Dev Dependencies (4)

    Package Sidebar

    Install

    npm i vitest-fixture

    Weekly Downloads

    2

    Version

    0.5.2

    License

    MIT

    Unpacked Size

    29.3 kB

    Total Files

    21

    Last publish

    Collaborators

    • larsthorup