123456789101112 |
- import Ember from 'ember';
- import ResetScrollMixin from '../../../mixins/reset-scroll';
- import { module, test } from 'qunit';
- module('ResetScrollMixin');
- // Replace this with your real tests.
- test('it works', function(assert) {
- var ResetScrollObject = Ember.Object.extend(ResetScrollMixin);
- var subject = ResetScrollObject.create();
- assert.ok(subject);
- });
|