forked from cypress-io/cypress-example-kitchensink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (32 loc) · 1.08 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
language: node_js
node_js:
- 8
before_script:
## runs the 'start' script which
## boots our local app server on port 8080
## which cypress expects to be running
## -----------------------------------
## the '-- --silent' passes arguments
## to http-server which silences its output
## else our travis logs would be cluttered
## with output from HTTP requests
## https://docs.npmjs.com/cli/start
## https://github.com/indexzero/http-server
## ---------------------------------------
## we use the '&' ampersand which tells
## travis to run this process in the background
## else it would block execution and hang travis
- npm start -- --silent &
script:
## now run cypress headlessly
## and record all of the tests.
## Cypress will search for a
## CYPRESS_RECORD_KEY environment
## variable by default and apply
## this to the run.
- $(npm bin)/cypress run --record
## alternatively we could specify
## a specific record key to use
## like this without having to
## configure environment variables
## - cypress run --record --key <your_record_key>