All Questions
2 questions
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: ...
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() {
...