Skip to content

Commit

Permalink
Increase timeout for acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
job13er committed Apr 27, 2017
1 parent 38d0bc9 commit 44d3c17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/acceptance/application-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import startApp from '../helpers/start-app'
describe('Acceptance: Application', function () {
let application

this.timeout(5000)

before(function () {
application = startApp()
server.loadFixtures()
Expand Down
3 changes: 3 additions & 0 deletions tests/acceptance/link-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ import {afterEach, beforeEach, describe, it} from 'mocha'
describe('Acceptance | link', function () {
let application

this.timeout(5000)

beforeEach(function () {
application = startApp()
})

afterEach(function () {
destroyApp(application)
application = null
})

describe('when rendering a link using spread options', function () {
Expand Down

0 comments on commit 44d3c17

Please sign in to comment.