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