Merge pull request #151 from tockins/dev

server test removed
This commit is contained in:
Alessio Pracchia 2018-01-09 01:41:10 +01:00 committed by GitHub
commit cce8d94c77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,34 +6,6 @@ import (
"testing"
)
func TestServer_Start(t *testing.T) {
// refactoring required
//s := Server{
// Host: "localhost",
// Port: 5000,
//}
//host := "http://localhost:5000/"
//urls := []string{
// host,
// host + "assets/js/all.min.js",
// host + "assets/css/app.css",
// host + "app/components/settings/index.html",
// host + "app/components/project/index.html",
// host + "app/components/project/index.html",
// host + "app/components/index.html",
//}
//err := s.Start()
//if err != nil {
// t.Fatal(err)
//}
//for _, elm := range urls {
// resp, err := http.Get(elm)
// if err != nil || resp.StatusCode != 200 {
// t.Fatal(err, resp.StatusCode, elm)
// }
//}
}
func TestServer_Open(t *testing.T) {
cmd := map[string]string{
"windows": "start",