File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
// Check if the test is being run without AVA cli
4
4
{
5
- /* eslint-disable import/order */
6
5
const path = require ( 'path' ) ;
7
6
const chalk = require ( 'chalk' ) ;
8
7
17
16
}
18
17
}
19
18
19
+ const currentlyUnhandled = require ( 'currently-unhandled' ) ( ) ;
20
+ const isObj = require ( 'is-obj' ) ;
21
+
20
22
const adapter = require ( './process-adapter' ) ;
21
23
const globals = require ( './globals' ) ;
22
24
23
25
const opts = adapter . opts ;
24
26
globals . options = opts ;
25
27
26
- /* eslint-enable import/order */
27
- const Bluebird = require ( 'bluebird' ) ;
28
- const currentlyUnhandled = require ( 'currently-unhandled' ) ( ) ;
29
- const isObj = require ( 'is-obj' ) ;
30
28
const serializeError = require ( './serialize-error' ) ;
31
29
32
- // Bluebird specific
33
- Bluebird . longStackTraces ( ) ;
34
-
35
30
( opts . require || [ ] ) . forEach ( require ) ;
36
31
37
32
adapter . installSourceMapSupport ( ) ;
You can’t perform that action at this time.
0 commit comments