fix error with tests

This commit is contained in:
nick-delirium 2024-10-11 11:23:02 +02:00
parent 1cecf6f926
commit 0ddc9fcf7d
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
4 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
{
"name": "@openreplay/tracker-assist",
"description": "Tracker plugin for screen assistance through the WebRTC",
"version": "9.0.2",
"version": "9.0.2-beta.3",
"keywords": [
"WebRTC",
"assistance",

View file

@ -1 +1 @@
export const pkgVersion = "9.0.2";
export const pkgVersion = "9.0.2-beta.3";

View file

@ -1,7 +1,7 @@
{
"name": "@openreplay/tracker",
"description": "The OpenReplay tracker main package",
"version": "14.0.10",
"version": "14.0.10-beta.2",
"keywords": [
"logging",
"replay"

View file

@ -7,7 +7,7 @@ describe('Nodes', () => {
const mockCallback = jest.fn()
beforeEach(() => {
nodes = new Nodes(nodeId)
nodes = new Nodes(nodeId, false)
mockCallback.mockClear()
})