3d989eba23
refs https://github.com/TryGhost/Toolbox/issues/354 - this commit turns the Ghost repo into a monorepo so we can bring our internal packages back in, which makes life easier when working on Ghost
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
const should = require('should');
|
|
const luxon = require('luxon');
|
|
|
|
require('../../../core/server/overrides');
|
|
|
|
describe('Overrides', function () {
|
|
it('sets global timezone to UTC', function () {
|
|
should.equal(luxon.DateTime.local().zoneName, 'UTC');
|
|
});
|
|
});
|