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

Commit f067928

Browse files
committed
refactor(post-deploy): remove debug output
1 parent db45763 commit f067928

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

test/post-deploy.test.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,9 @@ describe('Post-Deploy Tests', () => {
3737
.request('https://adobeioruntime.net/')
3838
.get(`${getbaseurl()}/https://blogs.adobe.com/psirt/?feed=atom`)
3939
.then((response) => {
40-
console.log('URL:', response.req.path);
41-
console.log('JSON:', response.body);
42-
console.log('Response:', Object.keys(response));
40+
expect(response).to.be.json;
4341
expect(response.body).to.be.an('array').that.has.length(10);
4442
expect(response).to.have.status(200);
45-
expect(response).to.be.json;
4643
}).catch((e) => {
4744
throw e;
4845
});

0 commit comments

Comments
 (0)