@mixtape/core
Version:
Supercharged fixture library for organizing and generating test data
20 lines (19 loc) • 582 B
TypeScript
import { Fixture as BaseFixture } from './fixture';
/**
* Class used for setting up and generating random test data.
* The class has a set of build-in types which can be created but
* it can easily be customized by adding new type builders.
* @extends BaseFixture
*/
export declare class Fixture extends BaseFixture {
/**
* Create a new `Fixture`
*/
constructor();
}
export * from './builder';
export * from './extension';
export * from './primitive-type';
export * from './generators';
export * from './injector';
export { FixtureContext } from './fixture';