From 05b3469c34678fccd5aa02c856c82302a8edcf64 Mon Sep 17 00:00:00 2001 From: James Prior Date: Tue, 5 Mar 2024 14:17:25 +0000 Subject: [PATCH] Fix lint issue --- tests/path/compliance.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/path/compliance.test.ts b/tests/path/compliance.test.ts index 20a3dd4..07cb304 100644 --- a/tests/path/compliance.test.ts +++ b/tests/path/compliance.test.ts @@ -23,7 +23,9 @@ const env = new JSONPathEnvironment({ nondeterministic: process.env.JSONP3_CTS_NONDETERMINISTIC === "true", }); -const testSuiteName = env.nondeterministic ? "compliance test suite (nondeterministic)" : "compliance test suite"; +const testSuiteName = env.nondeterministic + ? "compliance test suite (nondeterministic)" + : "compliance test suite"; describe(testSuiteName, () => { test.each(cts.tests)(