@@ -121,26 +121,30 @@ describe('226. dbType01.js', function() {
121
121
assert . match ( result . rows [ 0 ] [ 0 ] , / T y p = 2 L e n = 2 / ) ;
122
122
} ) ;
123
123
124
- ( dbConfig . test . isCmanTdm ? it : it . skip ) ( '226.10 DB_TYPE_BINARY_FLOAT' , async ( ) => {
124
+ it ( '226.10 DB_TYPE_BINARY_FLOAT' , async function ( ) {
125
+ if ( dbConfig . test . isCmanTdm ) this . skip ( ) ;
125
126
const bindVal = { BIND1 : { val : numInVal , type : oracledb . DB_TYPE_BINARY_FLOAT } } ;
126
127
const result = await conn . execute ( SQL , bindVal ) ;
127
128
assert . match ( result . rows [ 0 ] [ 1 ] , / T y p = 1 0 0 L e n = 4 / ) ;
128
129
} ) ;
129
130
130
- ( dbConfig . test . isCmanTdm ? it : it . skip ) ( '226.11 DB_TYPE_BINARY_DOUBLE' , async ( ) => {
131
+ it ( '226.11 DB_TYPE_BINARY_DOUBLE' , async function ( ) {
132
+ if ( dbConfig . test . isCmanTdm ) this . skip ( ) ;
131
133
const bindVal = { BIND1 : { val : numInVal , type : oracledb . DB_TYPE_BINARY_DOUBLE } } ;
132
134
const result = await conn . execute ( SQL , bindVal ) ;
133
135
assert . match ( result . rows [ 0 ] [ 1 ] , / T y p = 1 0 1 L e n = 8 / ) ;
134
136
} ) ;
135
137
136
- ( dbConfig . test . isCmanTdm ? it : it . skip ) ( '226.12 Infinity, DB_TYPE_BINARY_FLOAT' , async ( ) => {
138
+ it ( '226.12 Infinity, DB_TYPE_BINARY_FLOAT' , async function ( ) {
139
+ if ( dbConfig . test . isCmanTdm ) this . skip ( ) ;
137
140
const num = 1 / 0 ;
138
141
const bindVal = { BIND1 : { val : num , type : oracledb . DB_TYPE_BINARY_FLOAT } } ;
139
142
const result = await conn . execute ( SQL , bindVal ) ;
140
143
assert . match ( result . rows [ 0 ] [ 1 ] , / T y p = 1 0 0 L e n = 4 / ) ;
141
144
} ) ;
142
145
143
- ( dbConfig . test . isCmanTdm ? it : it . skip ) ( '226.13 Infinity, DB_TYPE_BINARY_DOUBLE' , async ( ) => {
146
+ it ( '226.13 Infinity, DB_TYPE_BINARY_DOUBLE' , async function ( ) {
147
+ if ( dbConfig . test . isCmanTdm ) this . skip ( ) ;
144
148
const num = 1 / 0 ;
145
149
const bindVal = { BIND1 : { val : num , type : oracledb . DB_TYPE_BINARY_DOUBLE } } ;
146
150
const result = await conn . execute ( SQL , bindVal ) ;
0 commit comments