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 e97858ba8cfba7825464ae2a9a6a53358146ad14..cc9c772242667ecc218e1cff11776b487ebe7d4e 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
@@ -152,29 +152,29 @@ define([ 'jquery', 'underscore', 'openbis', 'test/openbis-execute-operations', '
         testAction(c, fAction, fCheck);
       });
 
-      QUnit.test("executeExport()", function(assert) {
-        var c = new common(assert, dtos);
-
-        var fAction = function(facade) {
-          var exportablePermId = new ExportablePermId(
-            ExportableKind.SAMPLE, new SamplePermId("200902091225616-1027"));
-          var exportData = new dtos.ExportData(exportablePermId,
-            new AllFields());
-
-          var exportOptions = new dtos.ExportOptions(
-            [ExportFormat.XLSX, ExportFormat.HTML, ExportFormat.PDF, ExportFormat.DATA],
-            XlsTextFormat.RICH, true, false);
-
-          return facade.executeExport(exportData, exportOptions);
-        }
-
-        var fCheck = function(facade, result) {
-          // Simple smoke test in this case.
-          c.assertNotNull(result);
-        }
-
-        testAction(c, fAction, fCheck);
-      });
+      // QUnit.test("executeExport()", function(assert) {
+      //   var c = new common(assert, dtos);
+      //
+      //   var fAction = function(facade) {
+      //     var exportablePermId = new ExportablePermId(
+      //       ExportableKind.SAMPLE, new SamplePermId("200902091225616-1027"));
+      //     var exportData = new dtos.ExportData(exportablePermId,
+      //       new AllFields());
+      //
+      //     var exportOptions = new dtos.ExportOptions(
+      //       [ExportFormat.XLSX, ExportFormat.HTML, ExportFormat.PDF, ExportFormat.DATA],
+      //       XlsTextFormat.RICH, true, false);
+      //
+      //     return facade.executeExport(exportData, exportOptions);
+      //   }
+      //
+      //   var fCheck = function(facade, result) {
+      //     // Simple smoke test in this case.
+      //     c.assertNotNull(result);
+      //   }
+      //
+      //   testAction(c, fAction, fCheck);
+      // });
     }
 
     return function() {