bigtestjs / server

All BigTest development has moved to https://github.com/thefrontside/bigtest
https://github.com/thefrontside/bigtest
2 stars 1 forks source link

Make orchestrator capable of starting the application #40

Closed cowboyd closed 4 years ago

cowboyd commented 4 years ago

Current process:

$ yarn start
$ cd ../my-app
$ PORT=24000 yarn start

MVP process:

$ cd my--app
$ yarn bigtest --start-with 'yarn start' --app-url http://localhost:3000

This implies that the orchestrator will be able to

  1. start the app
  2. wait until the app is running at the specified port before being considered ready.

For testing purposes, we'll need to use the example app.

jnicklas commented 4 years ago

This was completed by #45