Update import on actions file to fix conflict when rewire plugin was added

This commit is contained in:
Filipa Lacerda 2018-04-24 17:38:48 +01:00
parent 1aa11de13e
commit e73b981246
No known key found for this signature in database
GPG key ID: 9CA3FDE4D1E2F1C8

View file

@ -1,4 +1,4 @@
import actions, { stageAllChanges, unstageAllChanges } from '~/ide/stores/actions';
import actions, { stageAllChanges, unstageAllChanges, toggleFileFinder } from '~/ide/stores/actions';
import store from '~/ide/stores';
import * as types from '~/ide/stores/mutation_types';
import router from '~/ide/ide_router';
@ -343,7 +343,7 @@ describe('Multi-file store actions', () => {
describe('toggleFileFinder', () => {
it('commits TOGGLE_FILE_FINDER', done => {
testAction(
actions.toggleFileFinder,
toggleFileFinder,
true,
null,
[{ type: 'TOGGLE_FILE_FINDER', payload: true }],