Skip to content

Commit

Permalink
Ignore lines for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
ncalteen committed Feb 6, 2025
1 parent 351995a commit 6dd899e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/stubs/github/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,11 @@ export class Context {
this.runAttempt = parseInt(process.env.GITHUB_RUN_ATTEMPT as string, 10)
this.runNumber = parseInt(process.env.GITHUB_RUN_NUMBER as string, 10)
this.runId = parseInt(process.env.GITHUB_RUN_ID as string, 10)
/* istanbul ignore next */
this.apiUrl = process.env.GITHUB_API_URL ?? 'https://api.github.com'
/* istanbul ignore next */
this.serverUrl = process.env.GITHUB_SERVER_URL ?? 'https://github.com'
/* istanbul ignore next */
this.graphqlUrl =
process.env.GITHUB_GRAPHQL_URL ?? 'https://api.github.com/graphql'
}
Expand Down

0 comments on commit 6dd899e

Please sign in to comment.