Skip to content
Snippets Groups Projects
Select Git revision
  • b867af24b86498f69c73661a6fd3a92cff481526
  • master default
2 results

calculator.test.js

Blame
  • Forked from Nils Tesdal / DatabaseTest
    Source project has a limited visibility.
    post-thumbnail.component.spec.ts 676 B
    import { ComponentFixture, TestBed } from '@angular/core/testing';
    
    import { PostThumbnailComponent } from './post-thumbnail.component';
    
    describe('PostThumbnailComponent', () => {
      let component: PostThumbnailComponent;
      let fixture: ComponentFixture<PostThumbnailComponent>;
    
      beforeEach(async () => {
        await TestBed.configureTestingModule({
          declarations: [ PostThumbnailComponent ]
        })
        .compileComponents();
      });
    
      beforeEach(() => {
        fixture = TestBed.createComponent(PostThumbnailComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });