mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 03:14:03 +03:00
19 lines
512 B
JavaScript
19 lines
512 B
JavaScript
/* jshint expr:true */
|
|
import {expect} from 'chai';
|
|
import {
|
|
describe,
|
|
it
|
|
} from 'mocha';
|
|
import EmberObject from 'ember-object';
|
|
import InfiniteScrollMixin from 'ghost-admin/mixins/infinite-scroll';
|
|
|
|
describe('Unit: Mixin: infinite-scroll', function () {
|
|
// Replace this with your real tests.
|
|
it('works', function () {
|
|
let InfiniteScrollObject = EmberObject.extend(InfiniteScrollMixin);
|
|
let subject = InfiniteScrollObject.create();
|
|
|
|
expect(subject).to.be.ok;
|
|
});
|
|
});
|