Skip to content

Commit 917f234

Browse files
Fixing referrals tests
1 parent 1ebdd79 commit 917f234

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

app/javascript/components/record-actions/transitions/components/referrals/provided-consent.spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,4 @@ describe("<ProvidedConsent /> - referrals", () => {
5151
mountedComponent(<ProvidedConsent {...props} />, {}, [], [], formProps);
5252
expect(screen.getByText(/referral.provided_consent_label/i)).toBeInTheDocument();
5353
});
54-
5554
});

app/javascript/components/record-actions/transitions/components/referrals/provided-form.spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,5 @@ describe("<ProvidedForm /> - referrals", () => {
3333
expect(screen.queryByTestId("form-control")).toBeNull();
3434
expect(screen.queryAllByRole("checkbox")).toHaveLength(0);
3535
expect(screen.getByText(/referral.provided_consent_label/i)).toBeInTheDocument();
36-
3736
});
3837
});

app/javascript/components/record-actions/transitions/components/transfers/component.spec.js

+24-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { fromJS } from "immutable";
22

3-
import { mountedComponent, screen } from "../../../../../test-utils";
3+
import { mountedComponent, screen, fireEvent } from "../../../../../test-utils";
44

55
import Transfers from "./component";
66

@@ -42,7 +42,11 @@ describe("<RecordActions />/transitions/components/<Transfers />", () => {
4242

4343
it("should not disabled field if consent was provided", () => {
4444
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+
});
4650
});
4751

4852
it("should render the Consent Not Provided Alert if consent was not provided", () => {
@@ -64,7 +68,11 @@ describe("<RecordActions />/transitions/components/<Transfers />", () => {
6468

6569
mountedComponent(<Transfers {...props} />, initialState);
6670

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+
});
6876
});
6977

7078
describe("when consent was not provided ", () => {
@@ -102,8 +110,19 @@ describe("<RecordActions />/transitions/components/<Transfers />", () => {
102110

103111
mountedComponent(<Transfers {...props} />, initialState);
104112

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+
});
107126
});
108127
});
109128

0 commit comments

Comments
 (0)