mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-06 06:00:16 -07:00
10 lines
230 B
JavaScript
10 lines
230 B
JavaScript
import Output from './output';
|
|
|
|
describe('Output', () => {
|
|
describe('setBuildVersion', () => {
|
|
it('does not throw', async () => {
|
|
await expect(Output.setBuildVersion('1.0.0')).resolves.not.toThrow();
|
|
});
|
|
});
|
|
});
|