mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
12 lines
171 B
TypeScript
12 lines
171 B
TypeScript
import test from 'ava';
|
|
|
|
import { double, power } from './number';
|
|
|
|
test('double', (t) => {
|
|
t.is(double(2), 4);
|
|
});
|
|
|
|
test('power', (t) => {
|
|
t.is(power(2, 4), 16);
|
|
});
|