mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
14 lines
298 B
JavaScript
14 lines
298 B
JavaScript
import { it } from 'vitest'
|
|
|
|
it.concurrent('1st', ({ expect }) => {
|
|
expect('hi1').toMatchInlineSnapshot(`"hi1"`)
|
|
})
|
|
|
|
it.concurrent('2nd', ({ expect }) => {
|
|
expect('hi2').toMatchInlineSnapshot(`"hi2"`)
|
|
})
|
|
|
|
it.concurrent('3rd', ({ expect }) => {
|
|
expect('hi3').toMatchInlineSnapshot(`"hi3"`)
|
|
})
|