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
dbb0287d
Commit
dbb0287d
authored
Feb 23, 2021
by
Alexander Turinske
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the test titles
parent
95139c06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/frontend/pages/shared/wikis/wiki_alert_spec.js
spec/frontend/pages/shared/wikis/wiki_alert_spec.js
+2
-2
No files found.
spec/frontend/pages/shared/wikis/wiki_alert_spec.js
View file @
dbb0287d
...
...
@@ -25,14 +25,14 @@ describe('WikiAlert', () => {
const
findGlSprintf
=
()
=>
wrapper
.
findComponent
(
GlSprintf
);
describe
(
'
Wiki Alert
'
,
()
=>
{
it
(
'
does show
an alert when there is an error
'
,
()
=>
{
it
(
'
shows
an alert when there is an error
'
,
()
=>
{
createWrapper
({
error
:
ERROR
});
expect
(
findGlAlert
().
exists
()).
toBe
(
true
);
expect
(
findGlSprintf
().
exists
()).
toBe
(
true
);
expect
(
findGlSprintf
().
attributes
(
'
message
'
)).
toBe
(
ERROR
);
});
it
(
'
does show
the link to the help path
'
,
()
=>
{
it
(
'
shows a
the link to the help path
'
,
()
=>
{
createWrapper
({
error
:
ERROR_WITH_LINK
},
{
GlAlert
,
GlSprintf
});
expect
(
findGlLink
().
attributes
(
'
href
'
)).
toBe
(
PATH
);
});
...
...
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