mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
11 lines
310 B
JavaScript
11 lines
310 B
JavaScript
|
const should = require('should');
|
||
|
|
||
|
const ThemeI18n = require('../../../../core/frontend/services/theme-engine/i18n').ThemeI18n;
|
||
|
|
||
|
describe('ThemeI18n Class Behaviour', function () {
|
||
|
it('defaults to en', function () {
|
||
|
const i18n = new ThemeI18n();
|
||
|
i18n.locale().should.eql('en');
|
||
|
});
|
||
|
});
|