fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #218 from hey-api/fix/url

fix(ci): url to spec

authored by

Jordan Shatford and committed by
GitHub
08db39c2 a833a8e2

+2 -2
+2 -2
packages/openapi-ts/src/index.spec.ts
··· 21 21 22 22 it('downloads and parses v2 without issues', async () => { 23 23 await createClient({ 24 - input: 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/test/spec/v2.json', 24 + input: 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts/test/spec/v2.json', 25 25 output: './generated/v2-downloaded/', 26 26 write: false, 27 27 }); ··· 29 29 30 30 it('downloads and parses v3 without issues', async () => { 31 31 await createClient({ 32 - input: 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/test/spec/v3.json', 32 + input: 'https://raw.githubusercontent.com/hey-api/openapi-ts/main/packages/openapi-ts/test/spec/v3.json', 33 33 output: './generated/v3-downloaded/', 34 34 write: false, 35 35 });