Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
njlie committed Jan 31, 2025
1 parent 45dcb5b commit 8bc7d7f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion packages/backend/jest.env.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
process.env.LOG_LEVEL = 'info'
process.env.LOG_LEVEL = 'silent'
process.env.INSTANCE_NAME = 'Rafiki'
process.env.KEY_ID = 'myKey'
process.env.OPEN_PAYMENTS_URL = 'http://127.0.0.1:3000'
Expand Down
2 changes: 0 additions & 2 deletions packages/backend/scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ set -e

psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
DROP DATABASE IF EXISTS TESTING;
DROP DATABASE IF EXISTS TENANT_TESTING;
CREATE DATABASE testing;
CREATE DATABASE tenant_testing;
CREATE DATABASE development;
EOSQL
1 change: 0 additions & 1 deletion packages/backend/src/graphql/resolvers/tenant.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ describe('Tenant Resolvers', (): void => {
${false} | ${'tenant'}
`('whoami query as $description', async ({ isOperator }): Promise<void> => {
const tenant = await createTenant(deps)
console.log('created tenant')
const client = isOperator
? appContainer.apolloClient
: createTenantedApolloClient(appContainer, tenant.id)
Expand Down

0 comments on commit 8bc7d7f

Please sign in to comment.