Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
fix(tests): Add timeout for sms (#1866) r=vladikoff
Browse files Browse the repository at this point in the history
  • Loading branch information
vbudhram authored and vladikoff committed Apr 27, 2017
1 parent b06033e commit 93bb872
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/remote/sms_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ const Client = require('../client')()
const config = require('../../config').getProperties()
const error = require('../../lib/error')

describe('remote sms (live nexmo)', () => {
describe('remote sms (live nexmo)', function() {
this.timeout(10000)
let server

before(() => {
Expand Down Expand Up @@ -40,7 +41,8 @@ describe('remote sms (live nexmo)', () => {
})
})

describe('remote sms (mocked nexmo)', () => {
describe('remote sms (mocked nexmo)', function() {
this.timeout(10000)
let server

before(() => {
Expand Down

0 comments on commit 93bb872

Please sign in to comment.