You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version 1.7.14 assumes that start and test commands are NPM script names. It would be nice to allow any commands. For example step 1 could be allowing passing arbitrary commands like this
start-test 'http-server -c-1 --silent' 8080 test
We could check the "start" argument - in this case "http-server -c-1 --silent" against NPM script names. Since it is NOT "start" or "test" or a script name, it would be its own command.
The text was updated successfully, but these errors were encountered:
Allows to pass in addition to NPM script names any commands. For example
```
start-test 'http-server -c-1 --silent' 8000 'npm run test -- --verbose'
```
* feat: allow arbitrary commands, close#165
* chore: add port argument to the test server script
* chore: add client script for testing
* chore: described custom commands in README
Version 1.7.14 assumes that start and test commands are NPM script names. It would be nice to allow any commands. For example step 1 could be allowing passing arbitrary commands like this
We could check the "start" argument - in this case "http-server -c-1 --silent" against NPM script names. Since it is NOT "start" or "test" or a script name, it would be its own command.
The text was updated successfully, but these errors were encountered: