@zeno-lib/vitest
v0.0.1
Published
In the package you want to do testing, do the following:
Readme
Setup
In the package you want to do testing, do the following:
- import this package by adding
"@zeno-lib/vitest": "workspace:*"intodevDependenciesinside `package.json. - also add
vitestintodevDependencies. - create tests by creating
x.test.tsfiles. - Here is a content example:
import { describe, expect, test } from "vitest"
describe("Example", () => {
test("Example", () => {
expect(true).toBe(true)
})
})
