Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@-ui/jest

dash-ui10MITdeprecated1.1.1TypeScript support: included

This package has moved to @dash-ui/jest

Jest utilities for dash-ui

jest, dash, dash ui, -ui, jest serializer, css, jest css serializer, jest plugin, jest assertions

readme


@-ui/jest

Code coverage Build status NPM Version MIT License

npm i -D @-ui/jest

Jest utilities for -ui

-ui snapshots

The easiest way to test React, Preact, and Preact X components with -ui is using the snapshot serializer. You can register the serializer via the snapshotSerializers configuration property in your jest configuration like so:

// jest.config.js
module.exports = {
  // ... other config
  snapshotSerializers: ['@-ui/jest'],
}

Or you can customize the serializer via the createSerializer method like so: (the example below is with react-test-renderer but @-ui/jest also works with enzyme and react-testing-library)

`jsx harmony import React from 'react' import renderer from 'react-test-renderer' import styles from '@-ui/styles' import serializer from '@-ui/jest'

expect.addSnapshotSerializer(serializer)

test('renders with correct styles', () => { const text = styles({ heading: font-size: 4rem;, })

const tree = renderer .create(<h1 className={text('heading')}>Hello world) .toJSON()

expect(tree).toMatchSnapshot() })


### Options

#### `classNameReplacer`

`@-ui/jest`'s snapshot serializer replaces the hashes in class names with an index so that things like whitespace changes won't break snapshots. It optionally accepts a custom class name replacer, it defaults to the below.

```jsx harmony
const classNameReplacer = (className, index) => `-ui-${index}`

`jsx harmony import {createSerializer} from '@-ui/jest'

expect.addSnapshotSerializer( createSerializer({ classNameReplacer(className, index) { return my-new-class-name-${index} }, }) )


#### `DOMElements`

`@-ui/jest`'s snapshot serializer inserts styles and replaces class names in both React and DOM elements. If you would like to disable this behavior for DOM elements, you can do so by passing `{ DOMElements: false }`. For example:

```jsx
import {createSerializer} from '@-ui/jest'

// configures @-ui/jest to ignore DOM elements
expect.addSnapshotSerializer(createSerializer({DOMElements: false}))

Custom assertions

toHaveStyleRule

To make more explicit assertions when testing your components you can use the toHaveStyleRule matcher.

`jsx harmony import React from 'react' import renderer from 'react-test-renderer' import {matchers} from '@-ui/jest'

// Add the custom matchers provided by '@-ui/jest' expect.extend(matchers)

test('renders with correct styles', () => { const text = styles({ heading: font-size: 4rem;, })

const tree = renderer .create(<h1 className={text('heading')}>Hello world) .toJSON()

expect(tree).toHaveStyleRule('font-size', '4rem') expect(tree).not.toHaveStyleRule('color', 'hotpink') }) `

Credit

This was inspired by and relies almost entirely on work by jest-emotion which was largely inspired by jest-glamor-react.

LICENSE

MIT

changelog

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

2.1.2 (2021-08-24)

Bug Fixes

2.1.1 (2021-08-24)

Bug Fixes

2.1.0 (2021-08-24)

Features

2.0.1 (2020-07-20)

Bug Fixes

  • improve toHaveStyleRule equality checks (8f1cab0)

2.0.0 (2020-07-04)

⚠ BREAKING CHANGES

  • This breaks snapshots using the legacy -ui name

  • rename -ui class replacer to dash-ui (398cb1a)

1.1.0 (2020-07-04)