Broker System for Supercredit
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

26 行
683B

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