Свойство toBeInTheDocument не существует для типа Matchers <HTMLElement>
Пытаюсь настроить тестирование библиотеки компонентов. Я пробовал много примеров и все похожие темы, но безуспешно.
Мой файл setupTests.ts загружается правильно (проверено с помощью console.log), и кажется, что библиотека доступна, как если бы я добавил import { toBeInTheDocument } from '@testing-library/jest-dom/matchers'
и журнал toBeInTheDocument
это присутствует.
Я пробовал expect.extend({ toBeInTheDocument })
вариант тоже, и, к сожалению, такая же ошибка.
Ниже представлены мои файлы, что мне не хватает? Спасибо
// package.json
"devDependencies": {
"@testing-library/jest-dom": "^5.11.0",
"@testing-library/react": "^10.4.3",
"@types/testing-library__jest-dom": "^5.9.1",
"@types/testing-library__react": "^10.2.0",
"@types/jest": "24.0.15",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
}
// jest.config.js
module.exports = {
preset: 'ts-jest',
// The root of your source code, typically /src
// `<rootDir>` is a token Jest substitutes
roots: ['<rootDir>/src'],
// Jest transformations -- this adds support for TypeScript
// using ts-jest
transform: {
'^.+\\.tsx?$': 'ts-jest'
},
testEnvironment: 'jsdom',
// Runs special logic, such as cleaning up components
// when using React Testing Library and adds special
// extended assertions to Jest
setupFilesAfterEnv: ['<rootDir>/setupTests.ts'],
// // A map from regular expressions to module names that allow to stub out resources with a single module
moduleNameMapper: {
'@core': '<rootDir>/src/core',
'@hooks': '<rootDir>/src/hooks',
'@components': '<rootDir>/src/components'
},
// Test spec file resolution pattern
// Matches parent folder `__tests__` and filename
// should contain `test` or `spec`.
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
// Module file extensions for importing
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node']
}
// tsconfig
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"lib": ["esnext", "dom", "dom.iterable"],
"jsx": "react",
"types": ["react", "jest"],
"outDir": "./dist",
"baseUrl": "src",
"paths": {
"@core": ["core"],
"@core/*": ["core/*"],
"@components": ["components"],
"@components/*": ["components/*"],
"@hooks": ["hooks"],
"@hooks/*": ["hooks/*"]
},
"sourceMap": true,
"declaration": true,
"noImplicitAny": true,
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true
},
"include": ["src", "setupTests.ts"],
"exclude": ["dist", "node_modules"]
}
// myproject/setupTests.ts
import '@testing-library/jest-dom/extend-expect'
// src/components/container/__tests__/container.spec.tsx
import * as React from 'react'
import { render } from '@testing-library/react'
import { Container } from '../Container'
describe('<Container />', () => {
test('renders', async () => {
expect(true).toBe(true)
const { getByText } = render(<Container>mad</Container>)
// NOTE: not even my TS is happy
// Property 'toBeInTheDocument' does not exist on type 'Matchers<HTMLElement>'
expect(getByText('mad')).toBeIntheDocument()
})
})
Ошибка:
FAIL src/components/Container/__tests__/container.spec.tsx
<Container />
✕ renders (28 ms)
● <Container /> › renders
TypeError: expect(...).toBeIntheDocument is not a function
РЕДАКТИРОВАТЬ: Комментарий Влада был правильным, глупая опечатка с моей стороны. Хотя сейчас тест проходит без ошибок, VSCode по-прежнему жалуется на это.
Property 'toBeInTheDocument' does not exist on type 'Matchers<HTMLElement>'
Я обнаружил, что добавление "testing-library__jest-dom" в "типы tsconfig", похоже, подавляет ошибку, если навести указатель мыши на функцию, которая имеет тип any
и я не могу перейти к определению функции "Не найдено определения для"toBeInTheDocument".
Есть идеи, почему не загружаются определения типов?
1 ответ
Обновление "@types/jest" до последней версии "26.0.3" устранило эту проблему для меня. Мой проект был скопирован из базового проекта, и @ types / jest уже был включен. Пропустил это при инициализации других пакетов.
В обновленном @ types / jest был изменен интерфейс index.d.ts Matchers, благодаря которому все заработало.