mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-04 23:03:07 +00:00
8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
import test from 'ava';
|
|
|
|
import { asyncABC } from './async';
|
|
|
|
test('getABC', async (t) => {
|
|
t.deepEqual(await asyncABC(), ['a', 'b', 'c']);
|
|
});
|