From 6321353f8cd24cfc7084b89195138b552c6dd632 Mon Sep 17 00:00:00 2001 From: Sydney Anne Erickson <sydney@elixxir.io> Date: Wed, 3 May 2023 10:09:39 -0700 Subject: [PATCH] Revert "test disabling non-working tests" This reverts commit e92fc10c8d0552d29b927862ac50840efd5fee53. --- wasm/cmix_test.go | 4 ++-- wasm/dm_test.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wasm/cmix_test.go b/wasm/cmix_test.go index 99432dcc..76d44150 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 83bc4473..58f837ea 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. -- GitLab