Skip to content

Commit

Permalink
api: in testing temporary disable warn.
Browse files Browse the repository at this point in the history
  • Loading branch information
narekhovhannisyan committed Oct 27, 2023
1 parent 6d173a8 commit a6d7010
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/api/Testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ export default class TestingAPI {
constructor(client: AxiosInstance, testInboxId?: number, accountId?: number) {
this.client = client;
if (!testInboxId) {
// eslint-disable-next-line no-console
console.warn(TEST_INBOX_ID_MISSING);
}
this.testInboxId = testInboxId;
if (!accountId) {
// eslint-disable-next-line no-console
console.warn(ACCOUNT_ID_MISSING);
}
this.accountId = accountId;
Expand Down

0 comments on commit a6d7010

Please sign in to comment.