Conversation
| "test-node": "mocha", | ||
| "clean": "rm -rf lib", | ||
| "compile": "mkdir -p lib && browserify src/rhumb.js --standalone rhumb -o lib/rhumb.js", | ||
| "compile": "npm run clean && mkdir lib && browserify src/rhumb.js --standalone rhumb -o lib/rhumb.js", |
There was a problem hiding this comment.
For some reason, your mkdir -p lib was creating a -p and lib folder for me. Probably because Windows..
There was a problem hiding this comment.
Yeah most def because windows. :o)
|
This is very cool – thanks buddy! However, I'm right in the process of moving to tape instead of mocha. There are various reasons for this, but composability is a major one. I opened up pemrouz/popper#6 because of that. Currently looking to see if there's anything I can do to help, it's a very nifty tool you've written. |
|
Awesome, well this was super simple to do. Just had to point popper to your |
|
I can do that right now, gimme a sec! |
|
Alright, pushed the new tests (see #11.) |
|
This issue was moved to websdk/rhumb#8 |
Just run
popper(orpopper -b, where-bmeans an empty list of browsers, which overrides the list of browsers in the.popper.yml, which basically means, don't spawn any browsers in BrowserStack for this run, which is useful if you are just running locally).This is what
:1945/dashboardlooks like (note: kept dashboard UI simple, so it just categorises by top-leveldescribes- I prefer having a flatter list so I can see more rows):This is what the test agents on
:1945look like:This is what
npm testlooks like (i.e. results from Travis):This is what running the same tests on node via
npm test-node(i.e.mocha) looks like (it;s on the roadmap to have popper pull these results into the same dashboard):