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

DBStats_spec.js « specs « UI « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 81b815e14fde578d1ddb98f82d7eecf80f844b9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*!
 * Piwik - free/libre analytics platform
 *
 * Screenshot tests for the DBStats plugin.
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

describe("DBStats", function () {
    this.timeout(0);

    var url = "?module=DBStats&action=index&idSite=1&period=day&date=yesterday";

    it("should load correctly", function (done) {
        expect.screenshot('admin_page').to.be.captureSelector('#content', function (page) {
            page.load(url);
        }, done);
    });
});