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:
Diffstat (limited to 'tests/UI/specs/UIIntegration_spec.js')
-rw-r--r--tests/UI/specs/UIIntegration_spec.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/UI/specs/UIIntegration_spec.js b/tests/UI/specs/UIIntegration_spec.js
index 0331bc514a..bc6d71dbad 100644
--- a/tests/UI/specs/UIIntegration_spec.js
+++ b/tests/UI/specs/UIIntegration_spec.js
@@ -436,14 +436,6 @@ describe("UIIntegrationTest", function () { // TODO: Rename to Piwik?
it('should load the Manage > Tracking Code admin page correctly', function (done) {
expect.screenshot('admin_manage_tracking_code').to.be.captureSelector('.pageWrap', function (page) {
page.load("?" + generalParams + "&module=CoreAdminHome&action=trackingCodeGenerator");
-
- // remove the port from URLs if any so UI tests won't fail if the port isn't 80
- page.evaluate(function () {
- $('textarea').each(function () {
- var val = $(this).val().replace(/localhost\:[0-9]+/g, 'localhost');
- $(this).val(val);
- });
- });
}, done);
});