-
Notifications
You must be signed in to change notification settings - Fork 8.5k
delete testbed plugins #69661
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
delete testbed plugins #69661
Conversation
| describe('request context', () => { | ||
| it('provides access to elasticsearch', async () => | ||
| await supertest.get('/requestcontext/elasticsearch').expect(200, 'Elasticsearch: true')); | ||
|
|
||
| it('provides access to SavedObjects client', async () => | ||
| await supertest | ||
| .get('/requestcontext/savedobjectsclient') | ||
| .expect( | ||
| 200, | ||
| 'SavedObjects client: {"page":1,"per_page":20,"total":0,"saved_objects":[]}' | ||
| )); | ||
| }); |
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.
So, these two tests are based on endpoints that were living in the KP testbed plugin.
I just removed them as I didn't feel like they were adding much value now that most of the plugins have been migrated and using the ES and SO clients from the context.
If we prefer, I can create a test plugin with the testbed's endpoints instead.
|
Pinging @elastic/kibana-platform (Team:Platform) |
mistic
left a comment
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.
LGTM
💛 Build succeeded, but was flaky
Test FailuresKibana Pipeline / kibana-oss-agent / Plugin Functional Tests.test/plugin_functional/test_suites/core_plugins/logging·ts.core plugins plugin logging writes info_json context to custom JSON appenderStandard OutStack TraceBuild metrics
History
To update your PR or re-run it, just comment with: |
* delete testbed plugins * remove FTR tests based on KP testbed
Summary
Fix #69660
Delete both the legacy and KP
testbedplugins.