@@ -121,26 +121,30 @@ describe('226. dbType01.js', function() {
121121 assert . match ( result . rows [ 0 ] [ 0 ] , / T y p = 2 L e n = 2 / ) ;
122122 } ) ;
123123
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 ( ) ;
125126 const bindVal = { BIND1 : { val : numInVal , type : oracledb . DB_TYPE_BINARY_FLOAT } } ;
126127 const result = await conn . execute ( SQL , bindVal ) ;
127128 assert . match ( result . rows [ 0 ] [ 1 ] , / T y p = 1 0 0 L e n = 4 / ) ;
128129 } ) ;
129130
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 ( ) ;
131133 const bindVal = { BIND1 : { val : numInVal , type : oracledb . DB_TYPE_BINARY_DOUBLE } } ;
132134 const result = await conn . execute ( SQL , bindVal ) ;
133135 assert . match ( result . rows [ 0 ] [ 1 ] , / T y p = 1 0 1 L e n = 8 / ) ;
134136 } ) ;
135137
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 ( ) ;
137140 const num = 1 / 0 ;
138141 const bindVal = { BIND1 : { val : num , type : oracledb . DB_TYPE_BINARY_FLOAT } } ;
139142 const result = await conn . execute ( SQL , bindVal ) ;
140143 assert . match ( result . rows [ 0 ] [ 1 ] , / T y p = 1 0 0 L e n = 4 / ) ;
141144 } ) ;
142145
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 ( ) ;
144148 const num = 1 / 0 ;
145149 const bindVal = { BIND1 : { val : num , type : oracledb . DB_TYPE_BINARY_DOUBLE } } ;
146150 const result = await conn . execute ( SQL , bindVal ) ;
0 commit comments