Skip to content

Commit

Permalink
fix: fix tests (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
BelKed authored Feb 21, 2025
1 parent 757f9f4 commit 53cbaaa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/unit/__snapshots__/queries.test.node.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ browser_urls = limit_events(browser_urls, 100);
browser_domains = merge_events_by_keys(browser_events, ["$domain"]);
browser_domains = sort_by_duration(browser_domains);
browser_domains = limit_events(browser_domains, 100);
browser_titles = merge_events_by_keys(browser_events, ["title"]);
browser_titles = sort_by_duration(browser_titles);
browser_titles = limit_events(browser_titles, 100);
browser_duration = sum_durations(browser_events);
RETURN = {
"window": {
Expand All @@ -39,6 +42,7 @@ RETURN = {
"browser": {
"domains": browser_domains,
"urls": browser_urls,
"titles": browser_titles,
"duration": browser_duration
}
};"
Expand Down

1 comment on commit 53cbaaa

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are screenshots of this commit:

Screenshots using aw-server v0.12.3b18 (click to expand)

Screenshots using aw-server-rust master (click to expand)

Screenshots using aw-server-rust v0.12.3b18 (click to expand)

Please sign in to comment.