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:
Guo Xiang Tan 2018-11-27 13:50:25 +08:00
parent 68bef91dd6
commit 9cf9dee4cc

View File

@ -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, () => {