@stackup/factory
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published

@stackup/factory

Build Version Size License

Install

$ yarn add @stackup/factory --dev

Usage

First, you'll need to define a factory:

import { factory } from "@stackup/factory";

const UserFactory = factory({
  id: 1,
  name: "Rick",
});

Great, now to use that factory, just call the build method:

UserFactory.build();
// { id: 1, name: "Rick" }

You can override some of the properties, too:

UserFactory.build({ name: "Ray" });
// { id: 1, name: "Ray" }

Generate an array:

UserFactory.array(2).build();
// [
//   { id: 1, name: "Rick" },
//   { id: 1, name: "Rick" }
// ]

Your factories can reuse other factories:

const ProfileFactory = factory({
  user: UserFactory,
  friends: UserFactory.array(2),
});

ProfileFactory.build();
// {
//   user: { id: 1, name: "Rick" },
//   friends: [{ id: 1, name: "Rick" }, { id: 1, name: "Rick" }]
// }

Need something to be unique?

import { sequence } from "@stackup/factory";

const UserFactory = factory({
  email: sequence((n) => `${n}@example.com`),
});

UserFactory.build();
// { email: "78@example.com" }

UserFactory.build();
// { email: "79@example.com" }

Want random data?

import { random } from "@stackup/factory";

const UserFactory = factory({
  name: random((chance) => chance.name()),
});

UserFactory.build();
// { name: "Leona Floyd" }

UserFactory.build();
// { name: "Max Copeland" }

Fixtures

If you're snapshot testing, random data will break your tests. In that case, you can generate data deterministically:

UserFactory.fixture();
// { name: "Abe" }

UserFactory.fixture();
// { name: "Abe" }

Package Sidebar

Install

npm i @stackup/factory

Weekly Downloads

1

Version

0.2.1

License

MIT

Unpacked Size

7.55 kB

Total Files

5

Last publish

Collaborators

  • rzane