creevey
Version:
Cross-browser screenshot testing tool for Storybook with fancy UI Runner
13 lines (11 loc) • 343 B
TypeScript
/// <reference types="chai" />
declare namespace Chai {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
interface ChaiStatic {
use(fn: (chai: ChaiStatic, utils: ChaiUtils) => void): ChaiStatic;
}
interface Assertion {
matchImage: (filename?: string) => Promise<void>;
matchImages: () => Promise<void>;
}
}