JSPM

  • Created
  • Published
  • Downloads 854097
  • Score
    100M100P100Q190975F
  • License MIT

Jest utilities for Styled Components

Package Exports

  • jest-styled-components

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jest-styled-components) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Build Status

Jest Styled Components

Jest utilities for Styled Components.

Preview

Preview

Installation

yarn add --dev jest-styled-components

Usage

// package.json

"jest": {
  "testEnvironment": "node"
}
// *.spec.js

import { matcher, serializer } from 'jest-styled-components'

expect.extend(matcher)
expect.addSnapshotSerializer(serializer)

// ...

expect(tree).toMatchStyledComponentsSnapshot()