Skip to content

Commit

Permalink
Merge branch 'master' of github.com:alertlogic/aims-client
Browse files Browse the repository at this point in the history
  • Loading branch information
mcnielsen committed Apr 16, 2019
2 parents b6213b1 + cf608f3 commit 31325ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ module.exports = function (config) {
},
compilerOptions: {
lib: [
"es2015"
"es2015",
"dom"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@al/aims",
"version": "0.11.4",
"version": "0.11.5",
"license": "MIT",
"description": "A client for interacting with the Alert Logic AIMS Public API",
"author": {
Expand Down
2 changes: 2 additions & 0 deletions test/aims-client.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,7 @@ describe('AIMS Client Test Suite:', () => {
expect(stub.callCount).to.equal(1);
const payload = {
service_name: serviceName,
account_id: accountId,
path: `/users/${userId}/access_keys`,
data: `{"label": "${label}"}`,
};
Expand Down Expand Up @@ -602,6 +603,7 @@ describe('AIMS Client Test Suite:', () => {
const payload = {
service_name: serviceName,
account_id: accountId,
ttl: 60000,
path: `/users/${userId}/access_keys?out=full`,
};
assert.deepEqual(payload, stub.args[0][0]);
Expand Down

0 comments on commit 31325ff

Please sign in to comment.