Mockingbird
π¦ Decorator Powered TypeScript Library for Creating Mocks
Install / Use
/learn @omermorad/MockingbirdREADME
Installation
npm i -D mockingbird
yarn add -D mockingbird
What is "Mocking Library"?
A lot of times you find yourself βpreparingβ some dummy data for your tests that has to make sense for a specific test case(s) and is manipulated often. Some developers are preparing JSON files, others create a long verbose object in the test file itself, but the outcome always contains some fake data inside (or even a snapshot from an external API).
This is what Mockingbird aims to solve! It suggests two ways of creating mocks for your entities/models classes, thus, creating one uniform way to manage mocks (whether you are working alone or with your team), your dev experience will improve, and you wonβt have to deal with this messy setup at all!
Features
- Prepare as many unique mocks/fixtures as you need for your tests
- Generate dummy (but reasonable) data for database seeding
- Manage your mocks from one place, forget about the messy work
- Full TypeScript compatibility
- Convenient and simple API
Usage
Here is the simplest usage of Mockingbird:
// Could be interface as well
class BirdEntity {
name: string;
birthday: Date;
goodPoints: number;
}
import { Mock, MockFactory } from 'mockingbird';
// BirdEntity could be an interface or a class
class BirdEntityMock implements BirdEntity {
@Mock(faker => faker.name.firstName())
name!: string;
@Mock()
birthday!: Date; // Will generate a recent date
@Mock()
goodPoints!: number; // Will generate a random number
}
const oneBird = MockFactory(BirdEntityMock).one();
const lotsOfBirds = MockFactory(BirdEntityMock).many(3);
Documentation
Jump to the full documentation and explore the full API
There's also an example, you can find it under the sample folder
Playground
Jump to the REPL Playground where you can see Mockingbird in action!
Motivation
Creating mocks for your tests (sometimes called "fixtures") can be a tedious and cumbersome process usually done manually.
We came up with a simple yet super convenient solution: all you have to do to get mocks out of the box is to decorate your classes (whether it's an entity, or a model representing the database layer) and generate simple or complex mocks.
Mockingbird offers two different ways for preparing mocks; The first one (as we call it), is the TypeScript way which requires decorating existing (or duplicate) classes. The second way is to use Mockingbird's functionality directly
What is faker.js?
faker.js it's a library which is used to "generate massive amounts of fake data in the browser and Node".
Mockingbird uses faker.js under the hood, making it possible to enjoy its rich database, and thereby allows
to create mocks that are meaningful like email, first name, address and many more.
License
Distributed under the MIT License. See LICENSE for more information.
Acknowledgements
Related Skills
gh-issues
335.9kFetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5] [--notify-channel -1002381931352]
node-connect
335.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.7kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Writing Hookify Rules
82.7kThis skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
