Skip to content

Commit

Permalink
chore: run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterSchafer committed Dec 9, 2024
1 parent 1882f60 commit d46c6e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/jest/acceptance/error-catalog.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ describe.each(integrationWorkflows)(
describe('internal server errors', () => {
describe(`${type} workflow`, () => {
it(`snyk ${cmd}`, async () => {
server.setStatusCode(500)
server.setStatusCode(500);
const { code, stdout } = await runSnykCLI(`${cmd}`, { env });
expect(code).toBe(2);
expect(stdout).toContain(
Expand All @@ -101,7 +101,7 @@ describe.each(integrationWorkflows)(
describe('bad request errors', () => {
describe(`${type} workflow`, () => {
it(`snyk ${cmd}`, async () => {
server.setStatusCode(400)
server.setStatusCode(400);
const { code, stdout } = await runSnykCLI(`${cmd}`, { env });
expect(code).toBe(2);
expect(stdout).toContain(
Expand Down

0 comments on commit d46c6e3

Please sign in to comment.