Application de gestion de projets. Un projet doit affecté à un utilisateur et une société qui existent

base-nav-menu.component.spec.ts 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import { LayoutModule } from '@angular/cdk/layout';
  2. import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
  3. import { NoopAnimationsModule } from '@angular/platform-browser/animations';
  4. import { MatButtonModule } from '@angular/material/button';
  5. import { MatIconModule } from '@angular/material/icon';
  6. import { MatListModule } from '@angular/material/list';
  7. import { MatSidenavModule } from '@angular/material/sidenav';
  8. import { MatToolbarModule } from '@angular/material/toolbar';
  9. import { BaseNavMenuComponent } from './base-nav-menu.component';
  10. describe('BaseNavMenuComponent', () => {
  11. let component: BaseNavMenuComponent;
  12. let fixture: ComponentFixture<BaseNavMenuComponent>;
  13. beforeEach(waitForAsync(() => {
  14. TestBed.configureTestingModule({
  15. declarations: [BaseNavMenuComponent],
  16. imports: [
  17. NoopAnimationsModule,
  18. LayoutModule,
  19. MatButtonModule,
  20. MatIconModule,
  21. MatListModule,
  22. MatSidenavModule,
  23. MatToolbarModule,
  24. ]
  25. }).compileComponents();
  26. }));
  27. beforeEach(() => {
  28. fixture = TestBed.createComponent(BaseNavMenuComponent);
  29. component = fixture.componentInstance;
  30. fixture.detectChanges();
  31. });
  32. it('should compile', () => {
  33. expect(component).toBeTruthy();
  34. });
  35. });

Powered by TurnKey Linux.