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

Theme_spec.js « specs « UI « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb9b9dfff3552320660ef1f283ddb0055e2e4391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*!
 * Piwik - free/libre analytics platform
 *
 * Tests that theming works.
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

var fs = require('fs');

describe("Theme", function () {
    this.retries(2);

    this.timeout(0);

    function clearAssets() {
        fs.removeTree(path.join(PIWIK_INCLUDE_PATH, 'tmp', 'assets'));
    }

    before(function () {
        testEnvironment.pluginsToLoad = ['ExampleTheme'];

        // Enable development mode to be able to see the UI demo page
        testEnvironment.overrideConfig('Development', 'enabled', true);
        testEnvironment.save();

        clearAssets();
    });

    after(function () {
        
        clearAssets();
    });

    it("should use the current theme", function (done) {
        expect.screenshot("home").to.be.capture(function (page) {
            page.load("?module=CoreHome&action=index&idSite=1&period=year&date=2012-08-09");
        }, done);
    });

    it("should theme the UI demo page", function (done) {
        expect.screenshot("demo").to.be.capture(function (page) {
            page.load("?module=Morpheus&action=demo");
        }, done);
    });
});