Skip to content

Commit f4ae77d

Browse files
Schmang134estgirlcmlooffRuliwrTrineMedina
committed
Final updates to Docketeer 7.0.
Co-authored-by: Abigail Gerig <[email protected]> Co-authored-by: Christian Looff <[email protected]> Co-authored-by: Ruli Warner-Rosen <[email protected]> Co-authored-by: Trine Medina <[email protected]>
1 parent 9b33eee commit f4ae77d

34 files changed

+49
-46
lines changed

__tests__/ListReducer.test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe("Dockeeter reducer", () => {
3636
payload: [{ cid: "789" }],
3737
};
3838
expect(containerListReducer(state, action).runningList.length).toEqual(1);
39-
expect(containerListReducer(state, action).runningList[0].cid).toEqual("789");
39+
expect(containerListReducer(state, action).runningList[0].ID).toEqual("789");
4040
});
4141
});
4242

@@ -53,7 +53,7 @@ describe("Dockeeter reducer", () => {
5353
payload: [{ cid: "789" }],
5454
};
5555
expect(containerListReducer(state, action).stoppedList.length).toEqual(1);
56-
expect(containerListReducer(state, action).stoppedList[0].cid).toEqual("789");
56+
expect(containerListReducer(state, action).stoppedList[0].ID).toEqual("789");
5757
});
5858
});
5959

@@ -77,7 +77,7 @@ describe("Dockeeter reducer", () => {
7777
stoppedList: [{ cid: "123" }, { cid: "456" }],
7878
};
7979
const action = { type: "REMOVE_CONTAINER", payload: "123" };
80-
expect(containerListReducer(newState, action).stoppedList[0].cid).toEqual("456");
80+
expect(containerListReducer(newState, action).stoppedList[0].ID).toEqual("456");
8181
});
8282
});
8383

@@ -89,7 +89,7 @@ describe("Dockeeter reducer", () => {
8989
};
9090
const action = { type: "STOP_RUNNING_CONTAINER", payload: "123" };
9191
newState = containerListReducer(newState, action);
92-
expect(newState.runningList[0].cid).toEqual("456");
92+
expect(newState.runningList[0].ID).toEqual("456");
9393
});
9494
});
9595

@@ -100,7 +100,7 @@ describe("Dockeeter reducer", () => {
100100
stoppedList: [{ cid: "123" }, { cid: "456" }],
101101
};
102102
const action = { type: "RUN_STOPPED_CONTAINER", payload: "123" };
103-
expect(containerListReducer(newState, action).stoppedList[0].cid).toEqual("456");
103+
expect(containerListReducer(newState, action).stoppedList[0].ID).toEqual("456");
104104
});
105105
});
106106

coverage/clover.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<coverage generated="1666803544414" clover="3.2.0">
3-
<project timestamp="1666803544414" name="All files">
2+
<coverage generated="1666819753114" clover="3.2.0">
3+
<project timestamp="1666819753114" name="All files">
44
<metrics statements="595" coveredstatements="229" conditionals="116" coveredconditionals="9" methods="173" coveredmethods="9" elements="884" coveredelements="247" complexity="0" loc="595" ncloc="595" packages="8" files="26" classes="26"/>
55
<package name="security">
66
<metrics statements="2" coveredstatements="2" conditionals="0" coveredconditionals="0" methods="0" coveredmethods="0"/>

coverage/lcov-report/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ <h1>All files</h1>
206206
<div class='footer quiet pad2 space-top1 center small'>
207207
Code coverage generated by
208208
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
209-
at 2022-10-26T16:59:04.384Z
209+
at 2022-10-26T21:29:13.080Z
210210
</div>
211211
<script src="prettify.js"></script>
212212
<script>

coverage/lcov-report/server/app.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ <h1><a href="../index.html">All files</a> / <a href="index.html">server</a> app.
235235
<div class='footer quiet pad2 space-top1 center small'>
236236
Code coverage generated by
237237
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
238-
at 2022-10-26T16:59:04.384Z
238+
at 2022-10-26T21:29:13.080Z
239239
</div>
240240
<script src="../prettify.js"></script>
241241
<script>

coverage/lcov-report/server/controllers/apiController.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ <h1><a href="../../index.html">All files</a> / <a href="index.html">server/contr
379379
<div class='footer quiet pad2 space-top1 center small'>
380380
Code coverage generated by
381381
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
382-
at 2022-10-26T16:59:04.384Z
382+
at 2022-10-26T21:29:13.080Z
383383
</div>
384384
<script src="../../prettify.js"></script>
385385
<script>

coverage/lcov-report/server/controllers/bcryptController.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ <h1><a href="../../index.html">All files</a> / <a href="index.html">server/contr
403403
<div class='footer quiet pad2 space-top1 center small'>
404404
Code coverage generated by
405405
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
406-
at 2022-10-26T16:59:04.384Z
406+
at 2022-10-26T21:29:13.080Z
407407
</div>
408408
<script src="../../prettify.js"></script>
409409
<script>

coverage/lcov-report/server/controllers/configController.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ <h1><a href="../../index.html">All files</a> / <a href="index.html">server/contr
430430
<div class='footer quiet pad2 space-top1 center small'>
431431
Code coverage generated by
432432
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
433-
at 2022-10-26T16:59:04.384Z
433+
at 2022-10-26T21:29:13.080Z
434434
</div>
435435
<script src="../../prettify.js"></script>
436436
<script>

coverage/lcov-report/server/controllers/cookieController.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ <h1><a href="../../index.html">All files</a> / <a href="index.html">server/contr
166166
<div class='footer quiet pad2 space-top1 center small'>
167167
Code coverage generated by
168168
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
169-
at 2022-10-26T16:59:04.384Z
169+
at 2022-10-26T21:29:13.080Z
170170
</div>
171171
<script src="../../prettify.js"></script>
172172
<script>

coverage/lcov-report/server/controllers/dbController.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ <h1><a href="../../index.html">All files</a> / <a href="index.html">server/contr
343343
<div class='footer quiet pad2 space-top1 center small'>
344344
Code coverage generated by
345345
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
346-
at 2022-10-26T16:59:04.384Z
346+
at 2022-10-26T21:29:13.080Z
347347
</div>
348348
<script src="../../prettify.js"></script>
349349
<script>

coverage/lcov-report/server/controllers/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ <h1><a href="../../index.html">All files</a> server/controllers</h1>
221221
<div class='footer quiet pad2 space-top1 center small'>
222222
Code coverage generated by
223223
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
224-
at 2022-10-26T16:59:04.384Z
224+
at 2022-10-26T21:29:13.080Z
225225
</div>
226226
<script src="../../prettify.js"></script>
227227
<script>

0 commit comments

Comments
 (0)