Skip to content

Commit

Permalink
chore: prevent some test suites from sending some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rmnbrd committed Dec 13, 2021
1 parent 31dda6f commit 18e12e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/javascripts/aircallPhone.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ describe('Aircall SDK Library', () => {
let ap;

beforeEach(() => {
ap = new AircallPhone();
ap = new AircallPhone({ debug: false });
ap.phoneWindow = {
origin: '*',
source: {
Expand Down Expand Up @@ -613,7 +613,7 @@ describe('Aircall SDK Library', () => {
describe('isLoggedIn function', () => {
let ap;

beforeEach(() => (ap = new AircallPhone()));
beforeEach(() => (ap = new AircallPhone({ debug: false })));

it('should exists', () => {
expect(ap.isLoggedIn).toBeDefined();
Expand Down

0 comments on commit 18e12e8

Please sign in to comment.