Skip to content

Commit 6f8571f

Browse files
committed
Reverted deleted file
1 parent 52671b2 commit 6f8571f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)