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
0e3be014
Commit
0e3be014
authored
Dec 23, 2020
by
Vitaly Slobodin
Committed by
Illya Klymov
Dec 24, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply 1 suggestion(s) to 1 file(s)
parent
9b4f735e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
ee/spec/frontend/storage_counter/components/project_with_excess_storage_spec.js
...ge_counter/components/project_with_excess_storage_spec.js
+1
-1
spec/frontend/notes/components/discussion_notes_spec.js
spec/frontend/notes/components/discussion_notes_spec.js
+1
-1
spec/frontend/notes/components/notes_app_spec.js
spec/frontend/notes/components/notes_app_spec.js
+1
-1
No files found.
ee/spec/frontend/storage_counter/components/project_with_excess_storage_spec.js
View file @
0e3be014
...
...
@@ -23,7 +23,7 @@ const createComponent = (propsData = {}) => {
const
findTableRow
=
()
=>
wrapper
.
find
(
'
[data-testid="projectTableRow"]
'
);
const
findWarningIcon
=
()
=>
wrapper
.
findAll
(
GlIcon
).
wrappers
.
find
(
w
=>
w
.
props
(
'
name
'
)
===
'
status_warning
'
);
wrapper
.
findAll
(
GlIcon
).
wrappers
.
find
(
(
w
)
=>
w
.
props
(
'
name
'
)
===
'
status_warning
'
);
const
findProjectLink
=
()
=>
wrapper
.
find
(
GlLink
);
const
getWarningIconTooltipText
=
()
=>
getBinding
(
findWarningIcon
().
element
,
'
gl-tooltip
'
).
value
;
...
...
spec/frontend/notes/components/discussion_notes_spec.js
View file @
0e3be014
...
...
@@ -126,7 +126,7 @@ describe('DiscussionNotes', () => {
const
noteComponents
=
[
NoteableNote
,
SystemNote
,
PlaceholderNote
,
PlaceholderSystemNote
];
return
wrapper
.
findAll
(
'
.notes *
'
)
.
filter
(
w
=>
noteComponents
.
some
(
Component
=>
w
.
is
(
Component
)))
.
filter
(
(
w
)
=>
noteComponents
.
some
((
Component
)
=>
w
.
is
(
Component
)))
.
at
(
index
);
};
...
...
spec/frontend/notes/components/notes_app_spec.js
View file @
0e3be014
...
...
@@ -137,7 +137,7 @@ describe('note_app', () => {
});
it
(
'
should render form
'
,
()
=>
{
expect
(
wrapper
.
find
(
'
.js-main-target-form
'
).
element
.
tagName
).
to
Equal
(
'
FORM
'
);
expect
(
wrapper
.
find
(
'
.js-main-target-form
'
).
element
.
tagName
).
to
Be
(
'
FORM
'
);
expect
(
wrapper
.
find
(
'
.js-main-target-form textarea
'
).
attributes
(
'
placeholder
'
)).
toEqual
(
'
Write a comment or drag your files here…
'
,
);
...
...
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