Chatbot / src /app /couchdb.service.spec.ts
SharanB's picture
Upload 20 files
08eaca3 verified
raw
history blame contribute delete
362 Bytes
import { TestBed } from '@angular/core/testing';
import { CouchdbService } from './couchdb.service';
describe('CouchdbService', () => {
let service: CouchdbService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(CouchdbService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});