We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4885b07 commit 7e4be9dCopy full SHA for 7e4be9d
1 file changed
test/index.js
@@ -53,11 +53,16 @@ fs.removeAsync(config.screenshotRoot)
53
if (branchInfo.branch !== 'master') {
54
return gitInfo.getCommonAncestor(branchInfo.sha, 'master')
55
.then(function(ancestor) {
56
+ console.log('diffing against', ancestor);
57
+
58
return startBuild({
59
head: branchInfo.sha,
60
base: ancestor,
61
numBrowsers: 1
- });
62
+ })
63
+ .then(function(build) {
64
+ console.log('build', build.build);
65
66
});
67
}
68
})
@@ -73,6 +78,8 @@ fs.removeAsync(config.screenshotRoot)
73
78
74
79
.catch(function(e) {
75
80
console.error(e);
81
+ console.error(e.message);
82
+ console.error(e.stack);
76
83
77
84
85
return;
0 commit comments