Skip to content

Commit

Permalink
format and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpaterson committed Nov 26, 2024
1 parent b3d10d8 commit 01b550f
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/config/setup-container.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { makeAccountRequest } from "../lib/account.mjs";
import OAuthClient from "../lib/auth/oauth-client.mjs";
import { getSimpleClient } from "../lib/command-helpers.mjs";
import { makeFaunaRequest } from "../lib/db.mjs";
import { getV10Client,runV10Query } from "../lib/fauna.mjs";
import { getV10Client, runV10Query } from "../lib/fauna.mjs";
import { FaunaAccountClient } from "../lib/fauna-account-client.mjs";
import fetchWrapper from "../lib/fetch-wrapper.mjs";
import { AccountKey, SecretKey } from "../lib/file-util.mjs";
Expand Down
2 changes: 1 addition & 1 deletion src/config/setup-test-container.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function setupTestContainer() {
const container = setupCommonContainer();

const thingsToManuallyMock = automock(container);
const customfs = stub({...fs});
const customfs = stub({ ...fs });
// this is a mock used by the default profile behavior
customfs.readdirSync.withArgs(process.cwd()).returns([]);

Expand Down
1 change: 0 additions & 1 deletion test/authNZ.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//@ts-check
import path from "node:path";

import * as awilix from "awilix";
import { expect } from "chai";
Expand Down
2 changes: 0 additions & 2 deletions test/login.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
//@ts-check

import path from "node:path";

import * as awilix from "awilix";
import { expect } from "chai";
import { spy, stub } from "sinon";
Expand Down

0 comments on commit 01b550f

Please sign in to comment.