mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-08 14:51:32 +00:00
[ADF-5415] remove deprecated async method (#7171)
* remove deprecated async method * fix tests and code * test fixes * fix tests
This commit is contained in:
@@ -16,15 +16,14 @@
|
||||
*/
|
||||
|
||||
import { FullNamePipe } from './full-name.pipe';
|
||||
import { async } from '@angular/core/testing';
|
||||
|
||||
describe('FullNamePipe', () => {
|
||||
|
||||
let pipe: FullNamePipe;
|
||||
|
||||
beforeEach(async(() => {
|
||||
beforeEach(() => {
|
||||
pipe = new FullNamePipe();
|
||||
}));
|
||||
});
|
||||
|
||||
it('should return empty string when there is no name', () => {
|
||||
const user = {};
|
||||
|
Reference in New Issue
Block a user