12 lines
340 B
JavaScript
12 lines
340 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('transform:file', 'Unit | Transform | file', {
|
|
// Specify the other units that are required for this test.
|
|
// needs: ['serializer:foo']
|
|
});
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function(assert) {
|
|
let transform = this.subject();
|
|
assert.ok(transform);
|
|
});
|