Skip to content

Commit 3a6da55

Browse files
Adding and fixing incidents-from-case test
1 parent 410bdc6 commit 3a6da55

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

app/javascript/components/incidents-from-case/components/detail/component.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ describe("<IncidentDetail /> - Component", () => {
4040
});
4141

4242
it("render a DisplayData", () => {
43-
expect(screen.getAllByTestId("display-data")).toBeTruthy();
43+
expect(screen.getAllByTestId("display-data")).toHaveLength(3);
4444
});
4545

4646
it("render a DisplayData with action button", () => {
47-
expect(screen.getAllByRole("button")).toBeTruthy();
47+
expect(screen.getAllByRole("button")).toHaveLength(2);
4848
});
4949
});

app/javascript/components/incidents-from-case/components/panel/component.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@ describe("<IncidentPanel /> - Component", () => {
109109
});
110110

111111
it("render IncidentSummary component", () => {
112-
expect(screen.getByText("incidents.type_violence")).toBeInTheDocument();
112+
expect(screen.getAllByTestId("incidentsummary")).toHaveLength(1);
113113
});
114114

115115
it("render IncidentDetail component", () => {
116116
expect(screen.getByText("incidents.date_of_incident")).toBeInTheDocument();
117117
});
118118

119119
it("with violence-type-lookup-renders the translated value", () => {
120-
expect(screen.getAllByText("Test1")).toBeTruthy();
120+
expect(screen.getAllByText("Test1")).toHaveLength(2);
121121
});
122122
});

app/javascript/components/incidents-from-case/components/summary/component.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { NAME_SUMMARY } from "../../constants";
77

88
const Component = ({ css, incidentDate, incidentType }) => {
99
return (
10-
<Grid container spacing={2} alignItems="center">
10+
<Grid container spacing={2} alignItems="center" data-testid="incidentsummary">
1111
<Grid item md={10} xs={8}>
1212
<div className={css.wrapper}>
1313
<div className={css.titleHeader}>{incidentDate}</div>

app/javascript/components/incidents-from-case/container.spec.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ describe("<IncidentFromCase /> - Component", () => {
8383

8484
it("render IncidentFromCase component", () => {
8585
expect(screen.getByText("incidents.label")).toBeInTheDocument();
86+
expect(screen.getByTestId("panel")).toBeInTheDocument();
8687
});
8788

8889
it("render IncidentPanel component", () => {
@@ -93,11 +94,19 @@ describe("<IncidentFromCase /> - Component", () => {
9394
expect(screen.getByText("incidents.date_of_incident")).toBeInTheDocument();
9495
});
9596

97+
it("render IncidentSummary component", () => {
98+
expect(screen.getAllByTestId("incidentsummary")).toHaveLength(1);
99+
});
100+
96101
it("render a DisplayData with action button", () => {
97102
expect(screen.getAllByRole("button")).toBeTruthy();
98103
});
99104

100-
it("render RecordFormAlerts component", () => {
105+
it("render a ActionButton", () => {
106+
expect(screen.getByText("buttons.new")).toBeInTheDocument();
107+
});
108+
109+
it("should render the alerts", () => {
101110
const stateWithAlerts = initialState.setIn(
102111
["records", "cases", "recordAlerts"],
103112
fromJS([

0 commit comments

Comments
 (0)