We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5cb2b9 commit bc87d6eCopy full SHA for bc87d6e
system-tests/lib/performance-reporter.js
@@ -14,7 +14,8 @@ class StatsdReporter {
14
15
console.log(chalk.green('Reporting to honeycomb'))
16
17
- let branch; let commitSha
+ let branch
18
+ let commitSha
19
20
this.honey = new Libhoney({
21
dataset: 'systemtest-performance',
@@ -24,8 +25,8 @@ class StatsdReporter {
24
25
commitInfo().then((commitInformation) => {
26
const ciInformation = ciProvider.commitParams() || {}
27
- this.branch = commitInformation.branch || ciInformation.branch
28
- this.commitSha = commitInformation.sha || ciInformation.sha
+ branch = commitInformation.branch || ciInformation.branch
29
+ commitSha = commitInformation.sha || ciInformation.sha
30
})
31
32
runner.on('test', (test) => {
0 commit comments