Skip to main content

All Questions

Filter by
Sorted by
Tagged with
0 votes
1 answer
233 views

Error while testing a component in next using emotion/styled with jest and react testing library

I am testing a component that has the following code and uses @emotion/styled: import styled from "@emotion/styled"; const StyledNavBar = styled.div` position: fixed; top: 0; width: ...
kevin parra's user avatar
0 votes
1 answer
2k views

Testing Library with Emotion 'css'

Hello there I have two question with Next.js, testing-library/react and emotion. before ask, I'll show you code below // component import { css, Theme } from '@emotion/react'; function Foo() { ...
Hyesung Oh's user avatar