| 9 | it('exports functions from @loopback/openapi-v3', async () => { |
| 10 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 11 | class Test { |
| 12 | // Make sure the decorators are exported |
| 13 | @get('/test') |
| 14 | async test() { |
| 15 | return ''; |
| 16 | } |
| 17 | } |
| 18 | }); |
| 19 | }); |