Ghost/ghost/core/test/unit/server/overrides.test.js
Daniel Lockyer 3d989eba23 Converted Ghost repo into a monorepo
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
2022-07-20 16:41:05 +02:00

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');
});
});