/** * @jest-environment-options {"requireTemplate": true} */ /// import plugin from '../src'; describe('plugin', () => { it('common', async () => { await plugin.common?.({} as any, {} as any); expect(true).toBeTruthy(); }); it('ios', async () => { await plugin.ios?.({} as any, {} as any); expect(true).toBeTruthy(); }); it('android', async () => { await plugin.android?.({} as any, {} as any); expect(true).toBeTruthy(); }); });