We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52671b2 commit 6f8571fCopy full SHA for 6f8571f
app/javascript/components/pages/dashboard/components/overdue-tasks/compoent.uinit.test.js
@@ -0,0 +1,17 @@
1
+// Copyright (c) 2014 - 2023 UNICEF. All rights reserved.
2
+
3
+import * as constants from "./constants";
4
5
+describe("<OverdueTasks> - pages/dashboard/components/overdue-tasks/constants", () => {
6
+ const clone = { ...constants };
7
8
+ it("should have known properties", () => {
9
+ expect(clone).to.be.an("object");
10
+ ["NAME"].forEach(property => {
11
+ expect(clone).to.have.property(property);
12
+ delete clone[property];
13
+ });
14
15
+ expect(clone).to.be.empty;
16
17
+});
0 commit comments