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