mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
19 lines
485 B
JavaScript
19 lines
485 B
JavaScript
|
/* jshint expr:true */
|
||
|
import {expect} from 'chai';
|
||
|
import {
|
||
|
describe,
|
||
|
it
|
||
|
} from 'mocha';
|
||
|
import Ember from 'ember';
|
||
|
import InfiniteScrollMixin from 'ghost/mixins/infinite-scroll';
|
||
|
|
||
|
describe('InfiniteScrollMixin', function () {
|
||
|
// Replace this with your real tests.
|
||
|
it('works', function () {
|
||
|
var InfiniteScrollObject = Ember.Object.extend(InfiniteScrollMixin),
|
||
|
subject = InfiniteScrollObject.create();
|
||
|
|
||
|
expect(subject).to.be.ok;
|
||
|
});
|
||
|
});
|