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
d8f24afa
Commit
d8f24afa
authored
Sep 06, 2019
by
Winnie Hellmann
Committed by
Kushal Pandya
Sep 06, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move monitoring dashboard_spec to Jest
parent
913c87c6
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
190 additions
and
194 deletions
+190
-194
spec/frontend/environment.js
spec/frontend/environment.js
+1
-0
spec/frontend/monitoring/components/dashboard_spec.js
spec/frontend/monitoring/components/dashboard_spec.js
+186
-194
spec/frontend/test_setup.js
spec/frontend/test_setup.js
+3
-0
No files found.
spec/frontend/environment.js
View file @
d8f24afa
...
@@ -40,6 +40,7 @@ class CustomEnvironment extends JSDOMEnvironment {
...
@@ -40,6 +40,7 @@ class CustomEnvironment extends JSDOMEnvironment {
this
.
global
.
fixturesBasePath
=
`
${
ROOT_PATH
}
/tmp/tests/frontend/fixtures
${
IS_EE
?
'
-ee
'
:
''
}
`
;
this
.
global
.
fixturesBasePath
=
`
${
ROOT_PATH
}
/tmp/tests/frontend/fixtures
${
IS_EE
?
'
-ee
'
:
''
}
`
;
this
.
global
.
staticFixturesBasePath
=
`
${
ROOT_PATH
}
/spec/frontend/fixtures`
;
this
.
global
.
staticFixturesBasePath
=
`
${
ROOT_PATH
}
/spec/frontend/fixtures`
;
this
.
global
.
IS_EE
=
IS_EE
;
// Not yet supported by JSDOM: https://github.com/jsdom/jsdom/issues/317
// Not yet supported by JSDOM: https://github.com/jsdom/jsdom/issues/317
this
.
global
.
document
.
createRange
=
()
=>
({
this
.
global
.
document
.
createRange
=
()
=>
({
...
...
spec/
javascripts
/monitoring/components/dashboard_spec.js
→
spec/
frontend
/monitoring/components/dashboard_spec.js
View file @
d8f24afa
This diff is collapsed.
Click to expand it.
spec/frontend/test_setup.js
View file @
d8f24afa
...
@@ -73,6 +73,9 @@ expect.extend(customMatchers);
...
@@ -73,6 +73,9 @@ expect.extend(customMatchers);
// Tech debt issue TBD
// Tech debt issue TBD
testUtilsConfig
.
logModifiedComponents
=
false
;
testUtilsConfig
.
logModifiedComponents
=
false
;
// Stub for URL.createObjectURL
window
.
URL
.
createObjectURL
=
function
createObjectURL
()
{};
// Basic stub for MutationObserver
// Basic stub for MutationObserver
global
.
MutationObserver
=
()
=>
({
global
.
MutationObserver
=
()
=>
({
disconnect
:
()
=>
{},
disconnect
:
()
=>
{},
...
...
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