Skip to content

Commit

Permalink
unskip stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey Robertson committed Nov 3, 2021
1 parent 2cd007e commit e175ab3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ describe('Dashboard container lifecycle', () => {

// FLAKY: https://github.com/elastic/kibana/issues/116050
// FLAKY: https://github.com/elastic/kibana/issues/105018
describe.skip('Dashboard initial state', () => {
describe('Dashboard initial state', () => {
it('Extracts state from Dashboard Saved Object', async () => {
const { renderHookResult, embeddableFactoryResult } = renderDashboardAppStateHook({});
const getResult = () => renderHookResult.result.current;
Expand Down Expand Up @@ -279,7 +279,7 @@ describe.skip('Dashboard initial state', () => {
});

// FLAKY: https://github.com/elastic/kibana/issues/116043
describe.skip('Dashboard state sync', () => {
describe('Dashboard state sync', () => {
let defaultDashboardAppStateHookResult: RenderDashboardStateHookReturn;
const getResult = () => defaultDashboardAppStateHookResult.renderHookResult.result.current;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
await PageObjects.security.forceLogout();
});

describe('global dashboard all privileges, no embeddable application privileges', () => {
describe.skip('global dashboard all privileges, no embeddable application privileges', () => {
before(async () => {
await security.role.create('global_dashboard_all_role', {
elasticsearch: {
Expand Down Expand Up @@ -157,7 +157,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});
});

describe('global dashboard & embeddable all privileges', () => {
describe.skip('global dashboard & embeddable all privileges', () => {
before(async () => {
await security.role.create('global_dashboard_visualize_all_role', {
elasticsearch: {
Expand Down Expand Up @@ -254,7 +254,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});
});

describe('global dashboard read-only privileges', () => {
describe.skip('global dashboard read-only privileges', () => {
before(async () => {
await security.role.create('global_dashboard_read_role', {
elasticsearch: {
Expand Down Expand Up @@ -385,7 +385,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});
});

describe('global dashboard read-only with url_create privileges', () => {
describe.skip('global dashboard read-only with url_create privileges', () => {
before(async () => {
await security.role.create('global_dashboard_read_url_create_role', {
elasticsearch: {
Expand Down Expand Up @@ -499,7 +499,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});

// FLAKY: https://github.com/elastic/kibana/issues/116881
describe.skip('no dashboard privileges', () => {
describe('no dashboard privileges', () => {
before(async () => {
await security.role.create('no_dashboard_privileges_role', {
elasticsearch: {
Expand Down
3 changes: 3 additions & 0 deletions x-pack/test/functional/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ export default async function ({ readConfigFile }) {
return {
// list paths to the files that contain your plugins tests
testFiles: [
resolve(__dirname, './apps/dashboard'),
/*
resolve(__dirname, './apps/advanced_settings'),
resolve(__dirname, './apps/canvas'),
resolve(__dirname, './apps/graph'),
Expand Down Expand Up @@ -60,6 +62,7 @@ export default async function ({ readConfigFile }) {
// This license_management file must be last because it is destructive.
resolve(__dirname, './apps/license_management'),
*/
],

services,
Expand Down

0 comments on commit e175ab3

Please sign in to comment.