remove not needed spaces (#5495)

* remove not usefull spaces

* increase timeout

* increase timeout

* fix
This commit is contained in:
Eugenio Romano
2020-02-23 17:00:16 +00:00
committed by GitHub
parent 9e0e2bdfa6
commit 2d0b571875
302 changed files with 378 additions and 1245 deletions
@@ -202,5 +202,4 @@ describe('ContentMetadataCardComponent', () => {
component.ngOnChanges({ displayAspect });
expect(component.expanded).toBeTruthy();
});
});
@@ -123,6 +123,5 @@ describe('ContentMetadataConfigFactory', () => {
expect(config).toEqual(jasmine.any(LayoutOrientedConfigService));
}));
});
});
});
});
@@ -126,8 +126,7 @@ describe('ContentMetaDataService', () => {
expect(classesApi.getClass).toHaveBeenCalledTimes(1);
expect(classesApi.getClass).toHaveBeenCalledWith('exif_exif');
});
});
});
describe('LayoutOriented preset', () => {
@@ -244,6 +243,5 @@ describe('ContentMetaDataService', () => {
expect(classesApi.getClass).toHaveBeenCalledTimes(1);
expect(classesApi.getClass).toHaveBeenCalledWith('cm_content');
});
});
});
});
@@ -215,5 +215,4 @@ describe('ContentNodeDialogService', () => {
});
});
});
});
@@ -113,8 +113,7 @@ describe('ContentNodeSelectorDialogComponent', () => {
expect(documentList).not.toBeNull('Document list should be shown');
expect(documentList.componentInstance.imageResolver).toBe(data.imageResolver);
});
});
});
describe('Cancel button', () => {
@@ -156,7 +155,5 @@ describe('ContentNodeSelectorDialogComponent', () => {
const actionButton = fixture.debugElement.query(By.css('[data-automation-id="content-node-selector-actions-choose"]'));
expect(actionButton.nativeElement.disabled).toBeFalsy();
});
});
});
});
@@ -162,5 +162,4 @@ describe('Confirm Dialog Component', () => {
expect(thirdOptionElement.nativeElement.innerText).toBe('YES ALL');
});
});
});
@@ -301,7 +301,5 @@ describe('FolderDialogComponent', () => {
component.submit();
});
});
});
});
});
@@ -61,5 +61,4 @@ describe('ContentColumnList', () => {
expect(result).toBeFalsy();
expect(documentList.actions.push).not.toHaveBeenCalled();
});
});
@@ -249,8 +249,7 @@ describe('ContentAction', () => {
expect(action.getSystemHandler('unknown', 'name')).toBeNull();
expect(folderActions.getHandler).not.toHaveBeenCalled();
expect(documentActions.getHandler).not.toHaveBeenCalled();
});
});
it('should wire model with custom event handler', async(() => {
const action = new ContentActionComponent(actionList, documentActions, folderActions);
@@ -66,5 +66,4 @@ describe('ContentColumnList', () => {
expect(result).toBeFalsy();
expect(documentList.actions.push).not.toHaveBeenCalled();
});
});
@@ -78,5 +78,4 @@ describe('ContentColumn', () => {
column = new ContentColumnComponent(null, logService);
expect(column.register()).toBeFalsy();
});
});
@@ -156,8 +156,7 @@ describe('DocumentList', () => {
documentList.executeContentAction(node, action);
expect(action.handler).toHaveBeenCalledWith(node, documentList, undefined);
});
});
it('should call action handler with node and permission', () => {
const node = new FileNode();
@@ -336,8 +335,7 @@ describe('DocumentList', () => {
expect(actions.length).toBe(1);
expect(actions[0].title).toEqual('FileAction');
expect(actions[0].disabled).toBe(true);
});
});
it('should not display hidden content actions', () => {
documentList.actions = [
@@ -421,8 +419,7 @@ describe('DocumentList', () => {
expect(actions.length).toBe(1);
expect(actions[0].title).toEqual('FileAction');
expect(actions[0].disabled).toBeFalsy();
});
});
it('should disable the action if there is no permission for the folder and disableWithNoPermission true', () => {
const documentMenu = new ContentActionModel({
@@ -442,8 +439,7 @@ describe('DocumentList', () => {
expect(actions.length).toBe(1);
expect(actions[0].title).toEqual('FolderAction');
expect(actions[0].disabled).toBe(true);
});
});
it('should not disable the action if there is the right permission for the file', () => {
const documentMenu = new ContentActionModel({
@@ -707,8 +703,7 @@ describe('DocumentList', () => {
documentList.onNodeClick(null);
expect(documentList.loadFolder).not.toHaveBeenCalled();
});
});
it('should display folder content only on folder node click', () => {
expect(documentList.navigate).toBe(true);
@@ -518,7 +518,5 @@ describe('ShareDataTableAdapter', () => {
expect(row.isDropTarget).toBeFalsy();
});
});
});
});
@@ -117,8 +117,7 @@ describe('DocumentActionsService', () => {
const file = new FileNode();
service.getHandler('delete')(file);
});
});
it('should call the error on the returned Observable if there are no permissions', (done) => {
spyOn(documentListService, 'deleteNode').and.returnValue(of(true));
@@ -230,6 +229,5 @@ describe('DocumentActionsService', () => {
const fileWithPermission: any = file;
fileWithPermission.entry.allowableOperations = [permission];
service.getHandler('delete')(fileWithPermission, target, permission);
});
});
});
@@ -103,8 +103,7 @@ describe('FolderActionsService', () => {
const folder = new FolderNode();
service.getHandler('delete')(folder);
});
});
it('should delete the folder node if there is the delete permission', () => {
spyOn(documentListService, 'deleteNode').and.callFake(() => {
@@ -164,8 +163,7 @@ describe('FolderActionsService', () => {
done();
}
});
});
});
it('should delete the folder node if there is the delete and others permission ', () => {
spyOn(documentListService, 'deleteNode').and.callFake(() => {
@@ -109,5 +109,4 @@ describe('NodeActionsService', () => {
expect(error).toBe('FAKE-KO');
});
}));
});
@@ -204,5 +204,4 @@ describe('AddPermissionPanelComponent', () => {
expect(element.querySelector('#result_option_0 .mat-list-text').innerHTML).not.toEqual(element.querySelector('#result_option_1 .mat-list-text').innerHTML);
});
}));
});
@@ -125,5 +125,4 @@ describe('AddPermissionComponent', () => {
addButton.click();
});
});
});
@@ -110,5 +110,4 @@ describe('InheritPermissionDirective', () => {
expect(spyUpdateNode).not.toHaveBeenCalled();
});
}));
});
@@ -187,7 +187,5 @@ describe('PermissionDisplayComponent', () => {
});
});
}));
});
});
});
@@ -117,6 +117,5 @@ describe('NodePermissionDialogService', () => {
done();
});
});
});
});
});
@@ -193,5 +193,4 @@ describe('NodePermissionService', () => {
expect(errorMessage).toBe('PERMISSION_MANAGER.ERROR.DUPLICATE-PERMISSION');
});
}));
});
@@ -115,5 +115,4 @@ describe('SearchCheckListComponent', () => {
expect(component.context.update).toHaveBeenCalled();
expect(component.context.queryFragments[component.id]).toBe('');
});
});
@@ -66,5 +66,4 @@ describe('SearchChipListComponent', () => {
expect(component.searchFilter.unselectFacetBucket).toHaveBeenCalledWith(selectedBucket1.field, selectedBucket1.bucket);
});
});
@@ -168,8 +168,7 @@ describe('SearchControlComponent', () => {
const attr = element.querySelector('#adf-control-input').getAttribute('autocomplete');
expect(attr).toBe('off');
}));
});
});
describe('autocomplete list', () => {
@@ -336,8 +335,7 @@ describe('SearchControlComponent', () => {
done();
});
});
});
});
describe('option click', () => {
@@ -151,5 +151,4 @@ describe('SearchDateRangeComponent', () => {
expect(context.update).toHaveBeenCalled();
});
});
});
@@ -196,5 +196,4 @@ describe('SearchFilterList', () => {
expect(list.filterText).toBe('');
});
});
@@ -127,5 +127,4 @@ describe('SearchSliderComponent', () => {
expect(context.queryFragments['slider']).toBe('');
expect(context.update).toHaveBeenCalled();
});
});
@@ -84,5 +84,4 @@ describe('SearchTextComponent', () => {
expect(component.value).toBe('');
expect(component.context.queryFragments[component.id]).toBe('');
});
});
@@ -40,5 +40,4 @@ describe('Search term validator', () => {
const control = new FormControl('a ._-?b', SearchTermValidator.minAlphanumericChars(3));
expect(control.valid).toBe(false);
});
});
@@ -475,8 +475,7 @@ describe('SearchQueryBuilder', () => {
expect(compiled.facetIntervals.intervals[1].label).toEqual(noSpacesLabel.configValue);
expect(compiled.facetIntervals.intervals[0].sets[0].label).toEqual(spacesLabelForSet.requestCompatibleValue);
});
});
it('should build query with sorting', () => {
const config: SearchConfiguration = {
@@ -619,5 +618,4 @@ describe('SearchQueryBuilder', () => {
builder.execute();
});
});
@@ -79,5 +79,4 @@ describe('TagService', () => {
});
});
});
});
@@ -64,5 +64,4 @@ describe('TreeViewService', () => {
done();
});
});
});
@@ -145,8 +145,7 @@ describe('UploadBase', () => {
done();
});
}));
});
});
describe('fileSize', () => {
@@ -251,8 +251,7 @@ describe('VersionListComponent', () => {
component.downloadVersion('1.0');
expect(spyOnDownload).not.toHaveBeenCalled();
});
});
});
describe('Version restoring', () => {
@@ -489,5 +488,4 @@ describe('VersionListComponent', () => {
});
});
});
});
@@ -134,6 +134,5 @@ describe('VersionManagerComponent', () => {
expect(component.uploadState).toEqual('open');
});
});
});
});
@@ -136,5 +136,4 @@ describe('ButtonsMenuComponent', () => {
});
}));
});
});
@@ -303,5 +303,4 @@ describe('CardViewDateItemComponent', () => {
fixture.whenStable().then(() => expect(component.property.value).toEqual(expectedDate.toDate()));
});
}));
});
@@ -171,6 +171,5 @@ describe('CardViewKeyValuePairsItemComponent', () => {
expect(cardViewUpdateService.update).not.toHaveBeenCalled();
});
}));
});
});
});
@@ -129,5 +129,4 @@ describe('CardViewMapItemComponent', () => {
value.click();
});
});
@@ -92,6 +92,5 @@ describe('CardViewSelectItemComponent', () => {
const label = fixture.debugElement.query(By.css('[data-automation-class="select-box"] .mat-form-field-label'));
expect(label).toBeNull();
});
});
});
});
+2 -5
View File
@@ -295,8 +295,7 @@ describe('CommentsComponent', () => {
component.add();
expect(emitSpy).toHaveBeenCalled();
});
});
});
describe('Add comment node', () => {
@@ -383,7 +382,5 @@ describe('CommentsComponent', () => {
component.add();
expect(emitSpy).toHaveBeenCalled();
});
});
});
});
@@ -31,5 +31,4 @@ describe('DataColumnListComponent', () => {
const component = fixture.debugElement.componentInstance;
expect(component).toBeTruthy();
});
});
@@ -39,5 +39,4 @@ describe('DataColumnListComponent', () => {
component.ngOnInit();
expect(component.srTitle).toBeTruthy();
});
});
@@ -634,8 +634,7 @@ describe('DataTable', () => {
dataTable.onRowClick(row, null);
}
, 240);
});
});
it('should emit double click if there are more than two single click in 250ms', (done) => {
@@ -655,8 +654,7 @@ describe('DataTable', () => {
dataTable.onRowClick(row, null);
}
, 240);
});
});
it('should emit single click if there are two single click in more than 250ms', (done) => {
@@ -803,8 +801,7 @@ describe('DataTable', () => {
direction: 'asc'
})
);
});
});
it('should indicate column that has sorting applied', () => {
dataTable.data = new ObjectDataTableAdapter(
@@ -92,8 +92,7 @@ describe('LocationCellComponent', () => {
expect(value).toBe('');
done();
});
});
});
it('should not setup cell when path is missing required properties', (done) => {
rowData.path = { someProp: '' };
@@ -295,7 +295,6 @@ describe('ObjectDataTableAdapter', () => {
})
);
});
});
describe('ObjectDataRow', () => {
@@ -364,5 +363,4 @@ describe('ObjectDataRow', () => {
expect(schema[0].title).toBe('id');
expect(schema[1].title).toBe('name');
});
});
+2 -5
View File
@@ -80,8 +80,7 @@ describe('LogoutDirective', () => {
expect(authService.logout).toHaveBeenCalled();
expect(router.navigate).toHaveBeenCalledWith(['/login']);
});
});
});
describe('redirectUri', () => {
@@ -125,8 +124,7 @@ describe('LogoutDirective', () => {
expect(authService.logout).toHaveBeenCalled();
expect(router.navigate).toHaveBeenCalledWith(['/myCustomUri']);
});
});
});
describe('enableRedirect', () => {
@@ -170,5 +168,4 @@ describe('LogoutDirective', () => {
expect(router.navigate).not.toHaveBeenCalled();
});
});
});
@@ -387,5 +387,4 @@ describe('NodeDeleteDirective', () => {
});
});
});
@@ -276,6 +276,5 @@ describe('NodeRestoreDirective', () => {
element.triggerEventHandler('click', null);
});
});
});
});
@@ -144,5 +144,4 @@ describe('FormFieldComponent', () => {
fixture.detectChanges();
expect(fixture.nativeElement.querySelector('#field-FAKE-TXT-WIDGET-container').hidden).toBeTruthy();
});
});
@@ -63,5 +63,4 @@ describe('TaskAttachmentList', () => {
expect(element.querySelectorAll('.adf-datatable-body > .adf-datatable-row').length).toBe(2);
});
}));
});
@@ -75,7 +75,6 @@ describe('AmountWidgetComponent', () => {
widget.ngOnInit();
expect(widget.placeholder).toBe('1234');
});
});
describe('AmountWidgetComponent settings', () => {
@@ -70,6 +70,5 @@ describe('CheckboxWidgetComponent', () => {
expect(element.querySelector('.adf-invalid')).not.toBeNull();
});
}));
});
});
});
@@ -38,5 +38,4 @@ describe('ContainerColumnModel', () => {
column.fields = [new FormFieldModel(new FormModel(), null)];
expect(column.hasFields()).toBeTruthy();
});
});
@@ -73,5 +73,4 @@ describe('ContainerWidgetComponentModel', () => {
}));
expect(container.isCollapsedByDefault()).toBeTruthy();
});
});
@@ -26,5 +26,4 @@ describe('ContainerModel', () => {
const model = new ContainerModel(new FormFieldModel(form));
expect(model.form).toBe(form);
});
});
@@ -197,8 +197,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
});
});
});
describe('NumberFieldValidator', () => {
@@ -262,8 +261,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
expect(field.validationSummary).not.toBeNull();
});
});
});
describe('MinLengthFieldValidator', () => {
@@ -315,8 +313,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
expect(field.validationSummary).not.toBeNull();
});
});
});
describe('MaxLengthFieldValidator', () => {
@@ -439,8 +436,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
expect(field.validationSummary).not.toBeNull();
});
});
});
describe('MaxValueFieldValidator', () => {
@@ -511,8 +507,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
expect(field.validationSummary).not.toBeNull();
});
});
});
describe('RegExFieldValidator', () => {
@@ -561,8 +556,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
});
});
});
describe('FixedValueFieldValidator', () => {
@@ -614,8 +608,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
});
});
});
describe('MaxDateTimeFieldValidator', () => {
@@ -741,8 +734,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
expect(field.validationSummary).not.toBeNull();
});
});
});
describe('MinDateTimeFieldValidator', () => {
@@ -868,8 +860,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
expect(field.validationSummary).not.toBeNull();
});
});
});
describe('MaxDateFieldValidator', () => {
@@ -962,8 +953,7 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
expect(field.validationSummary).not.toBeNull();
});
});
});
describe('MinDateFieldValidator', () => {
@@ -1056,6 +1046,5 @@ describe('FormFieldValidator', () => {
expect(validator.validate(field)).toBeFalsy();
expect(field.validationSummary).not.toBeNull();
});
});
});
});
@@ -41,5 +41,4 @@ describe('FormOutcomeModel', () => {
const model = new FormOutcomeModel(null, json);
expect(model.json).toBe(json);
});
});
@@ -37,5 +37,4 @@ describe('FormWidgetModel', () => {
const model = new FormWidgetModelMock(null, json);
expect(model.json).toBe(json);
});
});
@@ -70,5 +70,4 @@ describe('TabModel', () => {
const model = new TabModel(null, json);
expect(model.json).toBe(json);
});
});
@@ -308,8 +308,7 @@ describe('DynamicTableWidgetComponent', () => {
expect(widget.content.field.validate()).toBeTruthy();
expect(widget.isValid()).toBe(widget.content.field.isValid);
expect(widget.content.field.isValid).toBeTruthy();
});
});
it('should prepend default currency for amount columns', () => {
const row = <DynamicTableRow> {value: {key: '100'}};
@@ -37,5 +37,4 @@ describe('AmountEditorComponent', () => {
editor.onValueChanged(row, column, event);
expect(row.value[column.id]).toBe(value);
});
});
@@ -36,5 +36,4 @@ describe('BooleanEditorComponent', () => {
component.onValueChanged(row, column, event);
expect(row.value[column.id]).toBeTruthy();
});
});
@@ -143,7 +143,5 @@ describe('DateEditorComponent', () => {
const actual = row.value[column.id];
expect(actual).toBe('');
});
});
});
});
@@ -85,5 +85,4 @@ describe('DateTimeEditorComponent', () => {
expect(table.flushValue).toHaveBeenCalled();
});
});
@@ -301,7 +301,5 @@ describe('DropdownEditorComponent', () => {
}));
});
});
});
});
@@ -78,5 +78,4 @@ describe('RowEditorComponent', () => {
component.onSaveChanges();
expect(raised).toBeFalsy();
});
});
@@ -37,5 +37,4 @@ describe('TextEditorComponent', () => {
editor.onValueChanged(row, column, event);
expect(row.value[column.id]).toBe(value);
});
});
@@ -270,5 +270,4 @@ describe('PeopleWidgetComponent', () => {
});
});
});
});
@@ -156,6 +156,5 @@ describe('TabsWidgetComponent', () => {
});
tabWidgetComponent.tabChanged(null);
}));
});
});
});
@@ -411,7 +411,5 @@ describe('UploadWidgetComponent', () => {
});
});
});
});
});
@@ -54,8 +54,7 @@ describe('WidgetComponent', () => {
element.click();
});
});
});
it('should check field', () => {
expect(widget.hasField()).toBeFalsy();
@@ -103,5 +102,4 @@ describe('WidgetComponent', () => {
widget.field = new FormFieldModel(null, {required: true});
expect(widget.isRequired()).toBeTruthy();
});
});
@@ -128,5 +128,4 @@ describe('FormRenderingService', () => {
const type = resolver(null);
expect(type).toBe(JsonWidgetComponent);
});
});
+1 -2
View File
@@ -461,6 +461,5 @@ describe('Form service', () => {
});
}
});
});
});
});
@@ -93,5 +93,4 @@ describe('LoginDialogPanelComponent', () => {
fixture.detectChanges();
expect(component.isValid()).toBeTruthy();
});
});
@@ -498,8 +498,7 @@ describe('LoginComponent', () => {
loginWithCredentials('fake-username-ECM-access-error', 'fake-password');
}));
});
});
it('should trim the username value', () => {
usernameInput.value = 'username ';
@@ -541,8 +540,7 @@ describe('LoginComponent', () => {
});
loginWithCredentials('fake-username', 'fake-password');
});
});
it('should emit success event after the login has succeeded and discard password', async(() => {
spyOn(authService, 'login').and.returnValue(of({ type: 'type', ticket: 'ticket' }));
@@ -189,5 +189,4 @@ describe('NotificationService', () => {
expect(document.querySelector('snack-bar-container')).not.toBeNull();
});
});
-1
View File
@@ -87,5 +87,4 @@ describe('FileSizePipe', () => {
expect(pipe.transform(size, precision)).toBe(expectancy);
});
});
});
-1
View File
@@ -30,5 +30,4 @@ describe('FileTypePipe', () => {
it('should return file type from alt text', () => {
expect(pipe.transform(altText)).toBe('word');
});
});
+1 -2
View File
@@ -30,8 +30,7 @@ describe('FullNamePipe', () => {
beforeEach(() => {
pipe = TestBed.get(MultiValuePipe);
});
});
it('should add the separator when a list is provided', () => {
const values = ['cat', 'house', 'dog'];
@@ -197,5 +197,4 @@ describe('AuthGuardService ECM', () => {
expect(materialDialog.closeAll).toHaveBeenCalled();
});
});
@@ -181,5 +181,4 @@ describe('Auth Guard SSO role service', () => {
expect(authGuard.canActivate(route)).toBeFalsy();
expect(materialDialog.closeAll).toHaveBeenCalled();
});
});
@@ -501,5 +501,4 @@ describe('AuthenticationService', () => {
expect(authService.isALLProvider()).toBe(true);
});
});
});
@@ -134,8 +134,7 @@ describe('Comment ProcessService Service', () => {
}));
});
});
});
describe('Task comments', () => {
@@ -173,5 +173,4 @@ describe('Discovery Api Service', () => {
});
});
});
});
+2 -5
View File
@@ -90,8 +90,7 @@ describe('JwtHelperService', () => {
const result = jwtHelperService.hasRealmRoles(['role3', 'role2']);
expect(result).toBeFalsy();
});
});
});
describe('ClientRole ', () => {
@@ -138,7 +137,5 @@ describe('JwtHelperService', () => {
const result = jwtHelperService.hasRealmRolesForClientRole('fakeapp', ['role1', 'role2']);
expect(result).toBeFalsy();
});
});
});
});
+1 -2
View File
@@ -163,6 +163,5 @@ describe('PeopleProcessService', () => {
spyOn(apiService.getInstance(), 'getEcmUsername').and.returnValue('banana-user');
expect(service.isLocked(nodeOwnerAllowedLockWithActiveExpiration)).toBeTruthy();
});
});
});
});
@@ -59,5 +59,4 @@ describe('LoginDialogService', () => {
service.close();
expect(materialDialog.closeAll).toHaveBeenCalled();
});
});
-1
View File
@@ -105,5 +105,4 @@ describe('Sites service', () => {
}
});
});
});
@@ -55,5 +55,4 @@ describe('ThumbnailService', () => {
spyOn(apiService.contentApi, 'getDocumentThumbnailUrl').and.returnValue('/fake-thumbnail.png');
expect(service.getDocumentThumbnailUrl('some-id')).toContain('/fake-thumbnail.png');
});
});
@@ -54,5 +54,4 @@ describe('TranslateLoader', () => {
customLoader.registerProvider('login', 'path/login');
expect(customLoader.providerRegistered('login')).toBeTruthy();
});
});
@@ -98,5 +98,4 @@ describe('TranslationService', () => {
expect(translationService.instant('')).toEqual('');
expect(translationService.instant(undefined)).toEqual('');
});
});
@@ -89,8 +89,7 @@ describe('HostSettingsComponent', () => {
done();
});
});
});
});
describe('BPM ', () => {
@@ -143,8 +142,7 @@ describe('HostSettingsComponent', () => {
expect(ecmUrlInput).toEqual(null);
expect(bpmUrlInput).toBeDefined();
});
});
});
describe('ECM ', () => {
@@ -266,8 +264,7 @@ describe('HostSettingsComponent', () => {
ecmUrlInput.value = url;
bpmUrlInput.dispatchEvent(new Event('input'));
});
});
});
describe('OAUTH ', () => {
@@ -383,7 +380,5 @@ describe('HostSettingsComponent', () => {
clientIdInput.value = '';
clientIdInput.dispatchEvent(new Event('input'));
});
});
});
});
@@ -44,5 +44,4 @@ describe('SortingPickerComponent', () => {
});
component.toggleSortDirection();
});
});
@@ -308,8 +308,7 @@ describe('User info component', () => {
});
}));
});
});
});
describe('when user is logged on bpm', () => {
@@ -350,7 +350,5 @@ describe('Test Img viewer component ', () => {
});
});
});
});
});
});
@@ -64,5 +64,4 @@ describe('PdfThumbComponent', () => {
done();
});
});
});
@@ -186,8 +186,7 @@ describe('Test PdfViewer component', () => {
component.ngOnChanges({ 'blobFile': change });
}).toThrow(new Error('Attribute urlFile or blobFile is required'));
});
});
});
describe('View with url file', () => {
@@ -676,8 +675,7 @@ describe('Test PdfViewer component', () => {
expect(componentUrlTestComponent.pdfViewerComponent.currentScaleMode).toBe('auto');
}));
});
});
});
describe('Zoom customization', () => {
@@ -69,6 +69,5 @@ describe('Text View component', () => {
});
});
});
});
});
});

Some files were not shown because too many files have changed in this diff Show More