mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
16 lines
298 B
TypeScript
16 lines
298 B
TypeScript
import { bench, describe } from 'vitest'
|
|
|
|
describe.todo('unimplemented suite')
|
|
|
|
describe.skip('skipped', () => {
|
|
bench('skipped', () => {
|
|
throw new Error('should be skipped')
|
|
})
|
|
|
|
bench.todo('unimplemented test')
|
|
})
|
|
|
|
bench.skip('skipped', () => {
|
|
throw new Error('should be skipped')
|
|
})
|