freeze notebook and notebook cell API objects

This commit is contained in:
Johannes
2022-03-21 15:46:05 +01:00
parent cb6b7dc8d9
commit 5065a096c1
2 changed files with 6 additions and 4 deletions

View File

@@ -490,7 +490,7 @@ suite('NotebookCell#Document', function () {
assert.ok(Object.isFrozen(event));
assert.ok(Object.isFrozen(event.cellChanges));
assert.ok(Object.isFrozen(event.contentChanges));
assert.ok(!Object.isFrozen(event.notebook));
assert.ok(Object.isFrozen(event.notebook));
assert.ok(!Object.isFrozen(event.metadata));
});
});