Fixed test labels

This commit is contained in:
Giuseppe Digilio
2018-04-12 15:09:51 +02:00
parent 1db0217e7c
commit e0deb52ed7
2 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ import { Notification } from '../models/notification.model';
import { NotificationType } from '../models/notification-type';
import { uniqueId } from 'lodash';
describe('LoadingComponent (inline template)', () => {
describe('NotificationsBoardComponent', () => {
let comp: NotificationsBoardComponent;
let fixture: ComponentFixture<NotificationsBoardComponent>;
@@ -51,11 +51,11 @@ describe('LoadingComponent (inline template)', () => {
fixture.detectChanges();
}));
it('should create', () => {
it('should create component', () => {
expect(comp).toBeTruthy();
});
it('should be 2 notifications', () => {
it('should have two notifications', () => {
expect(comp.notifications.length).toBe(2);
});