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-12-02 06:55:52 +0300
committerGitHub <noreply@github.com>2020-12-02 06:55:52 +0300
commitadbe14c37cf5539978e0cbadf0fb54e3ec3eed4d (patch)
tree2a189e25401936beb8b1157aaebf5a2e06dd98d8 /tests/javascript/index.php
parent67f806616f2191ffa5e3e9afa125ebfd2e52a18f (diff)
Document setGenerationTime removal and add back the method (#16860)
* Document setGenerationTime removal and add back the method * rebuilt piwik.js Co-authored-by: diosmosis <diosmosis@users.noreply.github.com>
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 4b2e2c8a68..2f91e16423 100644
--- a/tests/javascript/index.php
+++ b/tests/javascript/index.php
@@ -2093,7 +2093,7 @@ function PiwikTest() {
});
test("API methods", function() {
- expect(119);
+ expect(120);
equal( typeof Piwik.addPlugin, 'function', 'addPlugin' );
equal( typeof Piwik.addPlugin, 'function', 'addTracker' );
@@ -2151,6 +2151,7 @@ function PiwikTest() {
equal( typeof tracker.setIgnoreClasses, 'function', 'setIgnoreClasses' );
equal( typeof tracker.setRequestMethod, 'function', 'setRequestMethod' );
equal( typeof tracker.setRequestContentType, 'function', 'setRequestContentType' );
+ equal( typeof tracker.setGenerationTimeMs, 'function', 'setGenerationTimeMs' );
equal( typeof tracker.setReferrerUrl, 'function', 'setReferrerUrl' );
equal( typeof tracker.setCustomUrl, 'function', 'setCustomUrl' );
equal( typeof tracker.setDocumentTitle, 'function', 'setDocumentTitle' );