Skip to content

Commit

Permalink
Add jest 16 support to fixed documented bug testing-library/user-even…
Browse files Browse the repository at this point in the history
  • Loading branch information
ari7946 committed Nov 10, 2021
1 parent 446bfa0 commit 2414509
Show file tree
Hide file tree
Showing 4 changed files with 358 additions and 23 deletions.
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -21,6 +21,7 @@
"axios": "^0.19.2",
"bootstrap": "^4.4.1",
"cross-env": "^6.0.3",
"jest-environment-jsdom-sixteen": "^2.0.0",
"jquery": "^3.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
Expand All @@ -40,7 +41,7 @@
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test": "react-scripts test --env jest-environment-jsdom-sixteen",
"eject": "react-scripts eject",
"heroku-postbuild": "npm run build"
},
Expand Down
@@ -1,13 +1,19 @@
import React from 'react'
import { render, screen } from '../../../../_global/test-utils'
import userEvent from '@testing-library/user-event'
import BookForm from '../book-form.component'

describe('BookForm', () => {
it('should render BookForm', async () => {
render(
const { debug } = render(
<BookForm />
)
const inputElement = screen.getByPlaceholderText('name');
expect(inputElement).toBeInTheDocument()
const nameInput = screen.getByTestId('form-name')
expect(nameInput).toBeInTheDocument()

userEvent.type(nameInput, "Shred Flanders")

expect(nameInput).toHaveValue("Shred Flanders")

})
})
18 changes: 11 additions & 7 deletions src/features/book/components/book-form/book-form.component.tsx
Expand Up @@ -12,7 +12,7 @@ import { selectStartAddress, selectEndAddress, selectLoading, selectAlertSuccess
} from '../../redux/book.selectors';

import { submitForm } from '../../redux/book.actions';
import { bindActionCreators } from 'redux';


interface ActionCreators {
submitForm: (obj: FormFields) => any,
Expand Down Expand Up @@ -89,12 +89,14 @@ const TaxiForm = ({

{/* NAME */}
<FormGroup>
<Label for="exampleEmail">Name: <span className="text-flat-orange small ml-2">required</span></Label>
<Label for="form-name">Name: <span className="text-flat-orange small ml-2">required</span></Label>
<Input
type="text"
name="name"
id="form-name"
placeholder="name"
bsSize="sm"
data-testid='form-name'
onChange={(event) =>
handleChange(event.target.name, event.target.value)}
value={values.name}
Expand All @@ -103,11 +105,11 @@ const TaxiForm = ({

{/* PHONE */}
<FormGroup>
<Label for="exampleNumber">Phone: <span className="text-flat-orange small ml-2">required</span></Label>
<Label for="form-phone">Phone: <span className="text-flat-orange small ml-2">required</span></Label>
<Input
type="text"
name="phone"
id="exampleNumber"
id="form-phone"
placeholder="###-###-####"
bsSize="sm"
onChange={(event) =>
Expand All @@ -133,10 +135,11 @@ const TaxiForm = ({

{/* DATE */}
<FormGroup>
<Label for="exampleDate">Date: <span className="text-flat-orange small ml-2">required</span></Label>
<Label for="form-date">Date: <span className="text-flat-orange small ml-2">required</span></Label>
<Input
type="date"
name="date"
id="form-date"
placeholder="date"
bsSize="sm"
onChange={(event) =>
Expand All @@ -147,10 +150,11 @@ const TaxiForm = ({

{/* TIME */}
<FormGroup>
<Label for="exampleTime">Time: <span className="text-flat-orange small ml-2">required</span></Label>
<Label for="form-time">Time: <span className="text-flat-orange small ml-2">required</span></Label>
<Input
type="time"
name="time"
id='form-time'
placeholder="time"
bsSize="sm"
onChange={(event) =>
Expand All @@ -161,7 +165,7 @@ const TaxiForm = ({

{/* COMMENTS */}
<FormGroup>
<Label for="exampleText">Comments: </Label>
<Label for="form-comments">Comments: </Label>
<Input
type="textarea"
name="comments"
Expand Down

0 comments on commit 2414509

Please sign in to comment.