diff options
| author | Eric Eastwood <contact@ericeastwood.com> | 2017-03-22 21:39:09 -0500 |
|---|---|---|
| committer | Eric Eastwood <contact@ericeastwood.com> | 2017-03-28 10:59:54 -0500 |
| commit | 880b53e0b44909b255008ca32df62120cc435595 (patch) | |
| tree | 49b41e4eb0d183e91a2b7fe7eddaaf256e58e951 /spec/javascripts/vue_shared | |
| parent | 6460489babe3cd25358800804f6befc1bd242f22 (diff) | |
| download | gitlab-ce-880b53e0b44909b255008ca32df62120cc435595.tar.gz | |
Reset container width when switching to pipelines MR tab
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/29539
Diffstat (limited to 'spec/javascripts/vue_shared')
| -rw-r--r-- | spec/javascripts/vue_shared/components/pipelines_table_spec.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/javascripts/vue_shared/components/pipelines_table_spec.js b/spec/javascripts/vue_shared/components/pipelines_table_spec.js index b0b1df5a753..4d3ced944d7 100644 --- a/spec/javascripts/vue_shared/components/pipelines_table_spec.js +++ b/spec/javascripts/vue_shared/components/pipelines_table_spec.js @@ -21,6 +21,10 @@ describe('Pipelines Table', () => { }).$mount(); }); + afterEach(() => { + component.$destroy(); + }); + it('should render a table', () => { expect(component.$el).toEqual('TABLE'); }); |
