-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into issue-4022
- Loading branch information
Showing
811 changed files
with
51,713 additions
and
36,065 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
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 |
---|---|---|
|
@@ -5,5 +5,7 @@ | |
"extends": [ | ||
"plugin:@cypress/dev/general" | ||
], | ||
"rules": {} | ||
"rules": { | ||
"prefer-spread": "off" | ||
} | ||
} |
File renamed without changes.
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,43 @@ | ||
<!-- | ||
this comment will be posted automatically by Cypress bot whenever someone opens a pull request, | ||
and it helps the reviewer from Cypress team to ensure the change is solid. | ||
--> | ||
Thanks for the contribution! Below are some guidelines Cypress uses when doing PR reviews. | ||
|
||
- Please write \`[WIP]\` in the title of your Pull Request if your PR is not ready for review - someone will review your PR as soon as the \`[WIP]\` is removed. | ||
- Please familiarize yourself with the PR Review Checklist and feel free to make updates on your PR based on these guidelines. | ||
|
||
## PR Review Checklist | ||
|
||
If any of the following requirements can't be met, leave a comment in the review selecting 'Request changes', otherwise 'Approve'. | ||
|
||
### User Experience | ||
|
||
- The feature/bugfix is self-documenting from within the product. | ||
- The change provides the end user with a way to fix their problem (no dead ends). | ||
|
||
### Functionality | ||
|
||
- The code works and performs its intended function with the correct logic. | ||
- Performance has been factored in (for example, the code cleans up after itself to not cause memory leaks). | ||
- The code guards against edge cases and invalid input and has tests to cover it. | ||
|
||
### Maintainability | ||
|
||
- The code is readable (too many nested 'if's are a bad sign). | ||
- Names used for variables, methods, etc, clearly describe their function. | ||
- The code is easy to understood and there are relevant comments explaining. | ||
- New algorithms are documented in the code with link(s) to external docs (flowcharts, w3c, chrome, firefox). | ||
- There are comments containing link(s) to the addressed issue (in tests and code). | ||
|
||
### Quality | ||
|
||
- The change does not reimplement code. | ||
- There's not a module from the ecosystem that should be used instead. | ||
- There is no redundant or duplicate code. | ||
- There are no irrelevant comments left in the code. | ||
- Tests are testing the code’s intended functionality in the best way possible. | ||
|
||
### Internal | ||
|
||
- The original issue has been tagged with a release in ZenHub. |
18 changes: 18 additions & 0 deletions
18
.github/PULL_REQUEST_REVIEW_COMMENT_FOR_DEPENDENCY_UPDATE.md
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,18 @@ | ||
<!-- | ||
this comment will be posted automatically by Cypress bot whenever a dependency update pull request is opened, | ||
and it helps the reviewer from Cypress team to ensure the update won't have unexpected consequences. | ||
--> | ||
Below are some guidelines Cypress uses when reviewing dependency updates. | ||
|
||
## Dependency Update Instructions | ||
|
||
- Read through the entire changelog of the dependency's changes. If a changelog is not available, check every commit made to the dependency. **NOTE** - do not rely on semver to indicate breaking changes - every product does not follow this standard. | ||
- Add a PR review comment noting any relevant changes in the dependency. | ||
- If any of the following requirements cannot be met, leave a comment in the review selecting 'Request changes', otherwise 'Approve'. | ||
|
||
## Dependency Updates Checklist | ||
|
||
- Code using the dependency has been updated to accommodate any breaking changes | ||
- The dependency still supports the version of Node that the package requires. | ||
- The PR been tagged with a release in ZenHub. | ||
- Appropriate labels have been added to the PR (for example: label \`type: breaking change\` if it is a breaking change) |
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,44 @@ | ||
<!-- | ||
Thanks for contributing! | ||
Read our contribution guidelines here: | ||
https://github.com/cypress-io/cypress/blob/develop/.github/CONTRIBUTING.md | ||
--> | ||
|
||
<!-- Example: "Closes #1234" --> | ||
|
||
- Closes <!-- issue number here --> | ||
|
||
### User facing changelog | ||
|
||
<!-- | ||
Explain the change(s) for every user to read in our changelog. | ||
--> | ||
|
||
### Additional details | ||
|
||
<!-- | ||
Examples: | ||
- Why was this change necessary? | ||
- What is affected by this change? | ||
- Any implementation details to explain? | ||
--> | ||
|
||
### How has the user experience changed? | ||
|
||
<!-- | ||
Provide before and after examples of the change. | ||
Screenshots or GIFs are preferred. | ||
--> | ||
|
||
### PR Tasks | ||
|
||
<!-- | ||
These tasks must be completed before a PR is merged. | ||
Delete tasks if they are not applicable. | ||
--> | ||
|
||
- [ ] Have tests been added/updated? | ||
- [ ] Has the original issue been tagged with a release in ZenHub? <!-- (internal team only)--> | ||
- [ ] Has a PR for user-facing changes been opened in [`cypress-documentation`](https://github.com/cypress-io/cypress-documentation)? <!-- Link to PR here --> | ||
- [ ] Have API changes been updated in the [`type definitions`](cli/types/index.d.ts)? | ||
- [ ] Have new configuration options been added to the [`cypress.schema.json`](cli/schema/cypress.schema.json)? |
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 +1 @@ | ||
8.9.3 | ||
12.0.0 |
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
Oops, something went wrong.