We used many global functions to handle tests when they should be imported like other libraries in our application. This also gets us closer to the way Ember CLI prefers our tests to be laid out.
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
import { test, module } from "qunit";
|
|
import { formattedReminderTime } from "discourse/lib/bookmark";
|
|
import { fakeTime } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
module("lib:bookmark", {
|
|
beforeEach() {
|
|
fakeTime("2020-04-11 08:00:00", "Australia/Brisbane");
|
|
},
|
|
|
|
afterEach() {
|
|
sandbox.restore();
|
|
},
|
|
});
|
|
|
|
test("formattedReminderTime works when the reminder time is tomorrow", (assert) => {
|
|
let reminderAt = "2020-04-12 09:45:00";
|
|
let reminderAtDate = moment
|
|
.tz(reminderAt, "Australia/Brisbane")
|
|
.format("H:mm a");
|
|
assert.equal(
|
|
formattedReminderTime(reminderAt, "Australia/Brisbane"),
|
|
"tomorrow at " + reminderAtDate
|
|
);
|
|
});
|
|
|
|
test("formattedReminderTime works when the reminder time is today", (assert) => {
|
|
let reminderAt = "2020-04-11 09:45:00";
|
|
let reminderAtDate = moment
|
|
.tz(reminderAt, "Australia/Brisbane")
|
|
.format("H:mm a");
|
|
assert.equal(
|
|
formattedReminderTime(reminderAt, "Australia/Brisbane"),
|
|
"today at " + reminderAtDate
|
|
);
|
|
});
|
|
|
|
test("formattedReminderTime works when the reminder time is in the future", (assert) => {
|
|
let reminderAt = "2020-04-15 09:45:00";
|
|
let reminderAtDate = moment
|
|
.tz(reminderAt, "Australia/Brisbane")
|
|
.format("H:mm a");
|
|
assert.equal(
|
|
formattedReminderTime(reminderAt, "Australia/Brisbane"),
|
|
"at Apr 15, 2020 " + reminderAtDate
|
|
);
|
|
});
|