Ghost/ghost/admin/tests/unit/services/limit-test.js

18 lines
374 B
JavaScript
Raw Normal View History

import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupTest} from 'ember-mocha';
describe('Unit | Service | limit', function () {
setupTest();
let limitService;
beforeEach(function () {
limitService = this.owner.lookup('service:limit');
});
it('exists', function () {
expect(limitService).to.be.ok;
});
});