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
Boxiang Sun
gitlab-ce
Commits
4ce36f34
Commit
4ce36f34
authored
May 06, 2019
by
Winnie Hellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add failing test for hasQuickActions
parent
bc753559
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
spec/frontend/notes/stores/utils_spec.js
spec/frontend/notes/stores/utils_spec.js
+17
-0
No files found.
spec/frontend/notes/stores/utils_spec.js
0 → 100644
View file @
4ce36f34
import
{
hasQuickActions
}
from
'
~/notes/stores/utils
'
;
describe
(
'
hasQuickActions
'
,
()
=>
{
it
.
each
`
input | expected
${
'
some comment
'
}
|
${
false
}
${
'
/quickaction
'
}
|
${
true
}
${
'
some comment with
\n
/quickaction
'
}
|
${
true
}
`
(
'
returns $expected for $input
'
,
({
input
,
expected
})
=>
{
expect
(
hasQuickActions
(
input
)).
toBe
(
expected
);
});
it
(
'
is stateless
'
,
()
=>
{
expect
(
hasQuickActions
(
'
some comment
'
)).
toBe
(
hasQuickActions
(
'
some comment
'
));
expect
(
hasQuickActions
(
'
/quickaction
'
)).
toBe
(
hasQuickActions
(
'
/quickaction
'
));
});
});
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