mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
18 lines
368 B
TypeScript
18 lines
368 B
TypeScript
import { it, describe, assert } from 'vitest'
|
|
|
|
describe.skip('skipped suite', () => {
|
|
it('no fail as suite is skipped', () => {
|
|
assert.equal(Math.sqrt(4), 3)
|
|
})
|
|
})
|
|
|
|
describe.todo('unimplemented suite')
|
|
|
|
describe('task modes', () => {
|
|
it.skip('no fail as it task is skipped', () => {
|
|
assert.equal(Math.sqrt(4), 3)
|
|
})
|
|
|
|
it.todo('unimplemented task')
|
|
})
|