mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:21:07 +08:00
FIX smoke tests for angular
This commit is contained in:
parent
f0d498400d
commit
4ec19da59c
4
app/angular/src/server/index.js
vendored
4
app/angular/src/server/index.js
vendored
@ -33,6 +33,7 @@ program
|
||||
)
|
||||
.option('--ssl-cert <cert>', 'Provide an SSL certificate. (Required with --https)')
|
||||
.option('--ssl-key <key>', 'Provide an SSL key. (Required with --https)')
|
||||
.option('--smoke-test', 'Exit after successful start')
|
||||
.option('-d, --db-path [db-file]', 'DEPRECATED!')
|
||||
.option('--enable-db', 'DEPRECATED!')
|
||||
.parse(process.argv);
|
||||
@ -153,5 +154,8 @@ Promise.all([webpackValid, serverListening])
|
||||
.then(() => {
|
||||
const address = `http://${program.host || 'localhost'}:${program.port}/`;
|
||||
logger.info(`Storybook started on => ${chalk.cyan(address)}\n`);
|
||||
if (program.smokeTest) {
|
||||
process.exit(0);
|
||||
}
|
||||
})
|
||||
.catch(error => logger.error(error));
|
||||
|
Loading…
x
Reference in New Issue
Block a user