diff --git a/wasm/cmix_test.go b/wasm/cmix_test.go index 99432dcc5eeebb18c5027e8f31d989b62d40a0e7..76d441502198285b9cf6912949fec3f3ffa106ac 100644 --- a/wasm/cmix_test.go +++ b/wasm/cmix_test.go @@ -36,7 +36,7 @@ func Test_newCmixJS(t *testing.T) { } // Tests that Cmix has all the methods that [bindings.Cmix] has. -/*func Test_CmixMethods(t *testing.T) { +func Test_CmixMethods(t *testing.T) { cmixType := reflect.TypeOf(&Cmix{}) binCmixType := reflect.TypeOf(&bindings.Cmix{}) @@ -53,4 +53,4 @@ func Test_newCmixJS(t *testing.T) { t.Errorf("Method %s does not exist.", method.Name) } } -}*/ +} diff --git a/wasm/dm_test.go b/wasm/dm_test.go index 83bc4473ac4b698ff5806a763baa871a987e423d..58f837ea0bb857deaede29fd9f5c37f4cd936e34 100644 --- a/wasm/dm_test.go +++ b/wasm/dm_test.go @@ -17,7 +17,7 @@ import ( // Tests that the map representing DMClient returned by newDMClientJS contains // all of the methods on DMClient. -/*func Test_newDMClientJS(t *testing.T) { +func Test_newDMClientJS(t *testing.T) { dmcType := reflect.TypeOf(&DMClient{}) dmc := newDMClientJS(&bindings.DMClient{}) @@ -33,7 +33,7 @@ import ( t.Errorf("Method %s does not exist.", method.Name) } } -}*/ +} // Tests that DMClient has all the methods that // [bindings.DMClient] has.