Skip to content

Commit 1ef4165

Browse files
committed
- Removed ignore
1 parent 9408308 commit 1ef4165

17 files changed

+2
-227
lines changed

src/index.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ describe('index', () => {
2424
it('downloads and parses v2 without issues', async () => {
2525
await OpenAPI.generate({
2626
input: 'https://raw.githubusercontent.com/ferdikoomen/openapi-typescript-codegen/master/test/mock/v2/spec.json',
27-
output: './test/result/v22/',
27+
output: './test/result/v2-downloaded/',
2828
write: false,
2929
});
3030
});
3131

3232
it('downloads and parses v3 without issues', async () => {
3333
await OpenAPI.generate({
3434
input: 'https://raw.githubusercontent.com/ferdikoomen/openapi-typescript-codegen/master/test/mock/v3/spec.json',
35-
output: './test/result/v33/',
35+
output: './test/result/v3-downloaded/',
3636
write: false,
3737
});
3838
});

src/templates/core/ApiError.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* istanbul ignore file */
22
/* tslint:disable */
33
/* eslint-disable */
4-
/* prettier-ignore */
54

65
import { isSuccess } from './isSuccess';
76
import { Result } from './Result';

src/templates/core/OpenAPI.hbs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* istanbul ignore file */
22
/* tslint:disable */
33
/* eslint-disable */
4-
/* prettier-ignore */
54

65
interface Config {
76
BASE: string;

src/templates/core/RequestOptions.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* istanbul ignore file */
22
/* tslint:disable */
33
/* eslint-disable */
4-
/* prettier-ignore */
54

65
export interface RequestOptions {
76
method: 'get' | 'put' | 'post' | 'delete' | 'options' | 'head' | 'patch';

src/templates/core/Result.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* istanbul ignore file */
22
/* tslint:disable */
33
/* eslint-disable */
4-
/* prettier-ignore */
54

65
export interface Result {
76
url: string;

src/templates/core/getFormData.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* istanbul ignore file */
22
/* tslint:disable */
33
/* eslint-disable */
4-
/* prettier-ignore */
54

65
/**
76
* Get FormData from object. This method is needed to upload

src/templates/core/getQueryString.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* istanbul ignore file */
22
/* tslint:disable */
33
/* eslint-disable */
4-
/* prettier-ignore */
54

65
/**
76
* Get query string from query parameters object. This method also

src/templates/core/isSuccess.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* istanbul ignore file */
22
/* tslint:disable */
33
/* eslint-disable */
4-
/* prettier-ignore */
54

65
/**
76
* Check success response code.

src/templates/core/request.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* istanbul ignore file */
22
/* tslint:disable */
33
/* eslint-disable */
4-
/* prettier-ignore */
54

65
import { getFormData } from './getFormData';
76
import { getQueryString } from './getQueryString';

src/templates/core/requestUsingFetch.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* istanbul ignore file */
22
/* tslint:disable */
33
/* eslint-disable */
4-
/* prettier-ignore */
54

65
import { Result } from './Result';
76

0 commit comments

Comments
 (0)