23 lines
513 B
TypeScript
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();
|
|
});
|
|
});
|