Skip to content

Commit

Permalink
disable coverage reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Aug 16, 2023
1 parent 203ddd2 commit 80c4336
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/utils/SessionLock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import { v4 as uuidv4 } from "uuid";
* @returns true if we successfully claimed the lock; false if another instance stole it from under our nose
* (in which `onNewInstance` will have been called)
*/
/* istanbul ignore next (coverage instrumentation is disabled for this file) */
export async function getSessionLock(onNewInstance: () => Promise<void>): Promise<boolean> {
/*
* The algorithm here is twofold.
Expand Down

0 comments on commit 80c4336

Please sign in to comment.