Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: TT-2017 Remove blank lines
  • Loading branch information
VanessaIniguezG committed Apr 14, 2021
commit f128eef35dcce87a8594e5c8a4022a4a3b25d8f7
Original file line number Diff line number Diff line change
Expand Up @@ -439,11 +439,8 @@ describe('EntryFieldsComponent', () => {
update_last_entry_if_overlap: true
};
component.newData = mockEntry;

component.isFeatureToggleActivated();

const expected = { update_last_entry_if_overlap: true };

expect(component.newData.update_last_entry_if_overlap).toEqual(expected.update_last_entry_if_overlap);
});

Expand All @@ -456,11 +453,8 @@ describe('EntryFieldsComponent', () => {
update_last_entry_if_overlap: false
};
component.newData = mockEntry;

component.isFeatureToggleActivated();

const expected = { update_last_entry_if_overlap: false };

expect(component.newData.update_last_entry_if_overlap).toEqual(expected.update_last_entry_if_overlap);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import { formatDate } from '@angular/common';
import { getTimeEntriesDataSource } from '../../store/entry.selectors';
import { DATE_FORMAT } from 'src/environments/environment';
import { Subscription, Observable } from 'rxjs';

import { FeatureManagerService } from './../../../shared/feature-toggles/feature-toggle-manager.service';
import { AzureAdB2CService } from 'src/app/modules/login/services/azure.ad.b2c.service';

Expand Down