Skip to content

Commit

Permalink
Unskip field formats Serverless tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davismcphee committed Sep 14, 2023
1 parent 135f190 commit 4df6ec1
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ import type { FtrProviderContext } from '../../../../ftr_provider_context';

export default function ({ getService, getPageObjects }: FtrProviderContext) {
const testSubjects = getService('testSubjects');
const PageObjects = getPageObjects(['common']);
const PageObjects = getPageObjects(['common', 'svlCommonPage']);

// Flaky in serverless tests
describe.skip('Field formats example', function () {
describe.only('Field formats example', function () {
before(async () => {
// TODO: Serverless tests require login first
await PageObjects.svlCommonPage.login();
await PageObjects.common.navigateToApp('fieldFormatsExample');
});

Expand Down

0 comments on commit 4df6ec1

Please sign in to comment.