mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Synthetics] Fix failing Synthetics Integration test (#144175)
* fix failing test * Update x-pack/test/functional_synthetics/apps/uptime/synthetics_integration.ts * Update x-pack/test/functional_synthetics/apps/uptime/synthetics_integration.ts
This commit is contained in:
parent
49c153f243
commit
8119e9ad0d
1 changed files with 16 additions and 5 deletions
|
@ -51,6 +51,11 @@ export default function (providerContext: FtrProviderContext) {
|
|||
{
|
||||
data_stream: {
|
||||
dataset: monitorType,
|
||||
elasticsearch: {
|
||||
privileges: {
|
||||
indices: ['auto_configure', 'create_doc', 'read'],
|
||||
},
|
||||
},
|
||||
type: 'synthetics',
|
||||
},
|
||||
id: `${getSyntheticsPolicy(agentFullPolicy)?.streams?.[0]?.id}`,
|
||||
|
@ -81,6 +86,11 @@ export default function (providerContext: FtrProviderContext) {
|
|||
{
|
||||
data_stream: {
|
||||
dataset: 'browser.network',
|
||||
elasticsearch: {
|
||||
privileges: {
|
||||
indices: ['auto_configure', 'create_doc', 'read'],
|
||||
},
|
||||
},
|
||||
type: 'synthetics',
|
||||
},
|
||||
id: `${getSyntheticsPolicy(agentFullPolicy)?.streams?.[1]?.id}`,
|
||||
|
@ -105,6 +115,11 @@ export default function (providerContext: FtrProviderContext) {
|
|||
{
|
||||
data_stream: {
|
||||
dataset: 'browser.screenshot',
|
||||
elasticsearch: {
|
||||
privileges: {
|
||||
indices: ['auto_configure', 'create_doc', 'read'],
|
||||
},
|
||||
},
|
||||
type: 'synthetics',
|
||||
},
|
||||
id: `${getSyntheticsPolicy(agentFullPolicy)?.streams?.[2]?.id}`,
|
||||
|
@ -133,11 +148,7 @@ export default function (providerContext: FtrProviderContext) {
|
|||
use_output: 'default',
|
||||
});
|
||||
|
||||
// FAILING: https://github.com/elastic/kibana/issues/144139
|
||||
// FAILING: https://github.com/elastic/kibana/issues/144140
|
||||
// FAILING: https://github.com/elastic/kibana/issues/144141
|
||||
// FAILING: https://github.com/elastic/kibana/issues/144142
|
||||
describe.skip('When on the Synthetics Integration Policy Create Page', function () {
|
||||
describe('When on the Synthetics Integration Policy Create Page', function () {
|
||||
skipIfNoDockerRegistry(providerContext);
|
||||
const basicConfig = {
|
||||
name: monitorName,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue