Commit 3e7a1f9b authored by Mark Harding's avatar Mark Harding

(fix): failing tests

1 merge request!764WIP: New activity posts with fixed heights
Pipeline #115543929 passed with stages
in 90 minutes and 26 seconds
......@@ -11,6 +11,7 @@ export type ActivityDisplayOptions = {
showToolbar: boolean;
showBoostMenuOptions: boolean;
showEditedTag: boolean;
showVisibiltyState: boolean;
fixedHeight: boolean;
};
......@@ -121,6 +122,7 @@ export class ActivityService {
showToolbar: true,
showBoostMenuOptions: false,
showEditedTag: false,
showVisibiltyState: false,
fixedHeight: false,
};
......
......@@ -117,6 +117,7 @@ describe('NewsfeedSingleComponent', () => {
sessionMock.user.admin = false;
featuresServiceMock.mock('sync-feeds', false);
featuresServiceMock.mock('activity-v2--single-page', true);
fixture.detectChanges();
......
Please register or to comment