Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
fix nested field cypress test (#1045)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcui1225 authored Feb 10, 2021
1 parent 358c1c0 commit e3aa580
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions workbench/.cypress/integration/ui.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,7 @@ describe('Test table display', () => {
});
});

// skip until nested support is added
it.skip('Test nested fields display', () => {
it('Test nested fields display', () => {
cy.get('textarea.ace_text-input')
.eq(0)
.focus()
Expand All @@ -229,7 +228,7 @@ describe('Test table display', () => {
cy.get('span.euiTableCellContent__text')
.eq(24)
.should((cell) => {
expect(cell).to.contain('2018-06-23');
expect(cell).to.contain('comment_2_1');
});
});
});

0 comments on commit e3aa580

Please sign in to comment.