Skip to content

Commit

Permalink
[DEBUG] log failing test response body
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerkesni committed Jan 27, 2025
1 parent fb35d2d commit a4e8c1d
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,16 @@ describe('Ingestion pause resume', function () {
),
], done));

it.skip(
it(
'should get 404 error in data for status of non-existent location',
done => backbeatAPIUtils.getIngestionStatus(
'non-existent-location',
(err, data) => {
assert.ifError(err);
assert.strictEqual(data.code, 404);
assert.strictEqual(data.RouteNotFound, true);
// eslint-disable-next-line no-console
console.dir(data);
// assert.strictEqual(data.code, 404);
// assert.strictEqual(data.RouteNotFound, true);
return done();
},
),
Expand Down

0 comments on commit a4e8c1d

Please sign in to comment.