11 lines
251 B
TypeScript
Executable file
11 lines
251 B
TypeScript
Executable file
/**
|
|
* Vitest test setup
|
|
*
|
|
* Configures testing environment and utilities.
|
|
*/
|
|
|
|
import * as matchers from '@testing-library/jest-dom/matchers'
|
|
import { expect } from 'vitest'
|
|
|
|
// Extend Vitest's expect with jest-dom matchers
|
|
expect.extend(matchers)
|