| 9 | describe('@Client', () => { |
| 10 | const pattern = { role: 'test' }; |
| 11 | class TestComponent { |
| 12 | @Client(pattern as any) |
| 13 | public static instance; |
| 14 | } |
| 15 | it(`should enhance property with metadata`, () => { |
| 16 | const isClient = Reflect.getOwnMetadata( |
| 17 | CLIENT_METADATA, |