vitest/test/cli/fixtures/skip-note/basic.test.ts

6 lines
97 B
TypeScript

import { test } from 'vitest';
test('my skipped test', ctx => {
ctx.skip('custom message')
})