5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-06 23:49:42 +08:00

Remove browser test

This commit is contained in:
Lea Anthony 2020-12-04 15:05:39 +11:00
parent a081c1e498
commit 13dc0c78df
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405

View File

@ -1,16 +0,0 @@
package runtime
import (
"os"
"testing"
"github.com/wailsapp/wails/v2/internal/logger"
"github.com/wailsapp/wails/v2/internal/servicebus"
)
func TestBrowserOpen(t *testing.T) {
mylogger := logger.New(os.Stdout)
myServiceBus := servicebus.New(mylogger)
myRuntime := New(myServiceBus)
myRuntime.Browser.Open("http://www.google.com")
}