Skip to content
Snippets Groups Projects
Select Git revision
  • 86a4f489e02b3caa3700ce9e18623d43dacddb56
  • main default protected
  • bugfix/fix-routing
  • bugfix/fix-html-and-css
  • bugfix/test
  • feature/add-signup-validation
  • feature/add-update-information-validator
  • feature/add-login-validator
  • feature/add-payment-validator
  • feature/add-admin-view
  • feature/add-orders-html
  • bugfix/fix-html-feedback
  • chore/refacto-code
  • feature/add-update-user-html
  • feature/add-product-html
  • feature/add-card-html
  • feature/add-sign-up-html
  • feature/add-login-html
  • bugfix/fix-pop-up
  • feature/add-routings-configuration
  • feature/add-cards-html
21 results

order.component.spec.ts

Blame
  • Forked from Shop Sphere / frontend
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    order.component.spec.ts 552 B
    import { ComponentFixture, TestBed } from '@angular/core/testing';
    
    import { OrderComponent } from './order.component';
    
    describe('OrderComponent', () => {
      let component: OrderComponent;
      let fixture: ComponentFixture<OrderComponent>;
    
      beforeEach(() => {
        TestBed.configureTestingModule({
          declarations: [OrderComponent]
        });
        fixture = TestBed.createComponent(OrderComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });