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/UI
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@gmail.com>2015-02-03 06:43:09 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-02-03 06:43:09 +0300
commit21d73d4519e33a798c96e88fc1aebd818ba793d5 (patch)
tree56ddc03be569ec0c88c0fd78eccb26ef337aee4e /tests/UI
parent5bacc262097a124b30e3862097ec1d88e9ff7178 (diff)
added missing local config which is ignored by default
Diffstat (limited to 'tests/UI')
-rw-r--r--tests/UI/config.local.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/UI/config.local.js b/tests/UI/config.local.js
new file mode 100644
index 0000000000..9a98dbfd49
--- /dev/null
+++ b/tests/UI/config.local.js
@@ -0,0 +1,49 @@
+/*!
+ * Piwik - free/libre analytics platform
+ *
+ * UI tests config
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+/**
+ * The root Piwik URL to test against.
+ *
+ * exports.piwikUrl = "http://localhost/";
+ */
+
+/**
+ * Data for the $_SERVER variable in the setup/teardown PHP scripts. Should be the same as
+ * the values in your phpunit.xml file.
+ */
+ exports.phpServer = {
+ HTTP_HOST: 'apache.piwik',
+ REQUEST_URI: '/',
+ REMOTE_ADDR: '192.168.33.10'
+};
+
+
+/**
+ * The path to the PHP executable to execute when setting up & tearing down the database.
+ *
+ * exports.php = 'php';
+ */
+
+/**
+ * The directory that stores expected screenshots. Relative to the UI repo's root directoriy.
+ *
+ * exports.expectedScreenshotsDir = "./expected-ui-screenshots";
+ */
+
+/**
+ * The directory that stores processed screenshots. Relative to the UI repo's root directory.
+ *
+ * exports.processedScreenshotsDir = "./processed-ui-screenshots";
+ */
+
+/**
+ * The directory that stores screenshot diffs. Relative to the UI repo's root directory.
+ *
+ * exports.screenshotDiffDir = "./screenshot-diffs";
+ */ \ No newline at end of file