Increase timeout for inAppPurchase test (#12403)
This commit is contained in:
parent
c50a460ce6
commit
f41cce96a3
1 changed files with 3 additions and 1 deletions
|
@ -4,9 +4,11 @@ const assert = require('assert')
|
||||||
|
|
||||||
const {remote} = require('electron')
|
const {remote} = require('electron')
|
||||||
|
|
||||||
describe('inAppPurchase module', () => {
|
describe('inAppPurchase module', function () {
|
||||||
if (process.platform !== 'darwin') return
|
if (process.platform !== 'darwin') return
|
||||||
|
|
||||||
|
this.timeout(3 * 60 * 1000)
|
||||||
|
|
||||||
const {inAppPurchase} = remote
|
const {inAppPurchase} = remote
|
||||||
|
|
||||||
it('canMakePayments() does not throw', () => {
|
it('canMakePayments() does not throw', () => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue