describe('CompileHtml', () => {
let service: CompileService;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [
],
declarations: [
CompileAttribute
],
providers: [
CompileService
],
});
});
beforeEach(inject([CompileService], (_service: CompileService) => {
service = _service;
}));
it ('CompileService', (/*done*/) => {