Remove coment and doc
This commit is contained in:
parent
77a12bc821
commit
160611813e
@ -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)
|
|
@ -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 = environment.db_pubuser;
|
||||||
const PUBLIC_USER_PASSWORD = environment.db_pubuser_pass;
|
const PUBLIC_USER_PASSWORD = environment.db_pubuser_pass;
|
||||||
const TEST_DB = environment.db_base_name.replace('<%= user_id %>', TEST_USER_ID);
|
const TEST_DB = environment.db_base_name.replace('<%= user_id %>', TEST_USER_ID);
|
||||||
|
|
||||||
const PGHOST = environment.db_host;
|
const PGHOST = environment.db_host;
|
||||||
// const PGPORT = environment.db_port;
|
|
||||||
|
|
||||||
async function startRedis () {
|
async function startRedis () {
|
||||||
await exec(`redis-server --port ${REDIS_PORT} --loadmodule ${REDIS_CELL_PATH} --logfile ${__dirname}/redis-server.log --daemonize yes`);
|
await exec(`redis-server --port ${REDIS_PORT} --loadmodule ${REDIS_CELL_PATH} --logfile ${__dirname}/redis-server.log --daemonize yes`);
|
||||||
|
Loading…
Reference in New Issue
Block a user