parent
36bce39937
commit
99f4cf4cbd
@ -0,0 +1 @@ |
||||
<p>order-coupon-list works!</p> |
@ -0,0 +1,25 @@ |
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
||||
import { OrderCouponListComponent } from './order-coupon-list.component'; |
||||
|
||||
describe('OrderCouponListComponent', () => { |
||||
let component: OrderCouponListComponent; |
||||
let fixture: ComponentFixture<OrderCouponListComponent>; |
||||
|
||||
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
||||
declarations: [ OrderCouponListComponent ] |
||||
}) |
||||
.compileComponents(); |
||||
})); |
||||
|
||||
beforeEach(() => { |
||||
fixture = TestBed.createComponent(OrderCouponListComponent); |
||||
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
||||
}); |
||||
|
||||
it('should create', () => { |
||||
expect(component).toBeTruthy(); |
||||
}); |
||||
}); |
@ -0,0 +1,15 @@ |
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-order-coupon-list', |
||||
templateUrl: './order-coupon-list.component.html', |
||||
styleUrls: ['./order-coupon-list.component.scss'] |
||||
}) |
||||
export class OrderCouponListComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue