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[] = [];