Skip to content

Commit

Permalink
Merge pull request #487 from open-rpc/fix/html-reporter-destination
Browse files Browse the repository at this point in the history
fix: html reporter should use options.destination if passed in
  • Loading branch information
shanejonas authored Aug 23, 2024
2 parents 6e16852 + c594a86 commit 01a6a75
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/reporters/html-reporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class HtmlReporter implements Reporter {
if (options?.autoOpen !== undefined) {
this.autoOpen = options.autoOpen;
}
if (options?.destination !== undefined) {
this.destination = options.destination;
}
}

onBegin(options: IOptions, calls: Call[]) {}
Expand Down

0 comments on commit 01a6a75

Please sign in to comment.