Skip to content

Commit

Permalink
fix(EmitClientErrorAction): Call parent's run() method
Browse files Browse the repository at this point in the history
  • Loading branch information
gnarea committed Aug 9, 2021
1 parent 2bd2792 commit 06f253a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/MockServerAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export class EmitClientErrorAction extends MockServerAction {

public async run(mockServer: MockServer): Promise<void> {
await mockServer.abort(this.error);
await super.run(mockServer);
}
}

Expand Down

0 comments on commit 06f253a

Please sign in to comment.