Skip to content

Commit

Permalink
Fixed failing specs.
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Jan 12, 2018
1 parent b5d18a6 commit edb499a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -26,7 +26,7 @@ import 'codemirror/mode/javascript/javascript';
export class SetVariableDialogComponent implements OnChanges {

@Input() showVariableDialog = false;
@Input() variables = [];
@Input() variables = '';
@Output() toggleVariableDialog = new EventEmitter();
@Output() variablesChange = new EventEmitter();

Expand Down
2 changes: 1 addition & 1 deletion src/app/containers/window/window.component.spec.ts
Expand Up @@ -36,7 +36,7 @@ describe('WindowComponent', () => {
} },
{ provide: Store, useValue: {
subscribe: () => {},
select: () => [],
select: () => ({ select: () => {}}),
map: () => Observable.empty(),
dispatch: () => {}
} },
Expand Down

0 comments on commit edb499a

Please sign in to comment.