mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
22 lines
349 B
TypeScript
22 lines
349 B
TypeScript
import { describe, expect, it } from 'vitest'
|
|
|
|
describe('basic suite', () => {
|
|
describe('inner suite', () => {
|
|
it('some test', () => {
|
|
expect(1).toBe(1)
|
|
})
|
|
|
|
it('another test', () => {
|
|
expect(1).toBe(1)
|
|
})
|
|
})
|
|
|
|
it('basic test', () => {
|
|
expect(1).toBe(1)
|
|
})
|
|
})
|
|
|
|
it('outside test', () => {
|
|
expect(1).toBe(1)
|
|
})
|