Files
cypress/scripts/run.js
2017-06-07 15:35:56 -04:00

39 lines
797 B
JavaScript

const minimist = require('minimist')
const args = minimist(process.argv.slice(2))
const cmd = args._[0]
require('./run-all')(cmd, args)
/**
TODO
starting app
deployment
break up core-app
- root of monorepo
- core-server
- core-driver
tests
- unit/integration in each package
- e2e should be in root
work out script running UX
- preserve coloring of individual output
* nodemon's colors are coming through, so see what it does
- bring back panes
* need to be able to scroll
requirements
---
developers will generally work in one repo at a time
- in terminal, pwd is that repo (packages/core-app)
- run tests individually per package
from root:
- npm install (or run one command to npm install) for all packages
- start app and run it
- run watch-dev for all packages
- run e2e tests
**/