vitest-dev/vitest

Next generation testing framework powered by Vite.

17,085

stars

5,722

commits

TypeScript

primary language

Sep 11, 2026

updated

vitest.dev
test
testing-tools
vite
Browse cluster: Vite and modern frontend build tooling

README



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

Contributors

(top 30 of 459)

sheremet-va

1,946 commits

antfu

1,093 commits

hi-ogawa

523 commits

AriPerkkio

373 commits

vitest-dev/vitest

Next generation testing framework powered by Vite.

17,085

stars

5,722

commits

TypeScript

primary language

Sep 11, 2026

updated

vitest.dev
test
testing-tools
vite
Browse cluster: Vite and modern frontend build tooling

README



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

Contributors

(top 30 of 459)

sheremet-va

1,946 commits

antfu

1,093 commits

hi-ogawa

523 commits

AriPerkkio

373 commits

Languages

TypeScript

95.6%

Vue

2.5%

JavaScript

1.7%