@@ -211,12 +211,10 @@ def linuxTesting(file, env_name, network_name) {
211211
212212 sh " cp libindy/target/debug/libindy.so wrappers/java/lib"
213213 sh " cp libindy/target/debug/libindy.so wrappers/python"
214- sh " cp libindy/target/debug/libindy.so wrappers/nodejs"
215214 sh " cp libindy/target/debug/libindy.so cli"
216215
217216 stash includes : ' wrappers/java/lib/libindy.so' , name : " LibindyJavaSO${ env_name} "
218217 stash includes : ' wrappers/python/libindy.so' , name : " LibindyPythonSO${ env_name} "
219- stash includes : ' wrappers/nodejs/libindy.so' , name : " LibindyNodejsSO${ env_name} "
220218 stash includes : ' cli/libindy.so' , name : " LibindyCliSO${ env_name} "
221219
222220 parallel([
@@ -235,7 +233,6 @@ def linuxTesting(file, env_name, network_name) {
235233 },
236234 " ${ env_name} -java-test" : { linuxModuleTesting(file, env_name, network_name, this . &linuxJavaTesting) },
237235 " ${ env_name} -python-test" : { linuxModuleTesting(file, env_name, network_name, this . &linuxPythonTesting) },
238- " ${ env_name} -nodejs-test" : { linuxModuleTesting(file, env_name, network_name, this . &linuxNodejsTesting) },
239236 " ${ env_name} -cli-test" : { linuxModuleTesting(file, env_name, network_name, this . &linuxCLITesting) }
240237 ])
241238 }
@@ -292,21 +289,6 @@ def linuxPythonTesting(env_name, network_name, testEnv) {
292289 }
293290}
294291
295- def linuxNodejsTesting (env_name , network_name , testEnv ) {
296- unstash name : " LibindyNodejsSO${ env_name} "
297- dir(' wrappers/nodejs' ) {
298- testEnv. inside(" --network=${ network_name} " ) {
299- echo " ${ env_name} Libindy Test: Test nodejs wrapper"
300-
301- sh '''
302- npm run cp-include
303- npm install
304- LD_LIBRARY_PATH=./:${LD_LIBRARY_PATH} RUST_LOG=trace TEST_POOL_IP=10.0.0.2 npm test
305- '''
306- }
307- }
308- }
309-
310292def linuxCLITesting (env_name , network_name , testEnv ) {
311293 unstash name : " LibindyCliSO${ env_name} "
312294 dir(' cli' ) {
0 commit comments