JSPM

  • Created
  • Published
  • Downloads 791793
  • Score
    100M100P100Q199850F
  • 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.

Installation

yarn add --dev jest-styled-components

toMatchStyledComponentsSnapshot [React]

Preview

Preview

Usage

// *.spec.js

import 'jest-styled-components'

// ...

expect(tree).toMatchStyledComponentsSnapshot()

toHaveStyleRule [React]

Preview

Preview

Usage

// *.spec.js

import 'jest-styled-components'

// ...

expect(tree).toHaveStyleRule('property', value)

toHaveStyleRule [React Native]

Preview

Preview Preview

Usage

// *.spec.js

import 'jest-styled-components/native'

// ...

expect(tree).toHaveStyleRule('property', value)