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