Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
jest-emotion
Advanced tools
Jest testing utilities for emotion
npm install --save-dev jest-emotion
The easiest way to test React components with emotion is with 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: ['jest-emotion']
}
Or you can customize the serializer via the createSerializer
method like so: (the example below is with react-test-renderer but jest-emotion also works with enzyme and react-testing-library)
import React from 'react'
import renderer from 'react-test-renderer'
import serializer from 'jest-emotion'
import styled from '@emotion/styled'
expect.addSnapshotSerializer(serializer)
test('renders with correct styles', () => {
const H1 = styled.h1`
float: left;
`
const tree = renderer.create(<H1>hello world</H1>).toJSON()
expect(tree).toMatchSnapshot()
})
Refer to the testing doc for more information about snapshot testing with emotion.
classNameReplacer
jest-emotion'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.
function classNameReplacer(className, index) {
return `emotion-${index}`
}
import { createSerializer } from 'jest-emotion'
expect.addSnapshotSerializer(
createSerializer({
classNameReplacer(className, index) {
return `my-new-class-name-${index}`
}
})
)
DOMElements
jest-emotion'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:
import { createSerializer } from 'jest-emotion'
// configures jest-emotion to ignore DOM elements
expect.addSnapshotSerializer(createSerializer({ DOMElements: false }))
To make more explicit assertions when testing your styled components you can use the toHaveStyleRule
matcher.
import React from 'react'
import renderer from 'react-test-renderer'
import { matchers } from 'jest-emotion'
import styled from '@emotion/styled'
// Add the custom matchers provided by 'jest-emotion'
expect.extend(matchers)
test('renders with correct styles', () => {
const H1 = styled.h1`
float: left;
`
const tree = renderer.create(<H1>hello world</H1>).toJSON()
expect(tree).toHaveStyleRule('float', 'left')
expect(tree).not.toHaveStyleRule('color', 'hotpink')
})
Thanks to Kent C. Dodds who wrote jest-glamor-react which this library is largely based on. ❤️
FAQs
Jest utilities for emotion
The npm package jest-emotion receives a total of 30,729 weekly downloads. As such, jest-emotion popularity was classified as popular.
We found that jest-emotion demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.