1
1
import { fromJS } from "immutable" ;
2
2
3
- import { mountedComponent , screen } from "../../../../../test-utils" ;
3
+ import { mountedComponent , screen , fireEvent } from "../../../../../test-utils" ;
4
4
5
5
import Transfers from "./component" ;
6
6
@@ -42,7 +42,11 @@ describe("<RecordActions />/transitions/components/<Transfers />", () => {
42
42
43
43
it ( "should not disabled field if consent was provided" , ( ) => {
44
44
mountedComponent ( < Transfers { ...initialProps } /> , initialState ) ;
45
- expect ( screen . queryAllByRole ( "combobox" ) ) . toHaveLength ( 3 ) ;
45
+ const textFields = document . querySelectorAll ( 'input[type="text"]' ) ;
46
+
47
+ textFields . forEach ( combobox => {
48
+ expect ( combobox ) . not . toBeDisabled ( ) ;
49
+ } ) ;
46
50
} ) ;
47
51
48
52
it ( "should render the Consent Not Provided Alert if consent was not provided" , ( ) => {
@@ -64,7 +68,11 @@ describe("<RecordActions />/transitions/components/<Transfers />", () => {
64
68
65
69
mountedComponent ( < Transfers { ...props } /> , initialState ) ;
66
70
67
- expect ( screen . queryAllByRole ( "combobox" ) ) . toHaveLength ( 3 ) ;
71
+ const textFields = document . querySelectorAll ( 'input[type="text"]' ) ;
72
+
73
+ textFields . forEach ( field => {
74
+ expect ( field ) . toBeDisabled ( ) ;
75
+ } ) ;
68
76
} ) ;
69
77
70
78
describe ( "when consent was not provided " , ( ) => {
@@ -102,8 +110,19 @@ describe("<RecordActions />/transitions/components/<Transfers />", () => {
102
110
103
111
mountedComponent ( < Transfers { ...props } /> , initialState ) ;
104
112
105
- expect ( screen . getByRole ( "alert" ) ) . toBeInTheDocument ( ) ;
106
- expect ( screen . queryAllByRole ( "checkbox" ) ) . toHaveLength ( 3 ) ;
113
+ document . querySelectorAll ( 'input[type="text"]' ) . forEach ( field => {
114
+ expect ( field ) . toBeDisabled ( ) ;
115
+ } ) ;
116
+
117
+ const consentCheckbox = document . querySelectorAll ( 'input[type="checkbox"]' ) [ 0 ] ;
118
+
119
+ expect ( consentCheckbox ) . not . toBeChecked ( ) ;
120
+ fireEvent . click ( consentCheckbox ) ;
121
+ expect ( consentCheckbox ) . toBeChecked ( ) ;
122
+
123
+ document . querySelectorAll ( 'input[type="text"]' ) . forEach ( field => {
124
+ expect ( field ) . not . toBeDisabled ( ) ;
125
+ } ) ;
107
126
} ) ;
108
127
} ) ;
109
128
0 commit comments