Alexis Hernandez
7 years ago
6 changed files with 48 additions and 1 deletions
@ -0,0 +1,3 @@ |
|||
<p> |
|||
block-details works! |
|||
</p> |
@ -0,0 +1,25 @@ |
|||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
|||
|
|||
import { BlockDetailsComponent } from './block-details.component'; |
|||
|
|||
describe('BlockDetailsComponent', () => { |
|||
let component: BlockDetailsComponent; |
|||
let fixture: ComponentFixture<BlockDetailsComponent>; |
|||
|
|||
beforeEach(async(() => { |
|||
TestBed.configureTestingModule({ |
|||
declarations: [ BlockDetailsComponent ] |
|||
}) |
|||
.compileComponents(); |
|||
})); |
|||
|
|||
beforeEach(() => { |
|||
fixture = TestBed.createComponent(BlockDetailsComponent); |
|||
component = fixture.componentInstance; |
|||
fixture.detectChanges(); |
|||
}); |
|||
|
|||
it('should create', () => { |
|||
expect(component).toBeTruthy(); |
|||
}); |
|||
}); |
@ -0,0 +1,15 @@ |
|||
import { Component, OnInit } from '@angular/core'; |
|||
|
|||
@Component({ |
|||
selector: 'app-block-details', |
|||
templateUrl: './block-details.component.html', |
|||
styleUrls: ['./block-details.component.css'] |
|||
}) |
|||
export class BlockDetailsComponent implements OnInit { |
|||
|
|||
constructor() { } |
|||
|
|||
ngOnInit() { |
|||
} |
|||
|
|||
} |
Loading…
Reference in new issue