Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
a6f1bb41
Commit
a6f1bb41
authored
Sep 25, 2018
by
Kushal Pandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove `fdescribe` and fix flaky test failure
parent
603acf6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
ee/spec/javascripts/epics/epic_show/components/epic_show_app_spec.js
...ascripts/epics/epic_show/components/epic_show_app_spec.js
+2
-3
No files found.
ee/spec/javascripts/epics/epic_show/components/epic_show_app_spec.js
View file @
a6f1bb41
...
...
@@ -9,8 +9,7 @@ import mountComponent from 'spec/helpers/vue_mount_component_helper';
import
issueShowData
from
'
spec/issue_show/mock_data
'
;
import
{
props
}
from
'
../mock_data
'
;
// eslint-disable-next-line
fdescribe
(
'
EpicShowApp
'
,
()
=>
{
describe
(
'
EpicShowApp
'
,
()
=>
{
let
mock
;
let
vm
;
let
headerVm
;
...
...
@@ -18,7 +17,7 @@ fdescribe('EpicShowApp', () => {
beforeEach
((
done
)
=>
{
mock
=
new
MockAdapter
(
axios
);
mock
.
onGet
(
'
/realtime_changes
'
).
reply
(
200
,
issueShowData
.
initialRequest
);
mock
.
onGet
(
`
${
gl
.
TEST_HOST
}
/realtime_changes`
).
reply
(
200
,
issueShowData
.
initialRequest
);
const
{
canUpdate
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment