Correct datetime value in label test

This commit is contained in:
Theresa Gresch 2019-08-14 13:20:36 +02:00
parent 94633ba65c
commit c9bfb82619

View File

@ -55,11 +55,11 @@ describe("model/label", () => {
});
it("should get date string", () => {
const t = "2009-11-17 20:34:58.651387237 +0000 UTC";
const t = "2012-07-08 14:45:39";
const values = {ID: 5, LabelName: "Black Cat", LabelSlug: "black-cat", CreatedAt: t};
const label = new Label(values);
const result = label.getDateString();
assert.equal(result, "November 17, 2009 8:34 PM");
assert.equal(result, "July 8, 2012 2:45 PM");
});
it("should get model name", () => {