fix some more names

This commit is contained in:
David Tai
2017-08-06 00:15:16 -05:00
parent 22038bbf09
commit 8bab76f8a5
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -28,19 +28,19 @@ task 'coverage', 'Process coverage statistics', ->
task 'watch', 'watch for changes and recompile project', ['build'], ->
watch 'src/*', -> invoke 'build'
task 'static-server', 'Run static server for tests', ->
task 'server', 'Run static server for tests', ->
connect = require 'connect'
server = connect()
server.use (require 'serve-static') './test'
server.listen process.env.PORT ? 3333
task 'selenium-install', 'Install selenium standalone', ->
task 'selenium:install', 'Install selenium standalone', ->
exec 'node_modules/.bin/selenium-standalone install'
task 'test', 'Run tests', (options) ->
browserName = options.browser ? 'phantomjs'
invoke 'static-server'
invoke 'server'
selenium = require 'selenium-standalone'
selenium.start (err, child) ->
+1 -1
View File
@@ -63,4 +63,4 @@
"store": "2.0.12",
"ua-parser-js": "^0.7.14"
}
}
}