Add as group suffix the travis build number (#5072)

This commit is contained in:
Maurizio Vitale
2019-09-17 12:41:35 +01:00
committed by Eugenio Romano
parent 8ee3e25caf
commit b2966bc6f5
4 changed files with 11 additions and 2 deletions

View File

@@ -17,6 +17,7 @@
import { ApiService } from '../api.service';
import { StringUtil } from '../../utils/string.util';
import { browser } from 'protractor';
export class GroupIdentityService {
@@ -40,7 +41,7 @@ export class GroupIdentityService {
const path = '/groups';
const method = 'POST';
const queryParams = {}, postBody = {
name: groupName + 'TestGroup'
name: `${groupName}-${browser.params.groupSuffix}`
};
const data = await this.api.performIdentityOperation(path, method, queryParams, postBody);
return data;