mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
Fixed unit test as never is not a possible option anymore
This commit is contained in:
@@ -301,7 +301,7 @@ describe('ShareDialogComponent', () => {
|
||||
|
||||
fixture.detectChanges();
|
||||
expect(fixture.debugElement.query(By.css('[data-automation-id="adf-content-share-expiration-field"]'))
|
||||
.componentInstance.floatLabel).toBe('never');
|
||||
.componentInstance.floatLabel).toBe('auto');
|
||||
});
|
||||
|
||||
it('should not display floating label for public link field', () => {
|
||||
@@ -312,7 +312,7 @@ describe('ShareDialogComponent', () => {
|
||||
|
||||
fixture.detectChanges();
|
||||
expect(fixture.debugElement.query(By.css('[data-automation-id="adf-content-share-public-link-field"]'))
|
||||
.componentInstance.floatLabel).toBe('never');
|
||||
.componentInstance.floatLabel).toBe('auto');
|
||||
});
|
||||
|
||||
describe('datetimepicker type', () => {
|
||||
|
||||
Reference in New Issue
Block a user