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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
b4950efd
Commit
b4950efd
authored
Mar 09, 2018
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use toEqual instead of toBeFalsy/Truthy
parent
e091352b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
spec/javascripts/vue_mr_widget/mr_widget_options_spec.js
spec/javascripts/vue_mr_widget/mr_widget_options_spec.js
+3
-3
No files found.
spec/javascripts/vue_mr_widget/mr_widget_options_spec.js
View file @
b4950efd
...
...
@@ -86,21 +86,21 @@ describe('mrWidgetOptions', () => {
vm
.
mr
.
canRemoveSourceBranch
=
false
;
vm
.
mr
.
shouldRemoveSourceBranch
=
true
;
expect
(
vm
.
shouldRenderSourceBranchRemovalStatus
).
to
BeTruthy
(
);
expect
(
vm
.
shouldRenderSourceBranchRemovalStatus
).
to
Equal
(
true
);
});
it
(
'
should return false when can remove source branch and branch will be removed
'
,
()
=>
{
vm
.
mr
.
canRemoveSourceBranch
=
true
;
vm
.
mr
.
shouldRemoveSourceBranch
=
true
;
expect
(
vm
.
shouldRenderSourceBranchRemovalStatus
).
to
BeFalsy
(
);
expect
(
vm
.
shouldRenderSourceBranchRemovalStatus
).
to
Equal
(
false
);
});
it
(
'
should return false when cannot remove source branch and branch will not be removed
'
,
()
=>
{
vm
.
mr
.
canRemoveSourceBranch
=
false
;
vm
.
mr
.
shouldRemoveSourceBranch
=
false
;
expect
(
vm
.
shouldRenderSourceBranchRemovalStatus
).
to
BeFalsy
(
);
expect
(
vm
.
shouldRenderSourceBranchRemovalStatus
).
to
Equal
(
false
);
});
});
...
...
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