mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-15 06:23:09 +00:00
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { WakuService } from './waku.service';
|
|
|
|
describe('WakuService', () => {
|
|
let service: WakuService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(WakuService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|