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
afd39a8d
Commit
afd39a8d
authored
Jul 18, 2019
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prefer an absolute path over cwd()
parent
5e0a288e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
spec/frontend/environment.js
spec/frontend/environment.js
+4
-3
No files found.
spec/frontend/environment.js
View file @
afd39a8d
/* eslint-disable import/no-commonjs */
const
path
=
require
(
'
path
'
);
const
{
ErrorWithStack
}
=
require
(
'
jest-util
'
);
const
JSDOMEnvironment
=
require
(
'
jest-environment-jsdom
'
);
const
ROOT_PATH
=
path
.
resolve
(
__dirname
,
'
../..
'
);
class
CustomEnvironment
extends
JSDOMEnvironment
{
constructor
(
config
,
context
)
{
super
(
config
,
context
);
...
...
@@ -35,9 +38,7 @@ class CustomEnvironment extends JSDOMEnvironment {
this
.
rejectedPromises
.
push
(
error
);
};
this
.
global
.
fixturesBasePath
=
`
${
process
.
cwd
()}
/
${
IS_EE
?
'
ee/
'
:
''
}
spec/javascripts/fixtures`
;
this
.
global
.
fixturesBasePath
=
`
${
ROOT_PATH
}
/
${
IS_EE
?
'
ee/
'
:
''
}
spec/javascripts/fixtures`
;
// Not yet supported by JSDOM: https://github.com/jsdom/jsdom/issues/317
this
.
global
.
document
.
createRange
=
()
=>
({
...
...
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