You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2020/01/04 17:13:33 UTC

[couchdb] 06/06: disable more JS tests

This is an automated email from the ASF dual-hosted git repository.

jan pushed a commit to branch multi/elixir-3
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit d2f27510e5c3fe46d517975b26c3c82a3d892e53
Author: Jan Lehnardt <ja...@apache.org>
AuthorDate: Sat Jan 4 18:13:02 2020 +0100

    disable more JS tests
---
 test/elixir/README.md                | 2 +-
 test/javascript/tests/auth_cache.js  | 1 +
 test/javascript/tests/cookie_auth.js | 1 +
 test/javascript/tests/users_db.js    | 1 +
 4 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/test/elixir/README.md b/test/elixir/README.md
index 7984bdc..ef95e5f 100644
--- a/test/elixir/README.md
+++ b/test/elixir/README.md
@@ -31,7 +31,7 @@ X means done, - means partially
   - [X] Port attachments.js
   - [X] Port attachments_multipart.js
   - [X] Port attachment_views.js
-  - [ ] Port auth_cache.js
+  - [X] Port auth_cache.js
   - [X] Port basics.js
   - [X] Port batch_save.js
   - [X] Port bulk_docs.js
diff --git a/test/javascript/tests/auth_cache.js b/test/javascript/tests/auth_cache.js
index 4d35d82..ca8f077 100644
--- a/test/javascript/tests/auth_cache.js
+++ b/test/javascript/tests/auth_cache.js
@@ -11,6 +11,7 @@
 // the License.
 
 couchTests.auth_cache = function(debug) {
+  return console.log('done in test/elixir/test/auth_cache_test.exs');
   if (debug) debugger;
 
   // Simple secret key generator
diff --git a/test/javascript/tests/cookie_auth.js b/test/javascript/tests/cookie_auth.js
index 5c8ce89..0dce6bd 100644
--- a/test/javascript/tests/cookie_auth.js
+++ b/test/javascript/tests/cookie_auth.js
@@ -12,6 +12,7 @@
 
 couchTests.cookie_auth = function(debug) {
   // This tests cookie-based authentication.
+  return console.log('done in test/elixir/test/cookie_auth_test.exs');
 
   var db_name = get_random_db_name();
   var db = new CouchDB(db_name, {"X-Couch-Full-Commit":"false"});
diff --git a/test/javascript/tests/users_db.js b/test/javascript/tests/users_db.js
index 20be325..b13adff 100644
--- a/test/javascript/tests/users_db.js
+++ b/test/javascript/tests/users_db.js
@@ -11,6 +11,7 @@
 // the License.
 
 couchTests.users_db = function(debug) {
+  return console.log('done in test/elixir/test/users_db_test.exs');
 
   // This tests the users db, especially validations
   // this should also test that you can log into the couch