reset-scroll-test.js 365 B

123456789101112
  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. var ResetScrollObject = Ember.Object.extend(ResetScrollMixin);
  8. var subject = ResetScrollObject.create();
  9. assert.ok(subject);
  10. });