-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
Remove dependency of tests on strict SyntaxKind values #83440
Merged
afharo
merged 1 commit into
elastic:master
from
afharo:telemetry-tools/tests/dynamic-SyntaxKind
Nov 16, 2020
Merged
Remove dependency of tests on strict SyntaxKind values #83440
afharo
merged 1 commit into
elastic:master
from
afharo:telemetry-tools/tests/dynamic-SyntaxKind
Nov 16, 2020
Conversation
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
afharo
added
Feature:Telemetry
release_note:skip
Skip the PR/issue when compiling release notes
Team:KibanaTelemetry
v7.11.0
NeededFor:Core
labels
Nov 16, 2020
Pinging @elastic/kibana-telemetry (Team:KibanaTelemetry) |
TinaHeiligers
approved these changes
Nov 16, 2020
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.
The changes seem innocent enough. LGTM once the tests to green.
💚 Build SucceededMetrics [docs]
To update your PR or re-run it, just comment with: |
afharo
added a commit
that referenced
this pull request
Nov 16, 2020
phillipb
added a commit
to phillipb/kibana
that referenced
this pull request
Nov 19, 2020
…ode-details * 'master' of github.com:elastic/kibana: Remove dependency of tests on strict SyntaxKind values (elastic#83440) [SecuritySolution] override timerange for prebuilt templates (elastic#82468) [Enterprise Search] Added a shouldShowActiveForSubroutes option (elastic#83338) [Lens] Make the dimension flyout panel stay close on outside click (elastic#83059) [Security Solution] Gracefully handle errors in detection rules install (elastic#83306) Fix advanced settings category sorting (elastic#83394)
lukeelmers
added
the
Team:Core
Core services & architecture: plugins, logging, config, saved objects, http, ES client, i18n, etc
label
Oct 1, 2021
Pinging @elastic/kibana-core (Team:Core) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Feature:Telemetry
NeededFor:Core
release_note:skip
Skip the PR/issue when compiling release notes
Team:Core
Core services & architecture: plugins, logging, config, saved objects, http, ES client, i18n, etc
v7.11.0
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.
Summary
Tests in
@kbn/telemetry-tools
rely on strictSyntaxKind
values. So, for every update in the TS libraries, they might change, leading to the snapshots in the tests to need a refresh.This PR changes the assertion so it no longer relies on strict values and updates as TS updates them.
Related to #83397
Checklist
Delete any items that are not applicable to this PR.
For maintainers