File tree 5 files changed +0
-24
lines changed
5 files changed +0
-24
lines changed Original file line number Diff line number Diff line change 1
1
var should = require ( 'should' ) ;
2
2
var helper = require ( '../support/spec_helper' ) ;
3
3
var ORM = require ( '../../' ) ;
4
- var common = require ( '../common' ) ;
5
-
6
- if ( common . protocol ( ) == "mongodb" ) {
7
- process . exit ( 0 ) ;
8
- }
9
4
10
5
describe ( "hasMany extra properties" , function ( ) {
11
6
var db = null ;
Original file line number Diff line number Diff line change 1
1
var should = require ( 'should' ) ;
2
2
var helper = require ( '../support/spec_helper' ) ;
3
3
var ORM = require ( '../../' ) ;
4
- var common = require ( '../common' ) ;
5
-
6
- if ( common . protocol ( ) == "mongodb" ) {
7
- process . exit ( 0 ) ;
8
- }
9
4
10
5
describe ( "hasMany" , function ( ) {
11
6
this . timeout ( 4000 ) ;
Original file line number Diff line number Diff line change 1
1
var should = require ( 'should' ) ;
2
2
var helper = require ( '../support/spec_helper' ) ;
3
3
var ORM = require ( '../../' ) ;
4
- var common = require ( '../common' ) ;
5
-
6
- if ( common . protocol ( ) == "mongodb" ) {
7
- process . exit ( 0 ) ;
8
- }
9
4
10
5
describe ( "Model.aggregate()" , function ( ) {
11
6
var db = null ;
Original file line number Diff line number Diff line change 1
1
var should = require ( 'should' ) ;
2
2
var helper = require ( '../support/spec_helper' ) ;
3
3
var ORM = require ( '../../' ) ;
4
- var common = require ( '../common' ) ;
5
-
6
- if ( common . protocol ( ) == "mongodb" ) {
7
- process . exit ( 0 ) ;
8
- }
9
4
10
5
describe ( "LazyLoad properties" , function ( ) {
11
6
var db = null ;
Original file line number Diff line number Diff line change @@ -4,10 +4,6 @@ var helper = require('../support/spec_helper');
4
4
var ORM = require ( '../../' ) ;
5
5
var protocol = common . protocol ( ) . toLowerCase ( ) ;
6
6
7
- if ( protocol == "mongodb" ) {
8
- process . exit ( 0 ) ;
9
- }
10
-
11
7
// Round because different systems store floats in different
12
8
// ways, thereby introducing small errors.
13
9
function round ( num , points ) {
You can’t perform that action at this time.
0 commit comments