vitest/test/snapshots/test-update/inline-concurrent.test.js

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"`)
})