Vendor app Client: Maiora
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

vendors.component.spec.ts 635 B

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