Skip to content

Commit

Permalink
chore: remove console.log in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cbarton committed Aug 14, 2024
1 parent 5b5c9f7 commit 1a96a82
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions test/e2e/support/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,6 @@ function init ({ fixture = '', opts = {} } = {}) {
* @return {Promise}
*/
async function configureRecurly (opts = {}) {
console.log('configureRecurly', opts);

return await browser.executeAsync(function (opts, done) {
recurly.configure(opts);
recurly.ready(function () {
Expand Down
1 change: 0 additions & 1 deletion test/unit/paypal/strategy/complete.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ describe('CompleteStrategy', function () {
it('opens iframe with PayPal Complete start path', function () {
this.sandbox.spy(this.recurly, 'Frame');
this.paypal.start();
console.log({ calls: this.recurly.Frame.getCalls() });
assert(this.recurly.Frame.calledWith({ path: '/paypal_complete/start' }));
});
});
Expand Down

0 comments on commit 1a96a82

Please sign in to comment.