123456789101112131415 |
- import {
- moduleForModel,
- test
- } from 'ember-qunit';
- moduleForModel('legal-page', 'LegalPage', {
- // Specify the other units that are required for this test.
- needs: []
- });
- test('it exists', function() {
- var model = this.subject();
- // var store = this.store();
- ok(!!model);
- });
|