| 20 | interface TestInput extends WebField<TestInputProps> {} |
| 21 | |
| 22 | @component({ tagName: 'test-input' }) |
| 23 | @formField |
| 24 | @observer |
| 25 | class TestInput extends HTMLElement implements WebField<TestInputProps> {} |
| 26 | |
| 27 | it('should define a Custom Field Element', () => { |
| 28 | renderer.render(<TestInput />); |
nothing calls this directly
no test coverage detected