Add androidVersionCode output test

pull/478/head
Andrew Kahr 2022-11-22 04:54:19 -08:00
parent 78f5a2ef1a
commit 342c70cd28
1 changed files with 8 additions and 0 deletions

View File

@ -7,3 +7,11 @@ describe('Output', () => {
});
});
});
describe('Output', () => {
describe('setAndroidVersionCode', () => {
it('does not throw', async () => {
await expect(Output.setAndroidVersionCode('1000')).resolves.not.toThrow();
});
});
});