mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
18 lines
374 B
JavaScript
18 lines
374 B
JavaScript
|
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;
|
||
|
});
|
||
|
});
|