We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27af482 commit 79bcfdfCopy full SHA for 79bcfdf
packages/app/integration-tests/browser-tests/browsers.test.js
@@ -1,11 +1,16 @@
1
const webdriver = require('selenium-webdriver');
2
3
+const hash = require('child_process')
4
+ .execSync('git rev-parse --short HEAD')
5
+ .toString();
6
+
7
function getCapabilities(browserInfo) {
8
return {
9
...browserInfo,
10
'browserstack.user': process.env.BROWSER_STACK_USER,
11
'browserstack.key': process.env.BROWSER_STACK_KEY,
12
'browserstack.local': 'true',
13
+ build: hash,
14
};
15
}
16
0 commit comments