mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 00:46:16 -04:00
tests: More descriptive Sauce Labs name
This commit is contained in:
parent
2994ef3c3c
commit
85231cb774
3 changed files with 23 additions and 7 deletions
|
@ -27,9 +27,9 @@ process.on('exit', (code) => {
|
|||
const sauceTestWorker = async.queue((testSettings, callback) => {
|
||||
const browser = wd.promiseChainRemote(
|
||||
config.host, config.port, config.username, config.accessKey);
|
||||
const name =
|
||||
`${process.env.GIT_HASH} - ${testSettings.browserName} ` +
|
||||
`${testSettings.version}, ${testSettings.platform}`;
|
||||
const name = [process.env.GIT_HASH].concat(process.env.SAUCE_NAME || []).concat([
|
||||
`${testSettings.browserName} ${testSettings.version}, ${testSettings.platform}`,
|
||||
]).join(' - ');
|
||||
testSettings.name = name;
|
||||
testSettings.public = true;
|
||||
testSettings.build = process.env.GIT_HASH;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue