-
Notifications
You must be signed in to change notification settings - Fork 339
Update packages with React 17 and tests passing. #12315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tofumatt
wants to merge
38
commits into
develop
Choose a base branch
from
typescript-fewer-package-changes
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 16 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
f7d1f8a
Update packages with React 17 and tests passing.
tofumatt 1cf9a8d
Update Stylelint version.
tofumatt a343a91
Merge branch 'develop' into typescript-fewer-package-changes.
tofumatt 4be3e51
Fix Stylelint issues and package resolutions.
tofumatt e7b1dd8
Merge branch 'develop' into typescript-fewer-package-changes.
tofumatt c92c709
Fix tests.
tofumatt 1509b8e
Merge branch 'develop' into typescript-fewer-package-changes.
tofumatt ae6dae6
Update snapshots to include retry buttons.
tofumatt 2421344
Update settings module snapshot with example URL.
tofumatt 00a421e
Mock Analytics settings endpoint for tests that rely on it.
tofumatt 9c2d6fd
Wait for registry to complete work in test.
tofumatt 34c6558
Re-render tooltip test.
tofumatt 8c886a5
Ensure console errors are consistently fired/caught in tests.
tofumatt caf5590
Fix tests and related fixes.
aaemnnosttv 0d17205
Revert added storeName in modules list fixture.
aaemnnosttv 2b67f55
Add missing calls to provideModuleRegistrations.
aaemnnosttv 8aaa7e6
Fix typecheck errors.
aaemnnosttv 1c01fd2
Fix remaining tests.
aaemnnosttv 96b27b2
Fix lint warnings.
aaemnnosttv b089add
Fix typo in body parameter name.
aaemnnosttv 31ec565
Remove extra quote in assertion.
aaemnnosttv b26a87a
Merge branch 'develop' into typescript-fewer-package-changes.
aaemnnosttv 06d92af
Update deprecated action.
aaemnnosttv 7a46c67
Upgrade react-test-renderer to match new react version.
aaemnnosttv 27059b8
Merge branch 'develop' into typescript-fewer-package-changes.
tofumatt 0cc7951
Prevent hash changes from breaking VRTs.
tofumatt 9af15ce
Trigger enhanced measurement settings fetch in Analytics component.
tofumatt 2291758
Fix `isLoading` check in Analytics.
tofumatt 68699ae
Update dependencies in selectors to trigger component refreshes.
tofumatt d7faf01
Merge branch 'develop' into typescript-fewer-package-changes.
tofumatt 7fd2bec
Fix package lock file.
tofumatt 6c196a5
Fix test failures and fetch logic.
tofumatt 2352a32
Add node types.
tofumatt bec51f9
Install playwright after install.
tofumatt c464238
Ensure setup form refreshes when settings change.
tofumatt fea6b33
Add patch to @wordpress/data.
tofumatt 50948f8
Fix wordpress/data patch.
aaemnnosttv 36cb23b
Merge branch 'develop' into typescript-fewer-package-changes.
aaemnnosttv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,34 +1,35 @@ | ||
| { | ||
| "extends": [ | ||
| "@wordpress/stylelint-config", | ||
| "stylelint-config-standard-scss" | ||
| ], | ||
| "plugins": [ | ||
| "stylelint-declaration-strict-value", | ||
| "stylelint-order", | ||
| "stylelint-scss" | ||
| ], | ||
| "rules": { | ||
| "indentation": "tab", | ||
| "declaration-empty-line-before": null, | ||
| "scss/no-global-function-names": null, | ||
| "scss/dollar-variable-empty-line-before": null, | ||
| "scss/at-extend-no-missing-placeholder": null, | ||
| "scss/dollar-variable-pattern": null, | ||
| "color-function-notation": null, | ||
| "alpha-value-notation": null, | ||
| "rule-empty-line-before": null, | ||
| "at-rule-empty-line-before": null, | ||
| "string-quotes": "double", | ||
| "at-rule-no-unknown": null, | ||
| "declaration-property-unit-allowed-list": null, | ||
| "function-url-quotes": "always", | ||
| "selector-class-pattern": null, | ||
| "order/properties-alphabetical-order": true, | ||
| "value-keyword-case": [ "lower", { | ||
| "ignoreKeywords": ["/([A-Z])/"] | ||
| } | ||
| ], | ||
| "selector-nested-pattern": "^(?!&__|&--|&-|&_).*" | ||
| } | ||
| } | ||
| "extends": [ | ||
| "@wordpress/stylelint-config", | ||
| "stylelint-config-standard-scss" | ||
| ], | ||
| "plugins": [ | ||
| "stylelint-declaration-strict-value", | ||
| "stylelint-order", | ||
| "stylelint-scss" | ||
| ], | ||
| "rules": { | ||
| "shorthand-property-no-redundant-values": null, | ||
| "declaration-empty-line-before": null, | ||
| "scss/no-global-function-names": null, | ||
| "scss/dollar-variable-empty-line-before": null, | ||
| "scss/at-extend-no-missing-placeholder": null, | ||
| "scss/dollar-variable-pattern": null, | ||
| "color-function-notation": null, | ||
| "alpha-value-notation": null, | ||
| "rule-empty-line-before": null, | ||
| "at-rule-empty-line-before": null, | ||
| "at-rule-no-unknown": null, | ||
| "declaration-property-unit-allowed-list": null, | ||
| "function-url-quotes": "always", | ||
| "selector-class-pattern": null, | ||
| "order/properties-alphabetical-order": true, | ||
| "value-keyword-case": [ | ||
| "lower", | ||
| { | ||
| "ignoreKeywords": [ "/([A-Z])/" ] | ||
| } | ||
| ], | ||
| "selector-nested-pattern": "^(?!&__|&--|&-|&_).*" | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was causing an error from focus trap because all focusable elements can't be disabled in the trap.