I'm learning unit test in react from freecodecamp blog. I followed all the steps mentioned in that for testing a DOM Element in the react app but test fails by saying the following message:
PASS src/App.test.js
FAIL src/components/TestElements.test.js
Testing of DOM Element › should equal to 0
TypeError: expect(...).toHaveTextContent is not a function
8 | it('should equal to 0', () => {
9 | const { getByTestId } = render(<TestElements />);
> 10 | expect(getByTestId('counter')).toHaveTextContent(0)
| ^
11 | });
12 |
13 | it('should test button disbaled status',()=>{
at Object.<anonymous> (src/components/TestElements.test.js:10:40)
Hers is my TestElement.js
import React from 'react'
const TestElements = () => {
const [counter, setCounter] = React.useState(0)
return (
<>
<h1 data-testid="counter">{ counter }</h1>
<button data-testid="button-up" onClick={() => setCounter(counter + 1)}> Up</button>
<button disabled data-testid="button-down" onClick={() => setCounter(counter - 1)}>Down</button>
</>
)
}
export default TestElements
And here is my TestElements.test.js
import React from 'react'
import {render,cleanup} from '@testing-library/react'
import TestElements from './TestElements'
describe('Testing of DOM Element', ()=>{
afterEach(cleanup)
it('should equal to 0', () => {
const { getByTestId } = render(<TestElements />);
expect(getByTestId('counter')).toHaveTextContent(0)
});
it('should test button disbaled status',()=>{
const {getByTestId} = render(<TestElements/>)
expect(getByTestId('button-down')).toBeDisabled()
})
it('should test button is not disabled status', ()=>{
const {getByTestId} = render(<TestElements/>)
expect(getByTestId('button-up')).not.toHaveAttribute('disabled')
})
})