import { ComponentFixture, TestBed } from '@angular/core/testing'; import { AdminNewCouponsComponent } from './admin-new-coupons.component'; describe('AdminNewCouponsComponent', () => { let component: AdminNewCouponsComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ AdminNewCouponsComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(AdminNewCouponsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });