-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #294 from EmmaRamirez/release/1.3.0
Release 1.3.0
- Loading branch information
Showing
59 changed files
with
12,667 additions
and
8,879 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- '10' | ||
- '12' | ||
- 12 | ||
|
||
# if using Ubuntu 16 need this library | ||
# https://github.com/cypress-io/cypress-documentation/pull/1647 | ||
addons: | ||
apt: | ||
packages: | ||
- libgconf-2-4 | ||
|
||
cache: | ||
# cache both npm modules and Cypress binary | ||
directories: | ||
- node_modules | ||
- ~/.npm | ||
- ~/.cache | ||
|
||
script: | ||
# ## print all Travis environment variables for debugging | ||
- npm run start:ci & | ||
- npm run cy:run | ||
# after all tests finish running we need | ||
# to kill all background jobs (like "npm start &") | ||
- kill $(jobs -p) || true | ||
- npm test | ||
|
||
after_success: | ||
- node node_modules/.bin/jest --coverage --collectCoverageFrom=!src/parsers/*.ts --config jest-config.json && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage | ||
- node node_modules/.bin/jest --coverage --config jest-config.json && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"baseUrl": "http://localhost:8080", | ||
"retries": { | ||
"runMode": 5, | ||
"openMode": 2 | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
describe('visit page', () => { | ||
it('Visits the Kitchen Sink', () => { | ||
// @ts-expect-error | ||
cy.visit('/'); | ||
}); | ||
}); |
This file contains 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
Oops, something went wrong.