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'], }),