Skip to content
Snippets Groups Projects
Select Git revision
  • 979d756c0c0f2fc5ed858f0a543e23377a9ba1fb
  • main default protected
2 results

qtm.R

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    drug-table.component.spec.ts 648 B
    import { ComponentFixture, TestBed } from '@angular/core/testing';
    
    import { DrugTableComponent } from './drug-table.component';
    
    describe('DrugTableComponent', () => {
      let component: DrugTableComponent;
      let fixture: ComponentFixture<DrugTableComponent>;
    
      beforeEach(async () => {
        await TestBed.configureTestingModule({
          declarations: [ DrugTableComponent ]
        })
        .compileComponents();
      });
    
      beforeEach(() => {
        fixture = TestBed.createComponent(DrugTableComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });