We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24897e6 commit bd1ef23Copy full SHA for bd1ef23
single.js
@@ -3,6 +3,7 @@ const http = require('http');
3
4
const BROWSERSTACK_USERNAME = process.env.BROWSERSTACK_USERNAME || 'BROWSERSTACK_USERNAME';
5
const BROWSERSTACK_ACCESS_KEY = process.env.BROWSERSTACK_ACCESS_KEY || 'BROWSERSTACK_ACCESS_KEY';
6
+const buildName = process.env.BROWSERSTACK_BUILD_NAME || 'BROWSERSTACK_BUILD_NAME';
7
8
let HttpAgent = new http.Agent({
9
keepAlive: true,
@@ -12,7 +13,7 @@ let capabilities = {
12
13
browserName: 'Firefox',
14
name: 'Firefox Test',
15
os: 'Windows',
- build: 'Test Build 01',
16
+ build: buildName,
17
project: 'My Awesome App',
18
'browserstack.debug': true,
19
};
0 commit comments