Skip to content
Snippets Groups Projects
Verified Commit a585d9c7 authored by Andreas Ellewsen's avatar Andreas Ellewsen
Browse files

Fix various warnings from tests

- Things that needed to be wrapped in act are now wrapped in act.
- Things that were wrapped more tan once in act, no longer are.
parent 39abf2a4
No related branches found
No related tags found
1 merge request!317Fix various warnings from tests
Pipeline #131531 failed
...@@ -2,6 +2,8 @@ import { render, screen, waitFor } from 'test-utils' ...@@ -2,6 +2,8 @@ import { render, screen, waitFor } from 'test-utils'
import AdapterDateFns from '@mui/lab/AdapterDateFns' import AdapterDateFns from '@mui/lab/AdapterDateFns'
import { LocalizationProvider } from '@mui/lab' import { LocalizationProvider } from '@mui/lab'
import { addYears } from 'date-fns/fp' import { addYears } from 'date-fns/fp'
import { act } from 'react-dom/test-utils'
import { FeatureContext } from 'contexts' import { FeatureContext } from 'contexts'
import GuestRegisterStep from './register' import GuestRegisterStep from './register'
import { GuestRegisterData } from '../enteredGuestData' import { GuestRegisterData } from '../enteredGuestData'
...@@ -335,10 +337,7 @@ test('Guest not allowed to proceed in wizard if phone number is not valid', asyn ...@@ -335,10 +337,7 @@ test('Guest not allowed to proceed in wizard if phone number is not valid', asyn
</FeatureContext.Provider> </FeatureContext.Provider>
) )
reference.current?.doSubmit() await act(async () => reference.current?.doSubmit())
// TODO It is stupid to wait like this, but I have not found a wait-for function in jest
await new Promise((r) => setTimeout(r, 500))
expect(nextHandler.mock.calls.length).toBe(0) expect(nextHandler.mock.calls.length).toBe(0)
}) })
...@@ -389,10 +388,7 @@ test('Guest allowed to proceed in wizard if data is valid', async () => { ...@@ -389,10 +388,7 @@ test('Guest allowed to proceed in wizard if data is valid', async () => {
</FeatureContext.Provider> </FeatureContext.Provider>
) )
reference.current?.doSubmit() await act(async () => reference.current?.doSubmit())
// TODO It is stupid to wait like this, but I have not found a wait-for function in jest
await new Promise((r) => setTimeout(r, 500))
expect(nextHandler.mock.calls.length).toBe(1) expect(nextHandler.mock.calls.length).toBe(1)
}) })
...@@ -4,7 +4,7 @@ import React from 'react' ...@@ -4,7 +4,7 @@ import React from 'react'
import _ from 'lodash' import _ from 'lodash'
import GuestPage from './index' import GuestPage from './index'
import { UserContext } from '../../contexts' import { UserContext } from '../../contexts'
import { render, screen, waitFor } from '../../test-utils' import { render, screen } from '../../test-utils'
const userData = { const userData = {
user: { user: {
...@@ -59,26 +59,21 @@ test('Guest values showing', async () => { ...@@ -59,26 +59,21 @@ test('Guest values showing', async () => {
</UserContext.Provider> </UserContext.Provider>
) )
await waitFor( screen.findByDisplayValue(
() => { `${userData.user.first_name} ${userData.user.last_name}`
screen.findByDisplayValue( )
`${userData.user.first_name} ${userData.user.last_name}` screen.findByDisplayValue(userData.user.feide_id)
) screen.findByDisplayValue(userData.user.email)
screen.findByDisplayValue(userData.user.feide_id) screen.findByDisplayValue(userData.user.mobile_phone)
screen.findByDisplayValue(userData.user.email) screen.findByDisplayValue(userData.user.roles[0].name_en)
screen.findByDisplayValue(userData.user.mobile_phone) screen.findByDisplayValue(userData.user.roles[0].ou_en)
screen.findByDisplayValue(userData.user.roles[0].name_en) screen.findByDisplayValue(
screen.findByDisplayValue(userData.user.roles[0].ou_en) `${userData.user.roles[0].start_date} - ${userData.user.roles[0].end_date}`
screen.findByDisplayValue(
`${userData.user.roles[0].start_date} - ${userData.user.roles[0].end_date}`
)
screen.findByDisplayValue(userData.user.consents[0].type.name_en)
screen.findByDisplayValue(userData.user.consents[0].choice.text_en)
screen.findByDisplayValue(userData.user.consents[0].consent_given_at)
},
{ timeout: 5000 }
) )
screen.findByDisplayValue(userData.user.consents[0].type.name_en)
screen.findByDisplayValue(userData.user.consents[0].choice.text_en)
screen.findByDisplayValue(userData.user.consents[0].consent_given_at)
}) })
test('Guest values showing when consent date is not set', async () => { test('Guest values showing when consent date is not set', async () => {
...@@ -96,12 +91,7 @@ test('Guest values showing when consent date is not set', async () => { ...@@ -96,12 +91,7 @@ test('Guest values showing when consent date is not set', async () => {
) )
// Just check that the page is showing // Just check that the page is showing
await waitFor( screen.findByDisplayValue(
() => { `${userData.user.first_name} ${userData.user.last_name}`
screen.findByDisplayValue(
`${userData.user.first_name} ${userData.user.last_name}`
)
},
{ timeout: 5000 }
) )
}) })
...@@ -68,4 +68,4 @@ test('Button state correct on load', async () => { ...@@ -68,4 +68,4 @@ test('Button state correct on load', async () => {
}, },
{ timeout: 5000 } { timeout: 5000 }
) )
}) }, 10000)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment