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
path: root/tests
diff options
context:
space:
mode:
authorMatthieu Aubry <matt@piwik.org>2015-06-08 06:01:56 +0300
committerMatthieu Aubry <matt@piwik.org>2015-06-08 06:01:56 +0300
commit043b4707fbe58fd869c575ad0ce2c2b1e6f79804 (patch)
treefa50cd078df7bc3cc2ba2320f24c4586436da659 /tests
parent254ec097b228721cb646badd71e3c54ac4b429c8 (diff)
parentc8255e1ef6428f0987cae493197f78d359c6e768 (diff)
Merge pull request #8018 from piwik/7891
Expand Outlinks / Downloads if only one domain given
Diffstat (limited to 'tests')
-rw-r--r--tests/UI/specs/ActionsDataTable_spec.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/UI/specs/ActionsDataTable_spec.js b/tests/UI/specs/ActionsDataTable_spec.js
index 7f4874b37e..b4a4deecb1 100644
--- a/tests/UI/specs/ActionsDataTable_spec.js
+++ b/tests/UI/specs/ActionsDataTable_spec.js
@@ -91,4 +91,12 @@ describe("ActionsDataTable", function () {
page.click('.dataTableSearchPattern>input[type=submit]');
}, done);
});
-}); \ No newline at end of file
+
+ it("should automatically expand subtables if it contains only one folder", function (done) {
+ expect.screenshot('auto_expand').to.be.capture(function (page) {
+ page.load(url + '&viewDataTable=table');
+ page.click('tr .value:contains("blog")');
+ page.click('tr .value:contains("2012")');
+ }, done);
+ });
+});