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:
authorThomas Steur <tsteur@users.noreply.github.com>2020-11-23 00:11:05 +0300
committerGitHub <noreply@github.com>2020-11-23 00:11:05 +0300
commit00fc009831ca2c3276949a78a3fbe18a4dcfd86c (patch)
treed6c5d4ff86a15a05746684da21149fea67085f13 /tests/javascript/index.php
parent311ec317a1e0e900f2b12b5593ca1e4a10b9c854 (diff)
Add disablePerformanceTracking method to methods to apply first (#16768)
Diffstat (limited to 'tests/javascript/index.php')
-rw-r--r--tests/javascript/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/javascript/index.php b/tests/javascript/index.php
index fdeac70c1f..4b2e2c8a68 100644
--- a/tests/javascript/index.php
+++ b/tests/javascript/index.php
@@ -2093,7 +2093,7 @@ function PiwikTest() {
});
test("API methods", function() {
- expect(118);
+ expect(119);
equal( typeof Piwik.addPlugin, 'function', 'addPlugin' );
equal( typeof Piwik.addPlugin, 'function', 'addTracker' );
@@ -2157,6 +2157,7 @@ function PiwikTest() {
equal( typeof tracker.setDownloadClasses, 'function', 'setDownloadClasses' );
equal( typeof tracker.setLinkClasses, 'function', 'setLinkClasses' );
equal( typeof tracker.setCampaignNameKey, 'function', 'setCampaignNameKey' );
+ equal( typeof tracker.disablePerformanceTracking, 'function', 'disablePerformanceTracking' );
equal( typeof tracker.setCampaignKeywordKey, 'function', 'setCampaignKeywordKey' );
equal( typeof tracker.discardHashTag, 'function', 'discardHashTag' );
equal( typeof tracker.setCookieNamePrefix, 'function', 'setCookieNamePrefix' );