-
-
Notifications
You must be signed in to change notification settings - Fork 533
/
Copy pathindex.spec.ts
46 lines (41 loc) · 1.33 KB
/
index.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { readFileSync } from 'fs';
import { sync } from 'glob';
import { generate, HttpClient } from '../';
describe('v2', () => {
it('should generate', async () => {
await generate({
input: './test/spec/v2.json',
output: './test/generated/v2/',
httpClient: HttpClient.FETCH,
useOptions: false,
useUnionTypes: false,
exportCore: true,
exportSchemas: true,
exportModels: true,
exportServices: true,
});
sync('./test/generated/v2/**/*.ts').forEach(file => {
const content = readFileSync(file, 'utf8').toString();
expect(content).toMatchSnapshot(file);
});
});
});
describe('v3', () => {
it('should generate', async () => {
await generate({
input: './test/spec/v3.json',
output: './test/generated/v3/',
httpClient: HttpClient.FETCH,
useOptions: false,
useUnionTypes: false,
exportCore: true,
exportSchemas: true,
exportModels: true,
exportServices: true,
});
sync('./test/generated/v3/**/*.ts').forEach(file => {
const content = readFileSync(file, 'utf8').toString();
expect(content).toMatchSnapshot(file);
});
});
});