drift-bottle.component.spec.ts 640 B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
  2. import { DriftBottleComponent } from './drift-bottle.component';
  3. describe('DriftBottleComponent', () => {
  4. let component: DriftBottleComponent;
  5. let fixture: ComponentFixture<DriftBottleComponent>;
  6. beforeEach(waitForAsync(() => {
  7. TestBed.configureTestingModule({
  8. imports: [DriftBottleComponent],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(DriftBottleComponent);
  11. component = fixture.componentInstance;
  12. fixture.detectChanges();
  13. }));
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });