Skip to content

Commit

Permalink
Restore concurrency on renderer specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio Scandurra committed May 24, 2016
1 parent 48c5db5 commit 75d4919
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build/tasks/spec-task.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ module.exports = (grunt) ->
if process.platform is 'win32'
process.stderr.write(fs.readFileSync('ci.log')) if error
fs.unlinkSync('ci.log')
else
# TODO: Restore concurrency on Windows
packageSpecQueue?.concurrency = concurrency

callback(null, error)

Expand All @@ -123,9 +126,6 @@ module.exports = (grunt) ->

grunt.log.ok "Launching core specs (main process)."
spawn options, (error, results, code) ->
if process.platform isnt 'windows'
packageSpecQueue?.concurrency = concurrency

callback(null, error)

grunt.registerTask 'run-specs', 'Run the specs', ->
Expand Down
1 change: 0 additions & 1 deletion spec/browser/mocha-test-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import Mocha from 'mocha'
import fs from 'fs-plus'
import {assert} from 'chai'
import util from 'util'

export default function (testPaths) {
global.assert = assert
Expand Down

0 comments on commit 75d4919

Please sign in to comment.