mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Fixed wrong use of moment
no issue - whilst updating moment, a test that was doing timezone calculation was failing. We were only importing moment before, and not moment-timezone - this commit fixes that
This commit is contained in:
parent
13986a797c
commit
d44dae0c79
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ const should = require('should');
|
||||||
const sinon = require('sinon');
|
const sinon = require('sinon');
|
||||||
const testUtils = require('../../utils');
|
const testUtils = require('../../utils');
|
||||||
const Promise = require('bluebird');
|
const Promise = require('bluebird');
|
||||||
const moment = require('moment');
|
const moment = require('moment-timezone');
|
||||||
const ObjectId = require('bson-objectid');
|
const ObjectId = require('bson-objectid');
|
||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
const _ = require('lodash');
|
const _ = require('lodash');
|
||||||
|
|
Loading…
Add table
Reference in a new issue