Skip to content

Commit

Permalink
Run everything
Browse files Browse the repository at this point in the history
  • Loading branch information
macmv committed Sep 16, 2024
1 parent 4d69ecf commit fa33987
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"postpack": "rm -f oclif.manifest.json",
"prepack": "yarn build && oclif manifest",
"local-test": "export $(cat .env | xargs); mocha \"test/**/*.test.{js,ts}\"",
"test": "c8 -r html mocha --forbid-only \"test/**/*.test.{js,ts}\"",
"test": "c8 -r html mocha \"test/**/*.test.{js,ts}\"",
"lint": "eslint .",
"fixlint": "eslint . --fix",
"version": "oclif-dev readme && git add README.md",
Expand Down
2 changes: 1 addition & 1 deletion test/commands/eval.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ afterEach(() => {

describe("eval", () => {
it("runs eval on root db", async () => {
const scope = nock(getEndpoint(), { allowUnmocked: true });
const scope = nock(getEndpoint(), { allowUnmocked: false });
mockQuery(scope);
const { stdout } = await runCommand(
withOpts([
Expand Down

0 comments on commit fa33987

Please sign in to comment.