Fixing javascript tests on build server (#3138)

This commit is contained in:
Christopher Speller
2016-05-27 11:39:21 -04:00
committed by Corey Hulen
parent 1736947f0e
commit 0d8431b4ba

View File

@@ -349,15 +349,15 @@ func runJavascriptClientTests() {
func cmdRunClientTests() {
if flagCmdRunWebClientTests {
setupClientTests()
api.StartServer()
setupClientTests()
runWebClientTests()
api.StopServer()
}
if flagCmdRunJavascriptClientTests {
setupClientTests()
api.StartServer()
setupClientTests()
runJavascriptClientTests()
api.StopServer()
}