github.com/goplusjs/gopherjs@v1.2.6-0.20211206034512-f187917453b8/compiler/natives/src/internal/reflectlite/all_test.go (about)

     1  // +build js
     2  
     3  package reflectlite_test
     4  
     5  import (
     6  	. "internal/reflectlite"
     7  	"testing"
     8  )
     9  
    10  func TestTypes(t *testing.T) {
    11  	for i, tt := range typeTests {
    12  		if i == 30 {
    13  			continue
    14  		}
    15  		testReflectType(t, i, Field(ValueOf(tt.i), 0).Type(), tt.s)
    16  	}
    17  }
    18  
    19  func TestNameBytesAreAligned(t *testing.T) {
    20  	t.Skip("TestNameBytesAreAligned")
    21  }