You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
440 B
TypeScript
11 lines
440 B
TypeScript
// frontend/tests/vitest-axe.d.ts — vitest Assertion 에 axe 매처 타입 보강
|
|
import "vitest";
|
|
import type { AxeMatchers } from "vitest-axe/dist/matchers";
|
|
|
|
declare module "vitest" {
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
interface Assertion extends AxeMatchers {}
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
interface AsymmetricMatchersContaining extends AxeMatchers {}
|
|
}
|