mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
9 lines
180 B
TypeScript
9 lines
180 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
|
|
describe('describe error', () => {
|
|
throw new Error('describe error')
|
|
|
|
it('wont run', () => {
|
|
expect(true).toBe(true)
|
|
})
|
|
}) |