From 62f2afab3a9b7ccd4534b1bc26d3db86f3a17f59 Mon Sep 17 00:00:00 2001 From: Jono Wenger <jono@elixxir.io> Date: Mon, 24 Oct 2022 09:27:09 -0700 Subject: [PATCH] Fix wasm test --- wasm_test.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/wasm_test.go b/wasm_test.go index 3b64f93c..38d1bdd3 100644 --- a/wasm_test.go +++ b/wasm_test.go @@ -25,10 +25,9 @@ func TestPublicFunctions(t *testing.T) { // not implemented. excludeList := map[string]struct{}{ // Notifications are not available in the browser - "GetNotificationsReport": {}, - "RegisterForNotifications": {}, - "UnregisterForNotifications": {}, - "GetChannelDbCipherTrackerFromID": {}, + "GetNotificationsReport": {}, + "RegisterForNotifications": {}, + "UnregisterForNotifications": {}, // UD not available in the browser "IsRegisteredWithUD": {}, -- GitLab