Skip to content

nazarepiedady/vitest-docs-pt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Jan 15, 2023
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024
Apr 2, 2024

Repository files navigation

Note

This repository is only intended to synchronize the official vitest documentation, if you are ready to translate the vitest documentation in other languages you can refer to this repository

Vitest

Next generation testing framework powered by Vite.

Get involved!

Documentation | Getting Started | Examples | Why Vitest?

中文文档



Features

Vitest 1.0 requires Vite >=v5.0.0 and Node >=v18.0.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

Vladimir Sponsors

Anthony Fu Sponsors

Patak Sponsors

Credits

Thanks to:

Contribution

See Contributing Guide.

License

MIT License © 2021-Present Anthony Fu, Matias Capeletto