Files
Nexum/src/app/chat/network/channel/text/text.spec.ts
2026-04-11 17:23:19 +02:00

23 lines
513 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { Text } from './text';
describe('Text', () => {
let component: Text;
let fixture: ComponentFixture<Text>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [Text],
}).compileComponents();
fixture = TestBed.createComponent(Text);
component = fixture.componentInstance;
await fixture.whenStable();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});