[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
TypeScript 95%
Vue 3%
JavaScript 2%
CSS <1%
<1%
HTML <1%
Dockerfile <1%
Imba <1%
Batchfile <1%
Less <1%
SCSS <1%
Sass <1%

README.md



Vitest logo


Vitest

Next generation testing framework powered by Vite.

current vitest version badge

Get involved!

Documentation | Getting Started | Examples | Why Vitest?

中文文档



Features #

Vitest requires Vite >=v6.4.0 and Node >=v22.12.0

import { assert, describe, expect, it } from 'vitest'

describe('suite name', () => {
  it('foo', () => {
    expect(1 + 1).toEqual(2)
    expect(true).to.be.true
  })

  it('bar', () => {
    assert.equal(Math.sqrt(4), 2)
  })

  it('snapshot', () => {
    expect({ foo: 'bar' }).toMatchSnapshot()
  })
})
$ npx vitest

Sponsors #

vitest's sponsors

Credits #

Thanks to:

Contribution #

See Contributing Guide.

License #

MIT License © 2021-Present VoidZero Inc. and Vitest contributors