From 059fd290d7464c44576df967fc65062795c46c05 Mon Sep 17 00:00:00 2001 From: vkovtun <viktor.kovtun@id.ethz.ch> Date: Tue, 5 Dec 2023 17:25:19 +0100 Subject: [PATCH] BIS-772: Writing JS tests. --- .../openbis-v3-api-test/html/test/test-import-export.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-import-export.js b/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-import-export.js index 45dc9ece705..825c2d389ae 100644 --- a/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-import-export.js +++ b/test-api-openbis-javascript/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/test/test-import-export.js @@ -83,9 +83,9 @@ define([ 'jquery', 'underscore', 'openbis', 'test/openbis-execute-operations', ' c.ok("Login"); return fAction(facade).then(function(result) { c.ok("Got results"); - var token = fCheck(facade, result); - if (token) { - token.then(function() { + var checkPromise = fCheck(facade, result); + if (checkPromise) { + checkPromise.then(function() { c.finish() }); } else { @@ -169,10 +169,8 @@ define([ 'jquery', 'underscore', 'openbis', 'test/openbis-execute-operations', ' } var fCheck = function(facade, result) { - c.ok("Got results: " + result); // Simple smoke test in this case. c.assertNotNull(result); - c.finish(); return null; } -- GitLab