chai-a11y-axe
Version:
A11y tests for chai
13 lines (10 loc) • 310 B
TypeScript
/// <reference types="chai" />
declare namespace Chai {
interface Assertion {
accessible(options?: Object): Promise<Assertion>;
}
interface Assert {
isAccessible(fixture: any, options?: Object): Promise<Assertion>;
isNotAccessible(fixture: any, options?: Object): Promise<Assertion>;
}
}