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
041df93f
Commit
041df93f
authored
Mar 18, 2021
by
Dave Pisek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix config.silent set
parent
512e3653
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
spec/frontend/boards/components/issue_time_estimate_spec.js
spec/frontend/boards/components/issue_time_estimate_spec.js
+3
-3
No files found.
spec/frontend/boards/components/issue_time_estimate_spec.js
View file @
041df93f
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
{
config
as
vueConfig
}
from
'
vue
'
;
import
Vue
from
'
vue
'
;
import
IssueTimeEstimate
from
'
~/boards/components/issue_time_estimate.vue
'
;
describe
(
'
Issue Time Estimate component
'
,
()
=>
{
...
...
@@ -34,10 +34,10 @@ describe('Issue Time Estimate component', () => {
try
{
// This will raise props validating warning by Vue, silencing it
vueC
onfig
.
silent
=
true
;
Vue
.
c
onfig
.
silent
=
true
;
await
wrapper
.
setProps
({
estimate
:
'
Foo <script>alert("XSS")</script>
'
});
}
finally
{
vueC
onfig
.
silent
=
false
;
Vue
.
c
onfig
.
silent
=
false
;
}
expect
(
alertSpy
).
not
.
toHaveBeenCalled
();
...
...
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