1
0
mirror of synced 2025-11-08 04:48:04 +00:00
Files
typescript-starter/src/lib/async.spec.ts
Jason Dreyzehner 390041b510 feat: TS v4, tslint -> eslint, add cspell support (#240)
Update all dependencies, migrate from tslint (deprecated) to typescript-eslint, and add support for
cspell.

BREAKING CHANGE: migrated from tslint (deprecated) to eslint.
2020-09-01 19:13:25 -04:00

8 lines
146 B
TypeScript

import test from 'ava';
import { asyncABC } from './async';
test('getABC', async (t) => {
t.deepEqual(await asyncABC(), ['a', 'b', 'c']);
});