-
-
Notifications
You must be signed in to change notification settings - Fork 451
Open
Description
After migrating to react native 0.72, a simple jest test with react testing library gives the following error about a hundred times and the test fails:
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/index.test.tsx.
Here is the component and its test:
// src/components/form/CollapsibleFormField/TestComponent.tsx
import { useState } from 'react'
import { Text } from 'react-native'
import Collapsible from 'react-native-collapsible'
export const TestComponent = () => {
const [visible, setVisible] = useState(false)
return (
<>
<Text onPress={() => setVisible(current => !current)}>Press me</Text>
<Collapsible collapsed={!visible}>
<Text>Hello</Text>
</Collapsible>
</>
)
}// src/components/form/CollapsibleFormField/TestComponent.test.tsx
import { fireEvent, render, screen } from '@testing-library/react-native'
import { TestComponent } from './TestComponent'
describe('test', () => {
it('test', () => {
render(<TestComponent />)
fireEvent.press(screen.getByText('Press me'))
fireEvent.press(screen.getByText('Press me'))
expect(screen.getByText('Hello')).toBeVisible()
})
})here is the test output:
yarn test src/components/form/CollapsibleFormField/TestComponent.test.tsx
yarn run v1.22.19
$ TZ=UTC jest --colors src/components/form/CollapsibleFormField/TestComponent.test.tsx
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
PASS src/components/form/CollapsibleFormField/TestComponent.test.tsx
test
✓ test (32 ms)
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: 1.854 s, estimated 2 s
Ran all test suites matching /src\/components\/form\/CollapsibleFormField\/TestComponent.test.tsx/i.
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
ReferenceError: You are trying to access a property or method of the Jest environment after it has been torn down. From src/components/form/CollapsibleFormField/TestComponent.test.tsx.
at Timeout._onTimeout (node_modules/react-native/jest/setup.js:414:26)
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.denis-rift, irvin373, jforaker, brushton-ces, wmonecke and 4 more
Metadata
Metadata
Assignees
Labels
No labels