Skip to content

Commit

Permalink
F
Browse files Browse the repository at this point in the history
  • Loading branch information
srajiang committed Aug 27, 2021
1 parent 814f744 commit 680944d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/receivers/ExpressReceiver.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ describe('ExpressReceiver', function () {
let caughtError: Error | undefined;
try {
await receiver.start(port);
} catch (error) {
} catch (error: any) {
caughtError = error;
}

Expand All @@ -188,7 +188,7 @@ describe('ExpressReceiver', function () {
await receiver.start(port);
try {
await receiver.start(port);
} catch (error) {
} catch (error: any) {
caughtError = error;
}

Expand Down Expand Up @@ -230,7 +230,7 @@ describe('ExpressReceiver', function () {
let caughtError: Error | undefined;
try {
await receiver.stop();
} catch (error) {
} catch (error: any) {
caughtError = error;
}

Expand Down

0 comments on commit 680944d

Please sign in to comment.