import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';

import { AddLanguageModalComponent } from './add-language-modal.component';

describe('AddLanguageModalComponent', () => {
  let component: AddLanguageModalComponent;
  let fixture: ComponentFixture<AddLanguageModalComponent>;

  beforeEach(waitForAsync(() => {
    TestBed.configureTestingModule({
      imports: [AddLanguageModalComponent],
    }).compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(AddLanguageModalComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
