mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
Add as group suffix the travis build number (#5072)
This commit is contained in:
committed by
Eugenio Romano
parent
8ee3e25caf
commit
b2966bc6f5
@@ -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;
|
||||
|
Reference in New Issue
Block a user