Make sure webapp unit tests actually run.

This commit is contained in:
Dorian 2016-11-24 08:17:18 -05:00
parent b9b26cef50
commit d17e61823c
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ end)
desc("Runs webapp tests") desc("Runs webapp tests")
task("test-webapp", {"build-webapp"}, function() task("test-webapp", {"build-webapp"}, function()
exec("docker-compose", "run", "webapp", "npm", "run", "lint") exec("docker-compose", "run", "webapp", "npm", "run", "lint")
exec("docker-compose", "run", "webapp", "npm", "run", "test") exec("docker-compose", "run", "webapp", "npm", "run", "tests-unit")
end) end)
function check_sauceconnect_variables_set() function check_sauceconnect_variables_set()