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