Skip to content

Commit

Permalink
fix broken desktop gui missing specs util
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-mann committed Apr 16, 2018
1 parent 8f41426 commit fc374e1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/server/lib/open_project.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ config = require("./config")
Project = require("./project")
browsers = require("./browsers")
log = require('./log')
specsUtil = require('./util/specs')

create = ->
openProject = null
Expand Down Expand Up @@ -95,7 +96,13 @@ create = ->
get = ->
openProject.getConfig()
.then (cfg) ->
files.getTestFiles(cfg)
specsUtil.find(cfg)
.then (specs = []) ->
## TODO: put back 'integration' property
## on the specs
return {
integration: specs
}

specIntervalId = setInterval(checkForSpecUpdates, 2500)

Expand Down

0 comments on commit fc374e1

Please sign in to comment.