OneQlik/src/app/dashboard/share-user/share-user.component.spec.ts

26 lines
654 B
TypeScript
Raw Normal View History

2022-04-20 11:15:19 +05:30
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ShareUserComponent } from './share-user.component';
describe('ShareUserComponent', () => {
let component: ShareUserComponent;
let fixture: ComponentFixture<ShareUserComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ShareUserComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ShareUserComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});