Skip to content

Commit

Permalink
[console] Reenable functional tests aside from font size (elastic#197362
Browse files Browse the repository at this point in the history
)

## Summary

This is really just a more focused `skip` application so we can get as
many tests running as quickly as possible.

Part of: elastic#193868
  • Loading branch information
mattkime authored Oct 24, 2024
1 parent a194211 commit f67bc32
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/functional/apps/console/_misc_console_behavior.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const browser = getService('browser');
const PageObjects = getPageObjects(['common', 'console', 'header']);

// Failing: See https://github.com/elastic/kibana/issues/193868
// Failing: See https://github.com/elastic/kibana/issues/193868
describe.skip('misc console behavior', function testMiscConsoleBehavior() {
describe('misc console behavior', function testMiscConsoleBehavior() {
before(async () => {
await browser.setWindowSize(1200, 800);
await PageObjects.common.navigateToApp('console');
Expand Down Expand Up @@ -156,7 +154,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.console.openConsole();
});

describe('customizable font size', () => {
// Failing: See https://github.com/elastic/kibana/issues/193868
describe.skip('customizable font size', () => {
it('should allow the font size to be customized', async () => {
await PageObjects.console.openConfig();
await PageObjects.console.setFontSizeSetting(20);
Expand Down

0 comments on commit f67bc32

Please sign in to comment.