Skip to content

Commit

Permalink
debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
diosmosis committed Oct 2, 2024
1 parent 99d4e48 commit 6fddb35
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/appscript/api.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ describe('api', () => {
await new Promise((resolve) => setTimeout(resolve, 2000));

try {
console.log(`requesting ${testUrl} with ${body}`);
const response = await axios.post(testUrl, body);
console.log('response: ' + typeof(response.data));
console.log(response.data);
if (Array.isArray(response.data) && response.data[0] === 1) {
return;
}
Expand Down

0 comments on commit 6fddb35

Please sign in to comment.