Skip to content

Commit

Permalink
fix: session UTs
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent committed Sep 16, 2024
1 parent a10e23f commit 07401a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/support/ScreenshotSessionHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ class ScreenshotSessionHelper extends Helper {

async getSHA256Digests(files = []) {
if (!Array.isArray(files)) {
throw new TypeError('Expected an array of file paths');
throw new TypeError('Expected an array of file paths')
}

const digests = [];
const digests = []

for (const file of files) {
try {
Expand Down

0 comments on commit 07401a8

Please sign in to comment.