We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 924ef4f commit b1e9230Copy full SHA for b1e9230
1 file changed
packages/generator/src/generator.spec.ts
@@ -130,19 +130,15 @@ describe('generator', () => {
130
});
131
132
it('copies the additional files matching the glob.', async () => {
133
- const sourceFiles = await readdir(
134
- join('common', 'API_TEST_SRV')
135
- );
+ const sourceFiles = await readdir(join('common', 'API_TEST_SRV'));
136
137
expect(
138
sourceFiles.find(file => file === 'some-test-markdown.md')
139
).toBeDefined();
140
141
142
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
+ const clientFile = await readFile('someDir/test-service-options.json');
146
expect(clientFile).toBeDefined();
147
}, 10000);
148
0 commit comments