Broker System for Supercredit
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

26 lines
655B

  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { RewardsAllComponent } from './rewards-all.component';
  3. describe('RewardsAllComponent', () => {
  4. let component: RewardsAllComponent;
  5. let fixture: ComponentFixture<RewardsAllComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [ RewardsAllComponent ]
  9. })
  10. .compileComponents();
  11. });
  12. beforeEach(() => {
  13. fixture = TestBed.createComponent(RewardsAllComponent);
  14. component = fixture.componentInstance;
  15. fixture.detectChanges();
  16. });
  17. it('should create', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });