Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2022-01-10 07:04:00 +0300
committerGitHub <noreply@github.com>2022-01-10 07:04:00 +0300
commitad10d46a0b738433836e996aa64a92671bc6641e (patch)
tree5acca29f77afaece09b39ae78e36d5f02f5234ed /plugins/CustomDimensions
parent67376ceaf0acafa7d721c5a3b9d8517cfc64c8b2 (diff)
[Vue] dropdownmenu directive should be aware of data-target parameter (#18580)
* dropdownmenu directive should be aware of data-target parameter that is required by materialize * built vue files * fix random UI test failure
Diffstat (limited to 'plugins/CustomDimensions')
-rw-r--r--plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js b/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js
index eb91123927..b0ce39ee23 100644
--- a/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js
+++ b/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js
@@ -53,7 +53,7 @@ describe("CustomDimensions", function () {
var rowToMatch = 'td.label:contains(' + labelToClick + '):first';
await (await page.jQuery('table.dataTable tbody ' + rowToMatch)).hover();
- await page.waitForTimeout(50);
+ await page.waitForTimeout(100);
await (await page.jQuery(rowToMatch + ' a.'+ nameOfRowActionToTrigger + ':visible')).hover(); // necessary to get popover to display
await (await page.jQuery(rowToMatch + ' a.' + nameOfRowActionToTrigger + ':visible')).click();
await page.mouse.move(-10, -10);