From 7b829811e913a81ae42d07ea27db27b829c90105 Mon Sep 17 00:00:00 2001 From: Lubos Date: Thu, 24 Jul 2025 14:27:19 +0800 Subject: [PATCH] ci: fix pipelines --- .vscode/extensions.json | 3 ++- packages/openapi-ts-tests/main/test/index.test.ts | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index fec2392cef..1ac0b13473 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,6 +2,7 @@ "recommendations": [ "EditorConfig.EditorConfig", "dbaeumer.vscode-eslint", - "esbenp.prettier-vscode" + "esbenp.prettier-vscode", + "hilleer.yaml-plus-json" ] } diff --git a/packages/openapi-ts-tests/main/test/index.test.ts b/packages/openapi-ts-tests/main/test/index.test.ts index eb86db2129..0a787595ea 100644 --- a/packages/openapi-ts-tests/main/test/index.test.ts +++ b/packages/openapi-ts-tests/main/test/index.test.ts @@ -560,7 +560,7 @@ describe('index', () => { createClient({ dryRun: true, input: - 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts-tests/test/spec/v2.json', + 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts-tests/specs/v2.json', output: './generated/v2-downloaded/', plugins: ['@hey-api/client-fetch'], }), @@ -572,7 +572,7 @@ describe('index', () => { createClient({ dryRun: true, input: - 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts-tests/test/spec/v3.json', + 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts-tests/specs/v3.json', output: './generated/v3-downloaded/', plugins: ['@hey-api/client-fetch'], }),