Skip to content

Commit

Permalink
refactor: align code with recent updates
Browse files Browse the repository at this point in the history
  • Loading branch information
admin committed Nov 25, 2024
1 parent 3f1795b commit b01b18a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/commands/openapi/refs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import prompts from 'prompts';
import { describe, beforeAll, beforeEach, afterEach, it, expect, vi } from 'vitest';

import Command from '../../../src/commands/openapi/refs.js';
import { runCommand } from '../../helpers/setup-oclif-config.js';
import { runCommandAndReturnResult } from '../../helpers/oclif.js';

describe('openapi:solving-circularity-recursiveness', () => {
let run: (args?: string[]) => Promise<unknown>;

beforeAll(() => {
run = runCommand(Command);
run = runCommandAndReturnResult(Command);
});

beforeEach(() => {
Expand Down

0 comments on commit b01b18a

Please sign in to comment.