diff options
author | Phil Hughes <me@iamphill.com> | 2018-08-02 09:21:30 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-08-02 09:21:30 +0100 |
commit | 6112d8922ca37c1cf71f3a6e35ad2d57fa86dce1 (patch) | |
tree | 034f89a63b0745127c3915846c2929801c1c6f23 /spec/javascripts | |
parent | f199e672a8f5ef962ccf7e9508e347e29f9316f0 (diff) | |
download | gitlab-ce-6112d8922ca37c1cf71f3a6e35ad2d57fa86dce1.tar.gz |
more spec fixes
Diffstat (limited to 'spec/javascripts')
-rw-r--r-- | spec/javascripts/ide/stores/actions_spec.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/javascripts/ide/stores/actions_spec.js b/spec/javascripts/ide/stores/actions_spec.js index 4a83d85b7a2..d84f1717a61 100644 --- a/spec/javascripts/ide/stores/actions_spec.js +++ b/spec/javascripts/ide/stores/actions_spec.js @@ -469,7 +469,7 @@ describe('Multi-file store actions', () => { 'path', store.state, [{ type: types.DELETE_ENTRY, payload: 'path' }], - [{ type: 'burstUnusedSeal' }, { type: 'closeFile', payload: store.state.entries.path }], + [{ type: 'burstUnusedSeal' }], done, ); }); @@ -498,6 +498,7 @@ describe('Multi-file store actions', () => { it('renames all entries in tree', done => { store.state.entries.test = { + type: 'tree', tree: [ { path: 'tree-1', |