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