Skip to content
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

[Endpoint] Disabling all the endpoint tests for 7.8 #69008

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion x-pack/test/api_integration/apis/endpoint/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ export default function endpointAPIIntegrationTests({
loadTestFile,
getService,
}: FtrProviderContext) {
describe('Endpoint plugin', function () {
// endpoint was not released in 7.8 so disabling all the tests
describe.skip('Endpoint plugin', function () {
const ingestManager = getService('ingestManager');
this.tags(['endpoint']);
before(async () => {
Expand Down
3 changes: 2 additions & 1 deletion x-pack/test/endpoint_api_integration_no_ingest/apis/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
import { FtrProviderContext } from '../ftr_provider_context';

export default function endpointAPIIntegrationTests({ loadTestFile }: FtrProviderContext) {
describe('Endpoint plugin', function () {
// endpoint was not released in 7.8 so disabling all the tests
describe.skip('Endpoint plugin', function () {
this.tags('ciGroup7');
loadTestFile(require.resolve('./index_pattern'));
loadTestFile(require.resolve('./metadata'));
Expand Down
3 changes: 2 additions & 1 deletion x-pack/test/functional/apps/endpoint/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
import { FtrProviderContext } from '../../ftr_provider_context';

export default function ({ loadTestFile }: FtrProviderContext) {
describe('endpoint', function () {
// endpoint was not released in 7.8 so disabling all the tests
describe.skip('endpoint', function () {
this.tags('ciGroup7');

loadTestFile(require.resolve('./feature_controls'));
Expand Down
3 changes: 2 additions & 1 deletion x-pack/test/functional_endpoint/apps/endpoint/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
import { FtrProviderContext } from '../../ftr_provider_context';

export default function ({ loadTestFile }: FtrProviderContext) {
describe('endpoint', function () {
// endpoint was not released in 7.8 so disabling all the tests
describe.skip('endpoint', function () {
this.tags('ciGroup7');

loadTestFile(require.resolve('./feature_controls'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
import { FtrProviderContext } from '../../ftr_provider_context';

export default function ({ loadTestFile }: FtrProviderContext) {
describe('endpoint when the ingest manager fails to setup correctly', function () {
// endpoint was not released in 7.8 so disabling all the tests
describe.skip('endpoint when the ingest manager fails to setup correctly', function () {
this.tags('ciGroup7');

loadTestFile(require.resolve('./landing_page'));
Expand Down
4 changes: 2 additions & 2 deletions x-pack/test/plugin_functional/test_suites/resolver/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import { FtrProviderContext } from '../../ftr_provider_context';
export default function ({ getPageObjects, getService }: FtrProviderContext) {
const pageObjects = getPageObjects(['common']);
const testSubjects = getService('testSubjects');

describe('Resolver embeddable test app', function () {
// endpoint was not released in 7.8 so disabling all the tests
describe.skip('Resolver embeddable test app', function () {
this.tags('ciGroup7');

beforeEach(async function () {
Expand Down