mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Security Solution] Fix Endpoint tests when prepackaged with a dev endpoint package (#147052)
## Summary Change our query to use `prerelease` to correctly find dev endpoint packages in tests ### Checklist - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
This commit is contained in:
parent
83a334974c
commit
b79954c9b7
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
{
|
||||
"name": "endpoint",
|
||||
"version": "8.6.1"
|
||||
"version": "8.7.0-next"
|
||||
},
|
||||
{
|
||||
"name": "fleet_server",
|
||||
|
|
|
@ -33,7 +33,7 @@ const INGEST_API_PACKAGE_POLICIES = `${INGEST_API_ROOT}/package_policies`;
|
|||
const INGEST_API_PACKAGE_POLICIES_DELETE = `${INGEST_API_PACKAGE_POLICIES}/delete`;
|
||||
const INGEST_API_EPM_PACKAGES = `${INGEST_API_ROOT}/epm/packages`;
|
||||
|
||||
const SECURITY_PACKAGES_ROUTE = `${INGEST_API_EPM_PACKAGES}?category=security&experimental=true`;
|
||||
const SECURITY_PACKAGES_ROUTE = `${INGEST_API_EPM_PACKAGES}?category=security&prerelease=true`;
|
||||
|
||||
/**
|
||||
* Holds information about the test resources created to support an Endpoint Policy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue