@@ -147,7 +147,7 @@ describe('EmailApi', function () {
147147 expect ( surname . value ) . to . be . equal ( 'Cane' ) ;
148148 } ) ;
149149
150- it ( 'Parse business card images to VCard contact files #pipeline ' , async function ( ) {
150+ it ( 'Parse business card images to VCard contact files' , async function ( ) {
151151 const imageData = fs . readFileSync ( 'test/data/test_single_0001.png' ) ;
152152 const storageFileName = uuidv4 ( ) + '.png' ;
153153 // 1) Upload business card image to storage
@@ -177,7 +177,7 @@ describe('EmailApi', function () {
177177 expect ( contactProperties . body . internalProperties . length ) . to . be . at . least ( 3 ) ;
178178 } ) ;
179179
180- it ( 'Business card recognition without storage #pipeline ' , async function ( ) {
180+ it ( 'Business card recognition without storage' , async function ( ) {
181181 const imageData = fs . readFileSync ( 'test/data/test_single_0001.png' ) . toString ( 'base64' ) ;
182182 const result = await api . aiBcrParse ( new requests . AiBcrParseRequest (
183183 new models . AiBcrBase64Rq ( undefined , [ new models . AiBcrBase64Image ( true , imageData ) ] ) ) ) ;
@@ -257,7 +257,7 @@ describe('EmailApi', function () {
257257 expect ( exists . body . exists ) . to . be . ok ;
258258 } ) ;
259259
260- it ( 'Parse contact model from image #pipeline ' , async function ( ) {
260+ it ( 'Parse contact model from image' , async function ( ) {
261261 const imageData = fs . readFileSync ( 'test/data/test_single_0001.png' ) . toString ( 'base64' ) ;
262262 const result = await api . aiBcrParseModel ( new requests . AiBcrParseModelRequest (
263263 new models . AiBcrBase64Rq ( undefined , [ new models . AiBcrBase64Image ( true , imageData ) ] ) ) ) ;
@@ -476,4 +476,4 @@ describe('EmailApi', function () {
476476 result . setTime ( baseDate . getTime ( ) + addHours * hour ) ;
477477 return result ;
478478 }
479- } ) ;
479+ } ) ;
0 commit comments