diff --git a/test/commands/query/v10.mjs b/test/commands/query/v10.mjs index 2ef2bd3e..851cb3b6 100644 --- a/test/commands/query/v10.mjs +++ b/test/commands/query/v10.mjs @@ -1,7 +1,12 @@ //@ts-check import { expect } from "chai"; -import { AbortError, ConstraintFailureError, NetworkError, ServiceError } from "fauna"; +import { + AbortError, + ConstraintFailureError, + NetworkError, + ServiceError, +} from "fauna"; import sinon from "sinon"; import { run } from "../../../src/cli.mjs"; diff --git a/test/commands/query/v4.mjs b/test/commands/query/v4.mjs index 19bc2593..beb887b0 100644 --- a/test/commands/query/v4.mjs +++ b/test/commands/query/v4.mjs @@ -118,7 +118,9 @@ describe("query v4", function () { expect(logger.stderr).to.have.been.calledWith( sinon.match(" x-byte-read-ops: 0"), ); - expect(logger.stdout).to.have.been.calledWith(sinon.match("test response")); + expect(logger.stdout).to.have.been.calledWith( + sinon.match("test response"), + ); }); it("can display query info with an error", async function () {