Skip to content

Commit 9f8c3f8

Browse files
committed
feat: setup Cypress dashboard to record tests, close cypress-io/cypress-vue-unit-test#3
1 parent ecd1cc6 commit 9f8c3f8

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ notifications:
77
email: true
88
node_js:
99
- '8'
10+
script:
11+
- npm test -- --record
1012
after_success:
1113
- npm run semantic-release
1214
branches:

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
[![NPM][npm-icon] ][npm-url]
66

77
[![Build status][ci-image] ][ci-url]
8+
[![Cypress dashboard][cypress-dashboard] ][cypress-badge]
89
[![semantic-release][semantic-image] ][semantic-url]
910
[![js-standard-style][standard-image]][standard-url]
1011

@@ -511,3 +512,5 @@ OTHER DEALINGS IN THE SOFTWARE.
511512
[semantic-url]: https://github.com/semantic-release/semantic-release
512513
[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg
513514
[standard-url]: http://standardjs.com/
515+
[cypress-badge]: https://img.shields.io/badge/cypress.io-tests-green.svg?style=flat-square
516+
[cypress-dashboard]: https://dashboard.cypress.io/#/projects/134ej7

cypress.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"viewportWidth": 300,
33
"viewportHeight": 100,
4-
"videoRecording": false
4+
"videoRecording": false,
5+
"projectId": "134ej7"
56
}

0 commit comments

Comments
 (0)