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
0e9c092d
Commit
0e9c092d
authored
Mar 25, 2019
by
Winnie Hellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fail correct test for Promise
parent
0b68b17c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
spec/frontend/test_setup.js
spec/frontend/test_setup.js
+7
-4
No files found.
spec/frontend/test_setup.js
View file @
0e9c092d
...
...
@@ -5,10 +5,13 @@ import { initializeTestTimeout } from './helpers/timeout';
process
.
on
(
'
unhandledRejection
'
,
global
.
promiseRejectionHandler
);
// wait for pending setTimeout()s
afterEach
(()
=>
{
afterEach
(()
=>
// give Promises a bit more time so they fail the right test
new
Promise
(
setImmediate
).
then
(()
=>
{
// wait for pending setTimeout()s
jest
.
runAllTimers
();
});
}),
);
initializeTestTimeout
(
300
);
...
...
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