10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
|
import assert from 'assert'
|
||
|
import math from '../../src/pocomath.mjs'
|
||
|
|
||
|
describe('tuple', () => {
|
||
|
it('can be created and provide its length', () => {
|
||
|
assert.strictEqual(math.length(math.tuple(3,5.2,2n)), 3)
|
||
|
})
|
||
|
|
||
|
})
|