-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(multi-ticket): Fix a finding getting multiple tickets when it exi…
…sts in multiple standards * fix bug in setting default value for process.env.SECURITY_HUB_NEW_ISSUE_DELAY * removed createdAt finding attribute as it makes each finding unique * Add "MEDIUM" severity to run-sync.ts * ncu -u * update github actions versions * removed sinon, refactored all tests to use vitest * Update index.test.ts * move test's constants into their own file * move test's mockResponses into their own file * Update index.test.ts * Starting to move mock clients into their own file * update test constants * undo run-sync.ts change, unnecessary * Update mockClients to put the mocks in place upon import, no need to execute a function after import. * move axios mocking to mockClients.ts * minor axios cleanup * move mocking of jira-client to mockClients.ts * Update index.test.ts * Update index.test.ts * Update index.test.ts * temporarily adding logging statements for troubleshooting tests * bump * fix check for undefined process.env.SECURITY_HUB_NEW_ISSUE_DELAY * dependency updates * Create .nvmrc * cleaning up after troubleshooting * Update security-hub-lib.ts * adding more tests * more unit tests * another unit test * putting each test in its own function * refactoring unit tests * cleanup * additional jira tests * Update jira.test.ts * Create securityHub.test.ts * Update securityHubJiraSync.test.ts * Update mockClients.ts * Update jira.test.ts * Update securityHub.test.ts * dependency updates * Update jira-lib.ts
- Loading branch information
Showing
15 changed files
with
3,893 additions
and
10,470 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
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 @@ | ||
v18.14.0 |
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 @@ | ||
export const Constants = { | ||
TEST_AWS_ACCOUNT_ID: "012345678901", | ||
TEST_PROJECT: "TEST_PROJECT", | ||
TEST_STATUS: "TEST_STATUS", | ||
TEST_AWS_REGION: "us-east-1", | ||
}; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.