legal-page-test.js 260 B

1234567891011121314
  1. import {
  2. moduleForModel,
  3. test
  4. } from 'ember-qunit';
  5. moduleForModel('legal-page', 'LegalPage', {
  6. // Specify the other units that are required for this test.
  7. needs: []
  8. });
  9. test('it exists', function() {
  10. var model = this.subject();
  11. ok(!!model);
  12. });