BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
1fc9262e
Commit
1fc9262e
authored
Jun 23, 2017
by
winh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle Promise rejections in mr_widget_pipeline_spec.js
parent
50fffb5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
24 deletions
+35
-24
mr_widget_pipeline_spec.js
...ripts/vue_mr_widget/components/mr_widget_pipeline_spec.js
+35
-24
No files found.
spec/javascripts/vue_mr_widget/components/mr_widget_pipeline_spec.js
View file @
1fc9262e
...
...
@@ -86,12 +86,15 @@ describe('MRWidgetPipeline', () => {
});
it
(
'should render message with spinner'
,
(
done
)
=>
{
Vue
.
nextTick
(()
=>
{
expect
(
el
.
querySelector
(
'.pipeline-id'
)).
toBe
(
null
);
expect
(
el
.
innerText
.
trim
()).
toBe
(
'Waiting for pipeline...'
);
expect
(
el
.
querySelectorAll
(
'i.fa.fa-spinner.fa-spin'
).
length
).
toBe
(
1
);
done
();
});
Vue
.
nextTick
()
.
then
(()
=>
{
expect
(
el
.
querySelector
(
'.pipeline-id'
)).
toBe
(
null
);
expect
(
el
.
innerText
.
trim
()).
toBe
(
'Waiting for pipeline...'
);
expect
(
el
.
querySelectorAll
(
'i.fa.fa-spinner.fa-spin'
).
length
).
toBe
(
1
);
done
();
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
});
...
...
@@ -112,39 +115,47 @@ describe('MRWidgetPipeline', () => {
it
(
'should list single stage'
,
(
done
)
=>
{
pipeline
.
details
.
stages
.
splice
(
0
,
1
);
Vue
.
nextTick
(()
=>
{
expect
(
el
.
querySelectorAll
(
'.stage-container button'
).
length
).
toEqual
(
1
);
expect
(
el
.
innerText
).
toContain
(
'with stage'
);
done
();
});
Vue
.
nextTick
()
.
then
(()
=>
{
expect
(
el
.
querySelectorAll
(
'.stage-container button'
).
length
).
toEqual
(
1
);
expect
(
el
.
innerText
).
toContain
(
'with stage'
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
it
(
'should not have stages when there is no stage'
,
(
done
)
=>
{
vm
.
mr
.
pipeline
.
details
.
stages
=
[];
Vue
.
nextTick
(()
=>
{
expect
(
el
.
querySelectorAll
(
'.stage-container button'
).
length
).
toEqual
(
0
);
done
();
});
Vue
.
nextTick
()
.
then
(()
=>
{
expect
(
el
.
querySelectorAll
(
'.stage-container button'
).
length
).
toEqual
(
0
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
it
(
'should not have coverage text when pipeline has no coverage info'
,
(
done
)
=>
{
vm
.
mr
.
pipeline
.
coverage
=
null
;
Vue
.
nextTick
(()
=>
{
expect
(
el
.
querySelector
(
'.js-mr-coverage'
)).
toEqual
(
null
);
done
();
});
Vue
.
nextTick
()
.
then
(()
=>
{
expect
(
el
.
querySelector
(
'.js-mr-coverage'
)).
toEqual
(
null
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
it
(
'should show CI error when there is a CI error'
,
(
done
)
=>
{
vm
.
mr
.
ciStatus
=
null
;
Vue
.
nextTick
(()
=>
{
expect
(
el
.
querySelectorAll
(
'.js-ci-error'
).
length
).
toEqual
(
1
);
expect
(
el
.
innerText
).
toContain
(
'Could not connect to the CI server'
);
done
();
});
Vue
.
nextTick
()
.
then
(()
=>
{
expect
(
el
.
querySelectorAll
(
'.js-ci-error'
).
length
).
toEqual
(
1
);
expect
(
el
.
innerText
).
toContain
(
'Could not connect to the CI server'
);
})
.
then
(
done
)
.
catch
(
done
.
fail
);
});
});
});
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