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