8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
import { describe, it, expect } from 'vitest'
|
|
|
|
describe('e2e placeholder (see .e2e.ts files for Playwright)', () => {
|
|
it('skips in Vitest environment', () => {
|
|
expect(true).toBe(true)
|
|
})
|
|
})
|