File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const supportsColor = require('supports-color');
55jasmine . DEFAULT_TIMEOUT_INTERVAL = process . env . PARSE_SERVER_TEST_TIMEOUT || 5000 ;
66
77jasmine . getEnv ( ) . clearReporters ( ) ;
8- jasmine . getEnv ( ) . addReporter ( new SpecReporter ( { colors : { enabled : supportsColor . stdout } } ) ) ;
8+ jasmine . getEnv ( ) . addReporter ( new SpecReporter ( { colors : { enabled : supportsColor . stdout } , spec : { displayDuration : true } } ) ) ;
99
1010global . on_db = ( db , callback , elseCallback ) => {
1111 if ( process . env . PARSE_SERVER_TEST_DB == db ) {
@@ -422,7 +422,7 @@ global.it_exclude_dbs = excluded => {
422422}
423423
424424global . it_only_db = db => {
425- if ( process . env . PARSE_SERVER_TEST_DB === db ) {
425+ if ( process . env . PARSE_SERVER_TEST_DB === db || ! process . env . PARSE_SERVER_TEST_DB && db == 'mongo' ) {
426426 return ( name , suite ) => {
427427 return it ( `[${ db } ] ${ name } ` , suite ) ;
428428 } ;
You can’t perform that action at this time.
0 commit comments