Skip to content

Commit

Permalink
chore(repo): more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez committed Feb 9, 2024
1 parent 71ea655 commit dd8bef3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/nuxt/src/nuxt.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe('Nuxt Plugin', () => {
`generate @nx/nuxt:storybook-configuration ${app} --generateStories --no-interactive`,
{ stdio: 'inherit' }
);
runCLI(`run ${app}:build-storybook --verbose`);
runCLI(`run ${app}:build-storybook --verbose`, { stdio: 'inherit' });
checkFilesExist(`${app}/storybook-static/index.html`);
}, 300_000);
});
4 changes: 3 additions & 1 deletion e2e/vue/src/vue-storybook.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ describe('Storybook generators and executors for Vue projects', () => {

describe('build storybook', () => {
it('should build a vue based storybook setup', () => {
runCLI(`run ${vueStorybookApp}:build-storybook --verbose`);
runCLI(`run ${vueStorybookApp}:build-storybook --verbose`, {
stdio: 'inherit',
});
checkFilesExist(`${vueStorybookApp}/storybook-static/index.html`);
}, 300_000);
});
Expand Down

0 comments on commit dd8bef3

Please sign in to comment.