Skip to content

Commit e381d57

Browse files
save
1 parent c0222b9 commit e381d57

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

clang-format-10_macosx-amd64

2.27 MB
Binary file not shown.

features/step_definitions/matching.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ module.exports = function () {
2222
got.code = json.code;
2323
}
2424

25+
console.log(res.body);
26+
2527

2628
if (headers.has('status')) {
2729
got.status = json.status.toString();

features/step_definitions/requests.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ module.exports = function () {
2929
} catch(e) {
3030
return callback(e);
3131
}
32+
console.log(JSON.stringify(this.json));
3233
assert.equal(this.json.code, code);
3334
callback();
3435
});

features/step_definitions/trip.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ module.exports = function () {
3535
got.code = json.code;
3636
}
3737

38+
console.log(res.body);
39+
3840
if (headers.has('status')) {
3941
got.status = json.code;
4042
}

features/support/hooks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ module.exports = function () {
5151
.defer(rimraf, this.scenarioLogFile)
5252
.awaitAll(callback);
5353
// uncomment to get path to logfile
54-
// console.log(' Writing logging output to ' + this.scenarioLogFile);
54+
console.log(' Writing logging output to ' + this.scenarioLogFile);
5555
});
5656

5757
this.After((scenario, callback) => {

0 commit comments

Comments
 (0)