Skip to content

Commit

Permalink
chore: linter files
Browse files Browse the repository at this point in the history
  • Loading branch information
UlisesGascon committed Dec 12, 2024
1 parent 065966b commit 6376ad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/cli/workflows.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const inquirer = require('inquirer').default
const knexInit = require('knex')
const { simplifyObject } = require('@ulisesgascon/simplify-object')
const { getConfig } = require('../../src/config')
const { runWorkflowCommand, listWorkflowCommand, } = require('../../src/cli')
const { runWorkflowCommand, listWorkflowCommand } = require('../../src/cli')
const { resetDatabase, getAllProjects, getAllGithubOrgs, addGithubOrg, addProject, getAllGithubRepos, addGithubRepo } = require('../../__utils__')
const { github } = require('../../src/providers')
const { sampleGithubOrg, sampleGithubListOrgRepos, sampleGithubRepository } = require('../../__fixtures__')
Expand Down
2 changes: 1 addition & 1 deletion __tests__/providers.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('OSSF Provider', () => {
})
describe('mappers', () => {
it('Should map scorecard data correctly', () => {
const mappedData = ossf.mappers.result({...sampleOSSFScorecardResult, analysis_execution_time: 19876})
const mappedData = ossf.mappers.result({ ...sampleOSSFScorecardResult, analysis_execution_time: 19876 })
expect(mappedData).toMatchSnapshot()
})
})
Expand Down

0 comments on commit 6376ad0

Please sign in to comment.