mirror of
https://github.com/azure/login.git
synced 2026-06-07 18:17:07 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
59 lines
1.6 KiB
Markdown
59 lines
1.6 KiB
Markdown
<h1 align="center">
|
|
<img src="https://jestjs.io/img/jest.png" height="150" width="150"/>
|
|
<img src="https://jestjs.io/img/circus.png" height="150" width="150"/>
|
|
<p align="center">jest-circus</p>
|
|
<p align="center">The next-gen test runner for Jest</p>
|
|
</h1>
|
|
|
|
## Overview
|
|
|
|
Circus is a flux-based test runner for Jest that is fast, maintainable, and simple to extend.
|
|
|
|
Circus allows you to bind to events via an optional event handler on any [custom environment](https://jestjs.io/docs/en/configuration#testenvironment-string). See the [type definitions](https://github.com/facebook/jest/blob/master/packages/jest-circus/src/types.ts) for more information on the events and state data currently available.
|
|
|
|
```js
|
|
import NodeEnvironment from 'jest-environment-node';
|
|
import {Event, State} from 'jest-circus';
|
|
|
|
class MyCustomEnvironment extends NodeEnvironment {
|
|
//...
|
|
|
|
handleTestEvent(event: Event, state: State) {
|
|
if (event.name === 'test_start') {
|
|
// ...
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
Mutating event or state data is currently unsupported and may cause unexpected behavior or break in a future release without warning. New events, event data, and/or state data will not be considered a breaking change and may be added in any minor release.
|
|
|
|
## Installation
|
|
|
|
Install `jest-circus` using yarn:
|
|
|
|
```bash
|
|
yarn add --dev jest-circus
|
|
```
|
|
|
|
Or via npm:
|
|
|
|
```bash
|
|
npm install --save-dev jest-circus
|
|
```
|
|
|
|
## Configure
|
|
|
|
Configure Jest to use `jest-circus` via the [`testRunner`](https://jestjs.io/docs/en/configuration#testrunner-string) option:
|
|
|
|
```json
|
|
{
|
|
"testRunner": "jest-circus/runner"
|
|
}
|
|
```
|
|
|
|
Or via CLI:
|
|
|
|
```bash
|
|
jest --testRunner='jest-circus/runner'
|
|
```
|