mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00

* Create android keystore on windows, output android version code * Add androidVersionCode output test * Move android keystore decode logic to TS
18 lines
440 B
TypeScript
18 lines
440 B
TypeScript
import Output from './output';
|
|
|
|
describe('Output', () => {
|
|
describe('setBuildVersion', () => {
|
|
it('does not throw', async () => {
|
|
await expect(Output.setBuildVersion('1.0.0')).resolves.not.toThrow();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('Output', () => {
|
|
describe('setAndroidVersionCode', () => {
|
|
it('does not throw', async () => {
|
|
await expect(Output.setAndroidVersionCode('1000')).resolves.not.toThrow();
|
|
});
|
|
});
|
|
});
|