We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1f1a2a commit 6531becCopy full SHA for 6531bec
1 file changed
packages/objectos/src/objects/sys-metadata.object.test.ts
@@ -5,11 +5,11 @@ import { SysMetadata } from './sys-metadata.object';
5
6
describe('SysMetadata Object', () => {
7
it('should have correct object name', () => {
8
- expect(SysMetadata.name).toBe('metadata');
+ expect(SysMetadata.name).toBe('sys_metadata');
9
});
10
11
- it('should have sys namespace', () => {
12
- expect(SysMetadata.namespace).toBe('sys');
+ it('should not have a separate namespace field', () => {
+ expect((SysMetadata as any).namespace).toBeUndefined();
13
14
15
it('should have required fields', () => {
0 commit comments