mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-03-13 21:23:38 +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);
|
|
});
|