Skip to content

Commit

Permalink
unfocus tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dominiqueclarke committed Jun 29, 2021
1 parent b02a1c1 commit 5634843
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
11 changes: 5 additions & 6 deletions x-pack/test/functional/apps/uptime/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,25 +41,24 @@ export default ({ loadTestFile, getService }: FtrProviderContext) => {
const server = getService('kibanaServer');
const uptime = getService('uptime');

/* eslint-disable ban/ban */
describe.only('Uptime app', function () {
describe('Uptime app', function () {
this.tags('ciGroup6');

beforeEach('delete settings', async () => {
await deleteUptimeSettingsObject(server);
});

describe.only('with generated data', () => {
describe('with generated data', () => {
beforeEach('load heartbeat data', async () => {
await esArchiver.load('x-pack/test/functional/es_archives/uptime/blank');
});
afterEach('unload', async () => {
await esArchiver.unload('x-pack/test/functional/es_archives/uptime/blank');
});

// loadTestFile(require.resolve('./locations'));
// loadTestFile(require.resolve('./settings'));
// loadTestFile(require.resolve('./certificates'));
loadTestFile(require.resolve('./locations'));
loadTestFile(require.resolve('./settings'));
loadTestFile(require.resolve('./certificates'));
loadTestFile(require.resolve('./synthetics_integration'));
});

Expand Down
3 changes: 1 addition & 2 deletions x-pack/test/functional/apps/uptime/synthetics_integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
use_output: 'default',
});

/* eslint-disable ban/ban */
describe.only('When on the Synthetics Integration Policy Create Page', function () {
describe('When on the Synthetics Integration Policy Create Page', function () {
this.tags(['ciGroup6']);
const basicConfig = {
name: monitorName,
Expand Down

0 comments on commit 5634843

Please sign in to comment.