Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91966804
page-view.component.spec.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 16, 05:32
Size
904 B
Mime Type
text/x-java
Expires
Mon, Nov 18, 05:32 (2 d)
Engine
blob
Format
Raw Data
Handle
22355735
Attached To
rNIETZSCHEBETAAPP Nietzsche-Beta-App
page-view.component.spec.ts
View Options
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormsModule } from '@angular/forms';
import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
import { PageViewComponent } from './page-view.component';
import { PageViewModule } from './page-view.module';
describe('PageViewComponent', () => {
let component: PageViewComponent;
let fixture: ComponentFixture<PageViewComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
imports:[
FormsModule,
HttpClientTestingModule,
PageViewModule
],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(PageViewComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
Event Timeline
Log In to Comment