Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jg-rp committed Mar 5, 2024
1 parent ec94247 commit 05b3469
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/path/compliance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Case>(cts.tests)(
Expand Down

0 comments on commit 05b3469

Please sign in to comment.