0.5.2 • Published 2 years ago

vitest-fixture v0.5.2

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

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.

0.5.2

2 years ago

0.5.1

3 years ago

0.5.0

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago