/** * Contains helpers for working with test fixtures */ /** * Return fixture described in `path`. * * If file does not exist and `defaultValue` is provided, writes defaultValue to `path` and throws an error. * * @param path * @param defaultValue * @return T - fixture content */ export declare function getFixture(path: string, defaultValue?: T | (() => Promise)): Promise; export declare function jsonNormalize(v: T): T; //# sourceMappingURL=fixtures.utils.d.ts.map