Commit a6f1bb41 authored by Kushal Pandya's avatar Kushal Pandya

Remove `fdescribe` and fix flaky test failure

parent 603acf6d
...@@ -9,8 +9,7 @@ import mountComponent from 'spec/helpers/vue_mount_component_helper'; ...@@ -9,8 +9,7 @@ import mountComponent from 'spec/helpers/vue_mount_component_helper';
import issueShowData from 'spec/issue_show/mock_data'; import issueShowData from 'spec/issue_show/mock_data';
import { props } from '../mock_data'; import { props } from '../mock_data';
// eslint-disable-next-line describe('EpicShowApp', () => {
fdescribe('EpicShowApp', () => {
let mock; let mock;
let vm; let vm;
let headerVm; let headerVm;
...@@ -18,7 +17,7 @@ fdescribe('EpicShowApp', () => { ...@@ -18,7 +17,7 @@ fdescribe('EpicShowApp', () => {
beforeEach((done) => { beforeEach((done) => {
mock = new MockAdapter(axios); mock = new MockAdapter(axios);
mock.onGet('/realtime_changes').reply(200, issueShowData.initialRequest); mock.onGet(`${gl.TEST_HOST}/realtime_changes`).reply(200, issueShowData.initialRequest);
const { const {
canUpdate, canUpdate,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment