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