Skip to content

Commit b1e9230

Browse files
Changes from lint:fix
1 parent 924ef4f commit b1e9230

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

packages/generator/src/generator.spec.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,19 +130,15 @@ describe('generator', () => {
130130
});
131131

132132
it('copies the additional files matching the glob.', async () => {
133-
const sourceFiles = await readdir(
134-
join('common', 'API_TEST_SRV')
135-
);
133+
const sourceFiles = await readdir(join('common', 'API_TEST_SRV'));
136134

137135
expect(
138136
sourceFiles.find(file => file === 'some-test-markdown.md')
139137
).toBeDefined();
140138
});
141139

142140
it('generates the options per service and writes to the given folder', async () => {
143-
const clientFile = await readFile(
144-
'someDir/test-service-options.json'
145-
);
141+
const clientFile = await readFile('someDir/test-service-options.json');
146142
expect(clientFile).toBeDefined();
147143
}, 10000);
148144

0 commit comments

Comments
 (0)