Skip to content
This repository was archived by the owner on Jun 22, 2021. It is now read-only.

Commit 85d8816

Browse files
committed
feat(tests): Starts adding tests.
1 parent 872baed commit 85d8816

File tree

10 files changed

+423
-6
lines changed

10 files changed

+423
-6
lines changed

.circleci/config.yml

-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ jobs:
3030
- run:
3131
name: Compiling Code
3232
command: npm run build
33-
- run:
34-
name: Running tests
35-
command: npm run cover
3633
- run:
3734
name: Linting Code
3835
command: npm run lint

@types/assert-rejects/index.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module 'assert-rejects' {
2+
const x: <Result>(promise: Promise<Result>, constructor: Function) => Promise<void>;
3+
export = x;
4+
}

0 commit comments

Comments
 (0)