Skip to content

Commit

Permalink
load: send multiple page view events
Browse files Browse the repository at this point in the history
  • Loading branch information
gernest committed Feb 13, 2024
1 parent 563ffe7 commit c59822f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions load/testdata/page_view.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const session = createSession("http://vinceanalytics.com");

session.Send("pageview", "/");
const site = "https://vinceanalytics.com"
for (let index = 0; index < limit; index++) {
const session = createSession(site);
session.Send("pageview", "/");
}

0 comments on commit c59822f

Please sign in to comment.