core tests
Some checks failed
Contract Testing / contract-tests (pull_request) Failing after 5m43s
Contract Testing / contract-snapshot (pull_request) Has been skipped

This commit is contained in:
2026-01-22 18:52:22 +01:00
parent 280d6fc199
commit 648dce2193
2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ describe('Entity', () => {
// Try to change id (should not work in TypeScript, but testing runtime)
// @ts-expect-error - Testing immutability
entity.id = 'new-id';
expect(() => entity.id = 'new-id').toThrow();
// ID should remain unchanged
expect(entity.id).toBe('entity-123');