Skip to content

Commit

Permalink
HARMONY-1538: Add logging to debug test
Browse files Browse the repository at this point in the history
  • Loading branch information
indiejames committed Oct 13, 2023
1 parent e0bf674 commit a8e3106
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions services/service-runner/test/pull-worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,12 @@ describe('Pull Worker', async function () {
});

it('deletes the WORKING lock file', async function () {
console.log(`STARTING _pullAndDoWork`);
await _pullAndDoWork(false);
console.log(`COMPLETED _pullAndDoWork`);
console.log(`existsSync CHECK STARTED`);
expect(existsSync(`${env.workingDir}/WORKING`)).to.be.false;
console.log(`existsSync CHECK COMPLTED`);
});

it('does not throw', async function () {
Expand Down

0 comments on commit a8e3106

Please sign in to comment.