Skip to content

Commit

Permalink
Attempt to fix functional tests again.
Browse files Browse the repository at this point in the history
  • Loading branch information
efreeti committed Aug 17, 2020
1 parent d14ea15 commit 5831069
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {

it('finds page title', async () => {
const title = await testSubjects.getVisibleText('header-page-title');
expect(title).to.equal('Endpoints');
expect(title).to.equal('Endpoints BETA');
});

it('displays table data', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});
it('displays page title', async () => {
const policyTitle = await testSubjects.getVisibleText('header-page-title');
expect(policyTitle).to.equal('Policies');
expect(policyTitle).to.equal('Policies BETA');
});
it('shows header create policy button', async () => {
const createButtonTitle = await testSubjects.getVisibleText('headerCreateNewPolicyButton');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {

it('finds page title', async () => {
expect(await testSubjects.getVisibleText('header-page-title')).to.equal(
'Trusted applications'
'Trusted applications BETA'
);
});
});
Expand Down

0 comments on commit 5831069

Please sign in to comment.