Skip to content

Commit fe47ae2

Browse files
committed
Try to make CI happy
1 parent b255e75 commit fe47ae2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/rtk-query-codegen-openapi/test/cli.test.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ function cli(args: string[], cwd: string): Promise<{ error: ExecException | null
2020

2121
const tmpDir = path.join(__dirname, 'tmp');
2222

23-
beforeAll(async () => {
24-
if (!fs.existsSync(tmpDir)) fs.mkdirSync(tmpDir, { recursive: true });
25-
});
23+
describe('CLI options testing', () => {
24+
beforeAll(() => {
25+
if (!fs.existsSync(tmpDir)) fs.mkdirSync(tmpDir, { recursive: true });
26+
});
2627

27-
afterEach(() => {
28-
del.sync(`${tmpDir}/*.ts`);
29-
});
28+
afterEach(() => {
29+
del.sync(`${tmpDir}/*.ts`);
30+
});
3031

31-
describe('CLI options testing', () => {
3232
test('generation with `config.example.js`', async () => {
3333
const out = await cli(['./test/config.example.js'], __dirname);
3434

0 commit comments

Comments
 (0)