File tree Expand file tree Collapse file tree 5 files changed +315
-319
lines changed
test/integration/basic/test Expand file tree Collapse file tree 5 files changed +315
-319
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,4 @@ before_install:
18
18
- export DISPLAY=:99.0
19
19
- sh -e /etc/init.d/xvfb start
20
20
- sleep 3
21
- script :
22
- - echo "No need to use npm test since it's done in the install section via 'npm prepublish'"
23
21
after_script : npm run coveralls
Original file line number Diff line number Diff line change 67
67
"http-status" : " 1.0.1" ,
68
68
"is-windows-bash" : " 1.0.3" ,
69
69
"json-loader" : " 0.5.4" ,
70
- "loader-utils" : " 1.0.1 " ,
70
+ "loader-utils" : " 1.0.2 " ,
71
71
"minimist" : " 1.2.0" ,
72
72
"mkdirp-then" : " 1.2.0" ,
73
73
"mv" : " 2.1.1" ,
119
119
},
120
120
"jest" : {
121
121
"testEnvironment" : " node" ,
122
- "testPathDirs " : [
122
+ "roots " : [
123
123
" test/"
124
124
]
125
125
}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import loaderUtils from 'loader-utils'
3
3
module . exports = function ( content , sourceMap ) {
4
4
this . cacheable ( )
5
5
6
- const query = loaderUtils . parseQuery ( this . query )
6
+ const query = loaderUtils . getOptions ( this )
7
7
const name = query . name || '[hash].[ext]'
8
8
const context = query . context || this . options . context
9
9
const regExp = query . regExp
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ context.app = nextServer({
22
22
quiet : true
23
23
} )
24
24
25
- jasmine . DEFAULT_TIMEOUT_INTERVAL = 40000
25
+ jasmine . DEFAULT_TIMEOUT_INTERVAL = 1000 * 60 * 2
26
26
27
27
describe ( 'Basic Features' , ( ) => {
28
28
beforeAll ( async ( ) => {
You can’t perform that action at this time.
0 commit comments