Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into papi-slice-1
Browse files Browse the repository at this point in the history
  • Loading branch information
bitdivine committed Oct 9, 2024
2 parents 213a86d + 91809ca commit 7d1639a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ VITE_ALCHEMY_API_KEY=
VITE_WALLET_CONNECT_PROJECT_ID=
VITE_OISY_URL=https://oisy.com
VITE_COINGECKO_API_URL=https://api.coingecko.com/api/v3
VITE_COINGECKO_API_KEY=
VITE_BLOCKCHAIN_API_URL=https://blockchain.info
VITE_EXCHANGE_DISABLED=true
VITE_COINGECKO_API_KEY=
VITE_JUNO_SATELLITE_ID=
VITE_JUNO_ORBITER_ID=
VITE_POUH_ENABLED=false
VITE_AUTH_ALTERNATIVE_ORIGINS=
VITE_AUTH_DERIVATION_ORIGIN=
VITE_ONRAMPER_API_KEY_DEV=pk_test_
VITE_ONRAMPER_API_KEY_PROD=pk_prod_
VITE_NETWORK_BITCOIN_ENABLED=false
3 changes: 3 additions & 0 deletions src/frontend/src/tests/lib/actors/query.ic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import { tick } from 'svelte';
describe('query.ic', () => {
const identity = new AnonymousIdentity();

// we mock console.error just to avoid unnecessary logs while running the tests
vi.spyOn(console, 'error').mockImplementation(() => undefined);

beforeEach(() => {
vi.clearAllMocks();
});
Expand Down

0 comments on commit 7d1639a

Please sign in to comment.