mirror of
https://github.com/bvanroll/rpiRadio.git
synced 2025-08-30 20:42:44 +00:00
8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
import { range } from '../lib/util'
|
|
import test from 'ava'
|
|
|
|
test('should work', (t) => {
|
|
const list = range(1, 3)
|
|
t.deepEqual(list, [1, 2, 3])
|
|
})
|