Skip to content

Commit

Permalink
[DE-1091] Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
maciej-nedza committed Dec 13, 2024
1 parent d448807 commit 03cfd20
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions e2e/src/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client, Environment } from 'advanced-billing-sdk';
import { Client } from 'advanced-billing-sdk';

export const CONFIG = {
SDK_KEY: process.env.SDK_KEY,
Expand All @@ -10,8 +10,7 @@ export const CONFIG = {
const defaultOptions = {
timeout: 0,
domain: CONFIG.DOMAIN,
environment: Environment.Production,
subdomain: CONFIG.SUBDOMAIN,
site: CONFIG.SUBDOMAIN,
basicAuthCredentials: {
username: CONFIG.SDK_KEY || '',
password: CONFIG.PASSWORD || '',
Expand All @@ -27,8 +26,7 @@ export function createInvalidClient() {
return createClient({
timeout: 0,
domain: CONFIG.DOMAIN,
environment: Environment.Production,
subdomain: CONFIG.SUBDOMAIN,
site: CONFIG.SUBDOMAIN,
basicAuthCredentials: {
username: 'invalidKey' || '',
password: CONFIG.PASSWORD || '',
Expand Down

0 comments on commit 03cfd20

Please sign in to comment.