Co-authored-by: Valere <bill.carson@valrsoft.com>
This commit is contained in:
Timo K
2025-10-29 15:20:06 +01:00
parent 3de0bbcfc9
commit 62ef49ca05
2 changed files with 96 additions and 54 deletions

View File

@@ -0,0 +1,30 @@
/*
Copyright 2025 Element Creations Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
import {
test,
vi,
onTestFinished,
it,
describe,
expect,
beforeEach,
afterEach,
} from "vitest";
import { MatrixLivekitMerger } from "./matrixLivekitMerger";
import { ObservableScope } from "../ObservableScope";
let testScope: ObservableScope;
beforeEach(() => {
testScope = new ObservableScope();
});
afterEach(() => {
testScope.end();
});