Skip to content
Snippets Groups Projects
Select Git revision
  • c50d05b4b290688f9b9dcfd3dbbb534a526e401f
  • main default protected
  • reserve-item-timeframe
  • fix-userprofile-image
  • filter
  • my_communities
  • deploy protected
7 results

SearchItemListView.vue

Blame
  • app.component.spec.ts 886 B
    import { HttpClientTestingModule } from '@angular/common/http/testing';
    import { TestBed } from '@angular/core/testing';
    import { RouterTestingModule } from '@angular/router/testing';
    import { AppComponent } from './app.component';
    
    describe('AppComponent', () => {
      beforeEach(async () => {
        await TestBed.configureTestingModule({
          imports: [
            RouterTestingModule,
            HttpClientTestingModule
          ],
          declarations: [
            AppComponent
          ],
        }).compileComponents();
      });
    
      it('should create the app', () => {
        const fixture = TestBed.createComponent(AppComponent);
        const app = fixture.componentInstance;
        expect(app).toBeTruthy();
      });
    
      it(`should have as title 'client'`, () => {
        const fixture = TestBed.createComponent(AppComponent);
        const app = fixture.componentInstance;
        expect(app.title).toEqual('client');
      });
    });