Skip to content

Commit

Permalink
fix: fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
kakha urigashvili committed May 28, 2020
1 parent bb0764e commit 8f11aea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
7 changes: 7 additions & 0 deletions test/integration/commands/smapi-commands-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 8f11aea

Please sign in to comment.