@tomino/dynamic-form-semantic-ui
Version:
Semantic UI form renderer based on dynamic form generation
19 lines (15 loc) • 359 B
text/typescript
// import { expect as globalExpect } from 'chai';
import 'sinon-chai';
type Mocks = {
fake: sinon.SinonFake;
};
declare global {
// export const expect: typeof globalExpect;
export const mock: Mocks;
namespace Chai {
export interface Assertion {
matchSnapshot(name?: string): void;
toMatchSnapshot(name?: string): void;
}
}
}