Property 'toEqual' does not exist on type 'Assertion'

뮤돔면·2023년 6월 11일

errors

목록 보기
2/2
post-thumbnail

현상

cypress를 도입하면서, jest의 toEqual 프로퍼티를 찾지 못하는 현상이 발생하였습니다.

원인

해결

첫번째 방법 : @jest/globals에서 expect를 import 해오기

import { expect } from '@jest/globals';

두번째 방법 : tsconfig.json에서 cypress.config.ts를 제외 설정해주기

"exclude": [
  "./cypress.config.ts",
  //other exclusions that may help https://github.com/cypress-io/cypress/issues/22059#issuecomment-1428298264
  "node_modules",
  "cypress",
  "**/*.cy.tsx"
]
profile
자바스크립트가 중심이 되는 프론트엔드 파트에서 개발하고 있습니다. 배려하고 포용하는 모든 것들을 사랑합니다.

0개의 댓글