12 lines
372 B
JavaScript
12 lines
372 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('transform:string-null-to-empty', 'Unit | Transform | string null to empty', {
|
|
// 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);
|
|
});
|