Skip to content

Commit

Permalink
[Discover] Improve functional test wording for responsive tests(#101744)
Browse files Browse the repository at this point in the history
  • Loading branch information
kertal authored Jun 15, 2021
1 parent 6351d51 commit d3144e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/apps/discover/_doc_table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.discover.waitUntilSearchingHasFinished();
});

it(`should load up to ${rowsHardLimit} rows when scrolling at the end of the table with `, async function () {
it('should load more rows when scrolling down the document table', async function () {
const initialRows = await testSubjects.findAll('docTableRow');
await testSubjects.scrollIntoView('discoverBackToTop');
// now count the rows
Expand All @@ -88,7 +88,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.discover.waitUntilSearchingHasFinished();
});

it(`should load up to ${rowsHardLimit} rows when scrolling at the end of the table with `, async function () {
it('should load more rows when scrolling down the document table', async function () {
const initialRows = await testSubjects.findAll('docTableRow');
await testSubjects.scrollIntoView('discoverBackToTop');
// now count the rows
Expand Down

0 comments on commit d3144e1

Please sign in to comment.