UNPKG

generator-upendodnn

Version:

Scaffolds DNN extensions, including Modules (Webforms, SPA, and MVC), Persona Bar, Skin Object, Library, Scheduler, and Hotcakes Commerce projects (based on the generator built by Matt Rutledge).

24 lines (18 loc) 615 B
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ItemsComponent } from './items.component'; describe('ItemsComponent', () => { let component: ItemsComponent; let fixture: ComponentFixture<ItemsComponent>; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ ItemsComponent ] }) .compileComponents(); fixture = TestBed.createComponent(ItemsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });