Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions __tests__/cli/__snapshots__/workflows.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ exports[`list - Non-Interactive Mode Should provide a list of available workflow
"name": "upsert-ossf-scorecard",
"workflow": [Function],
},
{
"description": "Starts a http server that shows all the files and folders in the output directory.",
"name": "show-reports",
"workflow": [Function],
},
{
"description": "Generate the reports for the stored data.",
"name": "generate-reports",
Expand Down
4 changes: 0 additions & 4 deletions __tests__/cli/workflows.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,6 @@ describe('run bulk-import', () => {
test.todo('Should throw an error when the JSON file is not valid due schema validation')
})

describe('run show-reports', () => {
test.todo('Should start a http server that shows all the files and folders in the output directory')
})

describe('run generate-reports', () => {
test.todo('Should generate the reports for the stored data')
})
4 changes: 0 additions & 4 deletions src/cli/workflows.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ const commandList = [{
name: 'upsert-ossf-scorecard',
description: 'Upsert the OSSF Scorecard scoring by running and checking every repository in the database.',
workflow: upsertOSSFScorecardAnalysis
}, {
name: 'show-reports',
description: 'Starts a http server that shows all the files and folders in the output directory.',
workflow: require('../httpServer')
}, {
name: 'generate-reports',
description: 'Generate the reports for the stored data.',
Expand Down