fix(nx-plugin): await generators in spec files (#4205)

This commit is contained in:
Jonathan Cammisuli 2020-12-04 16:35:58 -05:00 committed by GitHub
parent 541785b515
commit f35b14b97a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ describe('<%= name %> generator', () => {
}); });
it('should run successfully', async () => { it('should run successfully', async () => {
generator(appTree, options); await generator(appTree, options);
const config = readProjectConfiguration(appTree, 'test'); const config = readProjectConfiguration(appTree, 'test');
expect(config).toBeDefined(); expect(config).toBeDefined();
}) })