fix(tests): fix issues w/ running auth-server tests locally

Because:
 - auth-server tests were not passing in local env with default/no configs

This commit:
 - add or pass env vars to get some tests running
This commit is contained in:
Barry Chen 2022-06-08 16:19:19 -05:00
Родитель 82f1382b50
Коммит 6938ace7ee
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 228DB2785954A0D0
6 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -8,6 +8,7 @@ rm -rf .nyc_output
if [ -z "$NODE_ENV" ]; then export NODE_ENV=dev; fi;
if [ -z "$CORS_ORIGIN" ]; then export CORS_ORIGIN="http://foo,http://bar"; fi;
if [ -z "$FIRESTORE_EMULATOR_HOST" ]; then export FIRESTORE_EMULATOR_HOST="localhost:9090"; fi;
DEFAULT_ARGS="--require esbuild-register --recursive --timeout 5000 --exit"

Просмотреть файл

@ -69,6 +69,7 @@ const DB = require('../../lib/db')(config, log, Token, UnblockCode);
const execOptions = {
cwd,
env: {
...process.env,
NODE_ENV: 'dev',
LOG_LEVEL: 'error',
AUTH_FIRESTORE_EMULATOR_HOST: 'localhost:9090',

Просмотреть файл

@ -16,6 +16,7 @@ const cwd = path.resolve(__dirname, ROOT_DIR);
const execOptions = {
cwd,
env: {
PATH: process.env.PATH || '',
NODE_ENV: 'dev',
LOG_LEVEL: 'error',
AUTH_FIRESTORE_EMULATOR_HOST: 'localhost:9090',

Просмотреть файл

@ -61,6 +61,7 @@ const DB = require('../../lib/db')(config, log, Token, UnblockCode);
const execOptions = {
cwd,
env: {
...process.env,
NODE_ENV: 'dev',
LOG_LEVEL: 'error',
AUTH_FIRESTORE_EMULATOR_HOST: 'localhost:9090',

Просмотреть файл

@ -16,6 +16,7 @@ const cwd = path.resolve(__dirname, ROOT_DIR);
const execOptions = {
cwd,
env: {
...process.env,
NODE_ENV: 'dev',
LOG_LEVEL: 'error',
AUTH_FIRESTORE_EMULATOR_HOST: 'localhost:9090',

Просмотреть файл

@ -18,6 +18,7 @@ const cwd = path.resolve(__dirname, ROOT_DIR);
const execOptions = {
cwd,
env: {
...process.env,
NODE_ENV: 'dev',
LOG_LEVEL: 'error',
AUTH_FIRESTORE_EMULATOR_HOST: 'localhost:9090',