Skip to content

Commit

Permalink
Adding inline comments to explain change
Browse files Browse the repository at this point in the history
  • Loading branch information
snake14 committed Nov 29, 2024
1 parent 99f31e3 commit edbac53
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/UI/ContainerTag_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,7 @@ describe("ContainerTag", function () {
await page.goto(container1Base);
await clickFirstRowTableAction('icon-content-copy', 3);
await page.waitForNetworkIdle();
// Reverse testing specific CSS preventing dropdown from overflowing the modal like usual
await page.evaluate(function() {
var style = document.createElement('style');
style.appendChild(document.createTextNode(`div.ui-dialog.mtmCopyTag div#Piwik_Popover { overflow-y: unset !important; }`));
Expand Down
1 change: 1 addition & 0 deletions tests/UI/ContainerTrigger_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ describe("ContainerTrigger", function () {
await page.goto(container1Base);
await clickFirstRowTableAction('icon-content-copy', 3);
await page.waitForNetworkIdle();
// Reverse testing specific CSS preventing dropdown from overflowing the modal like usual
await page.evaluate(function() {
var style = document.createElement('style');
style.appendChild(document.createTextNode(`div.ui-dialog.mtmCopyTrigger div#Piwik_Popover { overflow-y: unset !important; }`));
Expand Down
1 change: 1 addition & 0 deletions tests/UI/ContainerVariable_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ describe("ContainerVariable", function () {
await page.goto(container1Base);
await clickFirstRowTableAction('icon-content-copy', 3);
await page.waitForNetworkIdle();
// Reverse testing specific CSS preventing dropdown from overflowing the modal like usual
await page.evaluate(function() {
var style = document.createElement('style');
style.appendChild(document.createTextNode(`div.ui-dialog.mtmCopyVariable div#Piwik_Popover { overflow-y: unset !important; }`));
Expand Down

0 comments on commit edbac53

Please sign in to comment.