Skip to content

Commit

Permalink
SHIBUI-1549 Fixed test run
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Nov 5, 2019
1 parent 3b04015 commit f93de67
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { RouterStub, RouterLinkStubDirective } from '../../../../testing/router.
import { ActivatedRouteStub } from '../../../../testing/activated-route.stub';
import * as stubs from '../../../../testing/resolver.stub';
import { FileBackedHttpMetadataResolver } from '../../domain/entity';
import { InputDefaultsDirective } from '../../../shared/directive/input-defaults.directive';
import { MockI18nModule } from '../../../../testing/i18n.stub';
import { MockListValueService } from '../../../../testing/list-values.stub';
import { MockSharedModule } from '../../../../testing/shared.stub';
Expand Down Expand Up @@ -58,7 +57,6 @@ describe('Finished Form Component', () => {
declarations: [
FinishFormComponent,
RouterLinkStubDirective,
InputDefaultsDirective,
TestHostComponent
],
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,6 @@ describe('Resolver Reducer', () => {
Object.assign({}, initialState, expected)
);
});

it('should return state if the entityId is not found', () => {
let changes = { ...resolvers[1], serviceEnabled: true, id: '4' };
const action = new resolverActions.UpdateResolverSuccess({id: changes.id, changes});
const result = reducer({ ...snapshot }, action);

expect(result).toEqual(snapshot);
});
});

describe('Select Resolver', () => {
Expand Down

0 comments on commit f93de67

Please sign in to comment.