examples.waku.org/relay-angular-chat/src/app/messages/messages.component.spec.ts
2022-12-09 16:59:11 +05:30

24 lines
634 B
TypeScript

import { ComponentFixture, TestBed } from "@angular/core/testing";
import { MessagesComponent } from "./messages.component";
describe("MessagesComponent", () => {
let component: MessagesComponent;
let fixture: ComponentFixture<MessagesComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [MessagesComponent],
}).compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(MessagesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
xit("should create", () => {
expect(component).toBeTruthy();
});
});