Skip to content
This repository has been archived by the owner on Feb 25, 2022. It is now read-only.

Commit

Permalink
fix(deploy): use correct service name for wsk deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
trieloff committed Mar 24, 2020
1 parent 74de0a1 commit db45763
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"deploy-ci": "wsk-builder -v --deploy --test=/_status_check/healthcheck.json --pkgVersion=ci$CIRCLE_BUILD_NUM -l ci"
},
"wsk": {
"name": "helix-services-private/helix-data-embed@${version}",
"name": "helix-services-private/data-embed@${version}",
"linksPackage": "helix-services"
},
"repository": {
Expand Down
3 changes: 2 additions & 1 deletion test/post-deploy.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ describe('Post-Deploy Tests', () => {
.request('https://adobeioruntime.net/')
.get(`${getbaseurl()}/https://blogs.adobe.com/psirt/?feed=atom`)
.then((response) => {
console.log('URL:', response.req.uri);
console.log('URL:', response.req.path);
console.log('JSON:', response.body);
console.log('Response:', Object.keys(response));
expect(response.body).to.be.an('array').that.has.length(10);
expect(response).to.have.status(200);
expect(response).to.be.json;
}).catch((e) => {
Expand Down

0 comments on commit db45763

Please sign in to comment.