Skip to content
Snippets Groups Projects
notes-dialog.component.spec.ts 636 B
Newer Older
Paulina Nogal's avatar
Paulina Nogal committed
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { NotesDialogComponent } from './notes-dialog.component';

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

	beforeEach(async(() => {
		TestBed.configureTestingModule({
		declarations: [ NotesDialogComponent ]
	})
	.compileComponents();
	}));

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

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