Last active
December 28, 2017 20:44
-
-
Save brian-mann/7b34b1eaa76b829d9de46914fba32b76 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(Run Starting) | |
- Browser: Chrome 61 | |
- Browser: Electron 53 (headless) | |
- Grouping: true (groupId) | |
- Parallelizing: true (parallelId) | |
- Run URL: https://dashboard.cypress.io/foo/bar/baz | |
- Specs Glob: **/*.js -- if used | |
- Specs Found: 28 (app_spec.coffee, foo_spec.js, bar_spec.js, ...26 more) | |
************************************************************************************ | |
(Spec Starting) | |
Running Spec: app_spec.coffee (...27 more to run) | |
ETA Completion: 30 secs (historically) | |
caching | |
✓ does not cache cy.visit file server requests | |
✓ sets etags on file assets, but no cache-control | |
✓ does not cache cy.visit http server requests | |
✓ respects cache control headers from 3rd party http servers | |
4 passing | |
(Tests Finished) | |
- Tests: 4 | |
- Passes: 4 | |
- Failures: 0 | |
- Pending: 0 | |
- Duration: 10 seconds | |
- Screenshots: 0 | |
- Spec Run: /path/to/spec/file | |
- Video Recorded: true | |
- Cypress Version: 1.2.3 | |
- Browser Used: Chrome 61 | |
- Operating System: Ubuntu 14.04 | |
(Video) | |
- Started processing: Compressing to 32 CRF | |
- Finished processing: /foo/bar/.projects/e2e/cypress/videos/abc123.mp4 (0 seconds) | |
(Spec Finished) | |
************************************************************************************ | |
(Spec Starting) | |
Running Spec: foo_spec.coffee (...26 more to run) | |
caching | |
✓ does not cache cy.visit file server requests | |
✓ sets etags on file assets, but no cache-control | |
✓ does not cache cy.visit http server requests | |
✓ respects cache control headers from 3rd party http servers | |
4 passing | |
(Spec Finished) | |
- Tests: 4 | |
- Passes: 4 | |
- Failures: 0 | |
- Pending: 0 | |
- Duration: 10 seconds | |
- Screenshots: 0 | |
- Spec Run: /path/to/spec/file | |
- Video Recorded: true | |
- Cypress Version: 1.2.3 | |
- Browser Used: Chrome 61 | |
- Operating System: Ubuntu 14.04 | |
(Video) | |
- Started processing: Compressing to 32 CRF | |
- Finished processing: /foo/bar/.projects/e2e/cypress/videos/abc123.mp4 (0 seconds) | |
************************************************************************************ | |
(Summary) | |
Run URL: https://dashboard.cypress.io/foo/bar/baz | |
| Spec | Duration | Failures | Passes | Pending | | |
| ------------ | -------- | ---------- | ------ | ------- | | |
| path/to/spec | 5 min 26 secs | 10 | 100 | 12 | | |
| path/to/spec | 27 min | 0 | 13 | 0 | | |
| ------------ | ------------- | ---------- | ------ | ------- | | |
| 28 total | 32 min 5 secs 10 | 113 | 12 | | |
(Run Finished) |
- There will only be 1 browser, i was just showing hte difference between say Chrome + Electron in headed vs headless mode
- Don't worry about grouping + parallel, they'll only be visible if you're doing them. In that case we'll provide more info
- ^^
- Blame mocha - they round up, we don't. It's really up to the reporter to do this. Users can change the reporter. There's no guarantee this ever matches.
- Sure, makes sense.
- How would you like it to be more prominent?
- At the bottom it's nice cause it's on a row of it's own, very easy to see. But at the top it blends into all the other data I guess.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Duration
listed at the end of a spec often did not match the duration listed in the summary. I think it is just a matter of formatting and rounding, but I'd like these to match.MM:ss:mmm
, formatted asM min s secs
makes it impossible to scan and compare across specs. Also ^ sometimes specs run with only milliseconds measured.