mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
14 lines
230 B
TypeScript
14 lines
230 B
TypeScript
import { it, expect} from "vitest"
|
|
|
|
it('<MyComponent />', () => {
|
|
expect(true).toBe(true)
|
|
})
|
|
|
|
it('<>\'"', () => {
|
|
expect(true).toBe(true)
|
|
})
|
|
|
|
it('char () - Square root of nine (9)', () => {
|
|
expect(Math.sqrt(9)).toBe(3);
|
|
});
|