Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/negativetwelve/jest-addons
Declarative JS syntax for jest test suites
https://github.com/negativetwelve/jest-addons
Last synced: 17 days ago
JSON representation
Declarative JS syntax for jest test suites
- Host: GitHub
- URL: https://github.com/negativetwelve/jest-addons
- Owner: negativetwelve
- License: mit
- Created: 2017-07-31T05:35:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-17T09:19:24.000Z (about 7 years ago)
- Last Synced: 2024-10-19T15:59:57.033Z (28 days ago)
- Language: JavaScript
- Size: 191 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jest-addons
[![npm](https://img.shields.io/npm/v/jest-addons.svg)](https://www.npmjs.com/package/jest-addons)
[![npm](https://img.shields.io/npm/dt/jest-addons.svg)](https://www.npmjs.com/package/jest-addons)
[![npm](https://img.shields.io/npm/l/jest-addons.svg)](https://github.com/negativetwelve/jest-addons/blob/master/LICENSE)
[![CircleCI branch](https://img.shields.io/circleci/project/github/negativetwelve/jest-addons/master.svg)](https://circleci.com/gh/negativetwelve/jest-addons)Super-package of jest addons. Currently includes:
* [jest-action](https://github.com/negativetwelve/jest-action)
* [jest-context](https://github.com/negativetwelve/jest-context)
* [jest-its](https://github.com/negativetwelve/jest-its)
* [jest-set](https://github.com/negativetwelve/jest-set)## Getting Started
Install `jest-addons` using `yarn`:
```shell
yarn add --dev jest-addons
```## Usage
Add an entry to your jest configuration `setupFiles` in your `package.json`:
```json
"jest": {
"setupFiles": [
"jest-addons/setup"
]
}
```