diff --git a/src/model/output.test.ts b/src/model/output.test.ts index c4fcb114..c2bf2fef 100644 --- a/src/model/output.test.ts +++ b/src/model/output.test.ts @@ -7,3 +7,11 @@ describe('Output', () => { }); }); }); + +describe('Output', () => { + describe('setAndroidVersionCode', () => { + it('does not throw', async () => { + await expect(Output.setAndroidVersionCode('1000')).resolves.not.toThrow(); + }); + }); +});