-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding exclude env var for compatibility with Cypress 10
* feat: adding exclude env var for compatibility with cypress v10 * moving webpack processor to deps * chore: updating examples for new and legacy cypress config * chore: renaming examples folder to test-apps and updating refs * chore: ability to publish dev branch * update cypress package * update brand * updating cypress to bust circle cache * ensuring deps install in main test
- Loading branch information
Showing
385 changed files
with
83,197 additions
and
11,930 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,12 +1,11 @@ | ||
node_modules/ | ||
cypress/videos | ||
cypress/screenshots | ||
**/cypress/videos | ||
**/cypress/screenshots | ||
coverage/ | ||
.nyc_output/ | ||
dist/ | ||
.cache/ | ||
.vscode/ | ||
cypress-coverage/ | ||
examples/*/cypress/videos | ||
examples/*/cypress/screenshots | ||
yarn.lock | ||
.parcel-cache |
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,14 @@ | ||
{ | ||
"branches": [ | ||
"master", | ||
"next", | ||
{ | ||
"name": "besta", | ||
"prerelease": true | ||
}, | ||
{ | ||
"name": "dev", | ||
"prerelease": true | ||
} | ||
] | ||
} |
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
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,8 +1,3 @@ | ||
<body> | ||
<nav> | ||
<a href="/about.html">About</a> | ||
</nav> | ||
<h2>Test page</h2> | ||
<p>Open the DevTools to see console messages</p> | ||
<script src="app.js"></script> | ||
</body> |
Oops, something went wrong.