You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
667 B
23 lines
667 B
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ConfirmShareModalComponent } from './confirm-share-modal.component';
|
|
|
|
describe('ConfirmShareModalComponent', () => {
|
|
let component: ConfirmShareModalComponent;
|
|
let fixture: ComponentFixture<ConfirmShareModalComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [ConfirmShareModalComponent],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(ConfirmShareModalComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|