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