Update all dependencies, migrate from tslint (deprecated) to typescript-eslint, and add support for cspell. BREAKING CHANGE: migrated from tslint (deprecated) to eslint.
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']);
|
|
});
|