mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 05:39:41 +08:00
DEV: Locale dates test needs to set default moment timzone.
The tests were breaking on a machine configured to use SGT timezone.
This commit is contained in:
parent
68bef91dd6
commit
9cf9dee4cc
@ -37,6 +37,7 @@ function freezeDateAndZone(date, zone, cb) {
|
|||||||
sandbox.restore();
|
sandbox.restore();
|
||||||
sandbox.stub(moment.tz, "guess");
|
sandbox.stub(moment.tz, "guess");
|
||||||
moment.tz.guess.returns(zone);
|
moment.tz.guess.returns(zone);
|
||||||
|
moment.tz.setDefault(zone);
|
||||||
|
|
||||||
const now = moment(date).valueOf();
|
const now = moment(date).valueOf();
|
||||||
sandbox.useFakeTimers(now);
|
sandbox.useFakeTimers(now);
|
||||||
@ -126,7 +127,7 @@ test("yesterday", assert => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
QUnit.skip("yesterday - no time", assert => {
|
test("yesterday - no time", assert => {
|
||||||
const html = generateHTML({ date: rewind(1) });
|
const html = generateHTML({ date: rewind(1) });
|
||||||
const transformed = $(html).applyLocalDates();
|
const transformed = $(html).applyLocalDates();
|
||||||
|
|
||||||
@ -200,7 +201,7 @@ test("recurring", assert => {
|
|||||||
"it displays the next occurrence"
|
"it displays the next occurrence"
|
||||||
);
|
);
|
||||||
|
|
||||||
freezeDateAndZone(advance(1), () => {
|
freezeDateAndZone(advance(1), null, () => {
|
||||||
transformed = $(html).applyLocalDates();
|
transformed = $(html).applyLocalDates();
|
||||||
|
|
||||||
assert.equal(
|
assert.equal(
|
||||||
@ -363,6 +364,7 @@ test("test utils", assert => {
|
|||||||
moment(DEFAULT_DATE).format("LLLL"),
|
moment(DEFAULT_DATE).format("LLLL"),
|
||||||
"it has defaults"
|
"it has defaults"
|
||||||
);
|
);
|
||||||
|
|
||||||
assert.equal(moment.tz.guess(), DEFAULT_ZONE, "it has defaults");
|
assert.equal(moment.tz.guess(), DEFAULT_ZONE, "it has defaults");
|
||||||
|
|
||||||
freezeDateAndZone(advance(1), DEFAULT_ZONE, () => {
|
freezeDateAndZone(advance(1), DEFAULT_ZONE, () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user