10 lines
246 B
CoffeeScript
10 lines
246 B
CoffeeScript
import mergeObjects from '../../../utils/merge-objects'
|
|
import { module, test } from 'qunit'
|
|
|
|
module 'Unit | Utility | merge objects'
|
|
|
|
# Replace this with your real tests.
|
|
test 'it works', (assert) ->
|
|
result = mergeObjects()
|
|
assert.ok result
|