github.com/gopherjs/gopherjs@v1.19.0-beta1.0.20240506212314-27071a8796e4/compiler/natives/src/net/http/cookiejar/example_test.go (about) 1 //go:build js 2 // +build js 3 4 package cookiejar_test 5 6 import "fmt" 7 8 func ExampleNew() { 9 // network access not supported by GopherJS, and this test depends on httptest.NewServer 10 11 fmt.Println(`After 1st request: 12 Flavor: Chocolate Chip 13 After 2nd request: 14 Flavor: Oatmeal Raisin`) 15 }