зеркало из https://github.com/xamarin/appium.old.git
add version to --show-config so it is easily parseable
This commit is contained in:
Родитель
053a62bf59
Коммит
843c380fda
|
@ -30,7 +30,8 @@ async function getAppiumConfig () {
|
|||
let built = stat.mtime.getTime();
|
||||
let config = {
|
||||
'git-sha': await getGitRev(),
|
||||
'built': built
|
||||
'built': built,
|
||||
'version': APPIUM_VER,
|
||||
};
|
||||
return config;
|
||||
}
|
||||
|
|
|
@ -32,6 +32,7 @@ describe('Config', () => {
|
|||
config.should.be.an('object');
|
||||
should.exist(config['git-sha']);
|
||||
should.exist(config.built);
|
||||
should.exist(config.version);
|
||||
});
|
||||
});
|
||||
describe('showConfig', () => {
|
||||
|
|
Загрузка…
Ссылка в новой задаче