Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza committed Oct 22, 2024
1 parent a21f2f9 commit 957b085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/support/jasmine.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const satisfiesParseServerVersion = version => {
const semverVersion = semver.coerce(envVersion);
console.log(`satisfiesParseServerVersion: envVersion: ${version}`);
console.log(`satisfiesParseServerVersion: version: ${envVersion}`);
return !envVersion || !semverVersion || semver.satisfies(semverVersion, version);
return !envVersion || !semverVersion || semver.satisfies(semverVersion, version);
}

global.it_only_parse_server_version = version => satisfiesParseServerVersion(version) ? it : xit;
Expand Down

0 comments on commit 957b085

Please sign in to comment.