Skip to content

Commit

Permalink
chore(content): fix unit test for markdown renderer service
Browse files Browse the repository at this point in the history
  • Loading branch information
luishcastroc committed Jun 28, 2023
1 parent c1aaaea commit 1afffc3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { MarkdownContentRendererService } from './markdown-content-renderer.service';
import { TestBed } from '@angular/core/testing';
import { MarkedSetupService } from './marked-setup.service';

describe('MarkdownContentRendererService', () => {
function setup() {
TestBed.configureTestingModule({
providers: [MarkdownContentRendererService],
providers: [MarkdownContentRendererService, MarkedSetupService],
});
return { service: TestBed.inject(MarkdownContentRendererService) };
}
Expand Down

0 comments on commit 1afffc3

Please sign in to comment.