Add initial implementation for multiple pages including confirmation, order summary, payment, product configuration, product, and user data pages
This commit is contained in:
23
src/app/confirmationpage/confirmationpage.spec.ts
Normal file
23
src/app/confirmationpage/confirmationpage.spec.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Confirmationpage } from './confirmationpage';
|
||||
|
||||
describe('Confirmationpage', () => {
|
||||
let component: Confirmationpage;
|
||||
let fixture: ComponentFixture<Confirmationpage>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Confirmationpage]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Confirmationpage);
|
||||
component = fixture.componentInstance;
|
||||
await fixture.whenStable();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user