From f07856c0c2403748006135aa3c3804ca83f9cd4b Mon Sep 17 00:00:00 2001 From: Varun0157 Date: Tue, 28 May 2024 18:47:01 +0530 Subject: [PATCH] refactor: reformatted w prettier --- src/runTests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runTests.ts b/src/runTests.ts index 371ea2d..2f5ca1f 100644 --- a/src/runTests.ts +++ b/src/runTests.ts @@ -8,7 +8,7 @@ import { mergePrefixBasedTests } from "./mergeData"; export function runAllTests( tests: Tests, responseData: ResponseData, - stopOnFailure: boolean + stopOnFailure: boolean, ): TestResult[] { const results: TestResult[] = []; if (!tests) return results; @@ -74,7 +74,7 @@ function getValueForJSONTests(responseContent: object, key: string): any { function runObjectTests( opVals: { [key: string]: any }, receivedObject: any, - spec: string + spec: string, ): TestResult[] { let results: TestResult[] = [];