📎 Remove debug console log

This commit is contained in:
Andrey Antukh 2025-12-22 11:14:37 +01:00
parent 4ae846641d
commit 6f8fe37240
1 changed files with 0 additions and 5 deletions

View File

@ -60,15 +60,10 @@ test("create context with two file and relation between", () => {
const fileId_1 = context.addFile({name: "sample 1"});
const fileId_2 = context.addFile({name: "sample 2"});
console.log(fileId_1, fileId_2);
context.addRelation(fileId_1, fileId_2);
const internalState = context.getInternalState();
// console.log(internalState.relations);
assert.ok(internalState.files[fileId_1]);
assert.ok(internalState.files[fileId_2]);
assert.equal(internalState.files[fileId_1].name, "sample 1");