diff --git a/package.json b/package.json index 45910e85..27b023b9 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "dependencies": { "adm-zip": "^0.4.13", "archiver": "^1.1.0", - "ask-smapi-model": "1.9.1", + "ask-smapi-model": "1.9.2", "ask-smapi-sdk": "^1.2.0", "async": "^2.1.5", "aws-profile-handler": "2.0.3", diff --git a/test/integration/commands/smapi-commands-test.js b/test/integration/commands/smapi-commands-test.js index 1243b076..abe24ae9 100644 --- a/test/integration/commands/smapi-commands-test.js +++ b/test/integration/commands/smapi-commands-test.js @@ -1092,6 +1092,13 @@ parallel('smapi command test', () => { expect(result).be.an('object'); }); + it('| should list interaction model catalog versions', async () => { + const args = [subCmd, 'list-interaction-model-catalog-versions', '-c', catalogId]; + addCoveredCommand(args); + const result = await run(cmd, args, options); + expect(result).be.an('object'); + }); + after(() => { mockSmapiServer.kill(); mockLwaServer.kill();