Skip to content

Commit

Permalink
reformat: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Varun0157 committed Jun 4, 2024
1 parent e84f3c2 commit 44dc574
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function runAllTests(
responseData: ResponseData,
stopOnFailure: boolean,
rootSpec: string | null = null,
skip?: boolean
skip?: boolean,
): SpecResult {
const res: SpecResult = { spec: rootSpec, results: [], subResults: [] };
if (!tests) return res;
Expand Down Expand Up @@ -84,7 +84,7 @@ function runObjectTests(
opVals: { [key: string]: any },
receivedObject: any,
spec: string,
skip?: boolean
skip?: boolean,
): SpecResult {
let objRes: SpecResult = { spec, results: [], subResults: [] };
if (skip || opVals["$skip"]) objRes.skipped = true;
Expand Down

0 comments on commit 44dc574

Please sign in to comment.