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