ngx-html-bridge
Version:
An Angular Template Parser to convert Angular templates into an array of standard, static HTML strings.
24 lines (18 loc) • 500 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { If } from './if';
describe('If', () => {
let component: If;
let fixture: ComponentFixture<If>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [If]
})
.compileComponents();
fixture = TestBed.createComponent(If);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});