reset-scroll-test.js 386 B

1234567891011121314
  1. import Ember from 'ember';
  2. import ResetScrollMixin from '../../../mixins/reset-scroll';
  3. import { module, test } from 'qunit';
  4. module('ResetScrollMixin');
  5. // Replace this with your real tests.
  6. test('it works', function(assert) {
  7. assert.expect(1);
  8. var ResetScrollObject = Ember.Object.extend(ResetScrollMixin);
  9. var subject = ResetScrollObject.create();
  10. assert.ok(subject);
  11. });