Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xsalonx committed Aug 1, 2024
1 parent c807729 commit 328849e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/public/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ const getPopoverInnerText = (popoverTrigger) => {
}

const popover = document.querySelector(`.popover[data-popover-key="${key}"]`);
return popover.innerHTML;
return popover.innerText;
});
};

Expand Down
1 change: 1 addition & 0 deletions test/public/qcFlags/gaqOverview.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ module.exports = () => {

await validateTableData(page, new Map(Object.entries(tableDataValidators)));

await page.waitForSelector('tr:nth-of-type(2)');
expect(await getTableContent(page)).to.have.all.deep.ordered.members([
[
'MC.R',
Expand Down
2 changes: 1 addition & 1 deletion test/public/qcFlags/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ module.exports = () => {
describe('For Simulation Pass Creation Page', ForSimulationPassCreationSuite);
describe('Details For Data Pass Page', DetailsForDataPassPageSuite);
describe('Details For Simulation Pass Page', DetailsForSimulationPassPageSuite);
describe('GAQ overviewe page', GaqOverviewPageSuite);
describe('GAQ overview page', GaqOverviewPageSuite);
};

0 comments on commit 328849e

Please sign in to comment.