mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 21:58:31 +00:00
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
import { strict as assert } from 'assert';
|
|
import { edo } from '../xen.mjs';
|
|
|
|
describe('xen', () => {
|
|
it('edo', () => {
|
|
assert.deepStrictEqual(edo('3edo'), [1, Math.pow(2, 1 / 3), Math.pow(2, 2 / 3)]);
|
|
});
|
|
});
|