This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
chatless/frontend/src/app/remove-member-dialog/remove-member-dialog.component.spec.ts
2021-06-01 22:31:27 +02:00

25 lines
712 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { RemoveMemberDialogComponent } from './remove-member-dialog.component';
describe('RemoveMemberDialogComponent', () => {
let component: RemoveMemberDialogComponent;
let fixture: ComponentFixture<RemoveMemberDialogComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ RemoveMemberDialogComponent ]
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(RemoveMemberDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});