Commit cef7c142 authored by Mark Harding's avatar Mark Harding

(fix): failing spec test

No related merge requests found
Pipeline #84935644 running with stages
......@@ -37,6 +37,8 @@ import { FeaturesService } from '../../services/features.service';
import { featuresServiceMock } from '../../../tests/features-service-mock.spec';
import { BlockListService } from '../../common/services/block-list.service';
import { ChannelMode } from '../../interfaces/entities';
import { AnalyticsService } from '../../services/analytics';
import { analyticsServiceMock } from '../../../tests/analytics-service-mock.spec';
describe('ChannelComponent', () => {
let comp: ChannelComponent;
......@@ -105,6 +107,7 @@ describe('ChannelComponent', () => {
},
{ provide: FeaturesService, useValue: featuresServiceMock },
{ provide: BlockListService, useValue: MockService(BlockListService) },
{ provide: AnalyticsService, useValue: analyticsServiceMock },
],
}).compileComponents(); // compile template and css
}));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment