diff --git a/test/README.md b/test/README.md deleted file mode 100644 index ea52e44d..00000000 --- a/test/README.md +++ /dev/null @@ -1,21 +0,0 @@ -cartodb-sql-api tests ---------------------- -Tests require you create a test database and set some redis keys before, -you can execute prepare_db.sh script, it will create database, users -and redis stuff for you. Be sure postgres and redis are running. - -> cd test && ./prepare_db.sh - -Note that "make check" from top-level dir will try to do everything -needed to prepare & run the tests. - - -Acceptance tests (need ctrl-C to exit) --------------------------------------- -> mocha -u tdd test/acceptance/app.test.js -> mocha -u tdd test/acceptance/app.auth.test.js - - -Unit tests --------------------------------- -> mocha -u tdd test/unit/*.js (or run the tests individually) diff --git a/test/index.js b/test/index.js index 1a9591f1..8025d5e3 100644 --- a/test/index.js +++ b/test/index.js @@ -23,9 +23,7 @@ const TEST_PASSWORD = environment.db_user_pass.replace('<%= user_id %>', TEST_US const PUBLIC_USER = environment.db_pubuser; const PUBLIC_USER_PASSWORD = environment.db_pubuser_pass; const TEST_DB = environment.db_base_name.replace('<%= user_id %>', TEST_USER_ID); - const PGHOST = environment.db_host; -// const PGPORT = environment.db_port; async function startRedis () { await exec(`redis-server --port ${REDIS_PORT} --loadmodule ${REDIS_CELL_PATH} --logfile ${__dirname}/redis-server.log --daemonize yes`);