10 lines
215 B
CoffeeScript
10 lines
215 B
CoffeeScript
import { date } from 'dummy/helpers/date'
|
|
import { module, test } from 'qunit'
|
|
|
|
module 'Unit | Helper | date'
|
|
|
|
# Replace this with your real tests.
|
|
test 'it works', (assert) ->
|
|
result = date 42
|
|
assert.ok result
|