-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add json output flag arg for long list commands * hdill output is coming through * cli singleton logger * naive singleton logger rollout * prepare for logger level switching * some newline consistency * stop wierd handling of array results * rely on result handling in cli * make lint non-fixing by default * slowly adopt singleton logger * slowly adopt singleton logger 2 * slowly adopt singleton logger 3 * slowly adopt singleton logger 4 * slowly adopt singleton logger 5 * slowly adopt singleton logger 6 * remove redundant vars * extend json to regular list commands * add docs for json flag arg * add json for uaa * consistency fix * fix tests 1 * fix tests 2 * shorter wording * consistency fix * slightly different wording * re-add force flag to bypass validation * add test for force flag bypass * wippedy wip wip rewrite nock stuff to account for makeOneTime * wippedy wip wip rewrite nock stuff to account for makeOneTime 2 * bug detected * more progress towards separated nock playback record * more progress towards separated nock playback record 2 * more progress towards separated nock playback record 3 * more progress towards separated nock playback record 4 * more progress towards separated nock playback record 5 * more progress towards separated nock playback record 6 * more progress towards separated nock playback record 7 * more progress towards separated nock playback record 8 * more progress towards separated nock playback record 9 * more progress towards separated nock playback record 10 * prettier config * more unnecessary scripts * polish pass over jest config * jest config consistency * move jest clear all mocks to the general configuration * add cloc script * wrong code order
- Loading branch information
1 parent
32c1008
commit c354c2d
Showing
70 changed files
with
130,596 additions
and
72,680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,4 @@ jobs: | |
node-version: 18 | ||
cache: npm | ||
- run: npm ci --package-lock | ||
- run: npm run lint:ci | ||
- run: npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,4 @@ jobs: | |
node-version: 18 | ||
cache: npm | ||
- run: npm ci --package-lock | ||
- run: npm run lint:ci | ||
- run: npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,6 @@ temp/ | |
|
||
# npm package | ||
*.tgz | ||
|
||
# jest | ||
coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
"use strict"; | ||
|
||
// For a detailed explanation regarding each configuration property, visit: | ||
// https://jestjs.io/docs/en/configuration.html | ||
|
||
module.exports = { | ||
// NOTE: Inline Snapshots are not supported when using Prettier 3.0.0 or above | ||
// https://jestjs.io/docs/configuration/#prettierpath-string | ||
prettierPath: null, | ||
|
||
// Indicates whether the coverage information should be collected while executing the test | ||
collectCoverage: false, | ||
|
||
// The test environment that will be used for testing | ||
testEnvironment: "node", | ||
|
||
// The glob patterns Jest uses to detect test files | ||
testMatch: ["<rootDir>/test-nock-record/**/?(*.)+(spec|test).[tj]s?(x)"], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.