Chatbot / src /app /chatbot /chatbot.component.spec.ts
SharanB's picture
Upload 20 files
08eaca3 verified
raw
history blame contribute delete
606 Bytes
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();
});
});