Skip to content

Commit 9116921

Browse files
committed
- Fixed build
1 parent aec9338 commit 9116921

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

src/utils/getSortedServices.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ describe('getSortedServices', () => {
66
const services = new Map<string, Service>();
77
services.set('John', {
88
name: 'John',
9-
base: 'John',
9+
operations: [],
1010
imports: [],
1111
});
1212
services.set('Jane', {
1313
name: 'Jane',
14-
base: 'Jane',
14+
operations: [],
1515
imports: [],
1616
});
1717
services.set('Doe', {
1818
name: 'Doe',
19-
base: 'Doe',
19+
operations: [],
2020
imports: [],
2121
});
2222

src/utils/writeClientModels.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ describe('writeClientModels', () => {
1515
base: 'Item',
1616
type: '',
1717
template: '',
18-
description: null,
19-
extends: null,
18+
extends: [],
2019
imports: [],
2120
properties: [],
2221
enums: [],

src/utils/writeClientServices.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('writeClientServices', () => {
1212
const services: Service[] = [
1313
{
1414
name: 'Item',
15-
base: 'Item',
15+
operations: [],
1616
imports: [],
1717
},
1818
];

0 commit comments

Comments
 (0)