Skip to content

Commit

Permalink
🧪 test(app): fix app test
Browse files Browse the repository at this point in the history
  • Loading branch information
drackp2m committed Mar 17, 2024
1 parent 6695b1f commit 0105137
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions apps/app/src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,12 @@
import { TestBed } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { Apollo } from 'apollo-angular';

import { AppComponent } from './app.component';
import { GetUserInfoGQL } from './graphql/apollo-operations';
import { NxWelcomeComponent } from './nx-welcome.component';
import { CurrentUserStore } from './stores/current-user.store';

describe('AppComponent', () => {
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [
AppComponent,
NxWelcomeComponent,
RouterTestingModule,
CurrentUserStore,
GetUserInfoGQL,
Apollo,
],
imports: [AppComponent, NxWelcomeComponent],
}).compileComponents();
});

Expand Down

0 comments on commit 0105137

Please sign in to comment.