Skip to content
Snippets Groups Projects

Fixes

Merged Jono Wenger requested to merge hotfix/fixChanges into project/HavenBeta
All threads resolved!
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
@@ -14,22 +14,21 @@ import (
@@ -14,22 +14,21 @@ import (
"encoding/json"
"encoding/json"
"errors"
"errors"
"fmt"
"fmt"
"github.com/stretchr/testify/require"
"os"
"os"
"strconv"
"strconv"
"testing"
"testing"
"time"
"time"
cft "gitlab.com/elixxir/client/v4/channelsFileTransfer"
"gitlab.com/elixxir/crypto/fileTransfer"
"github.com/hack-pad/go-indexeddb/idb"
"github.com/hack-pad/go-indexeddb/idb"
jww "github.com/spf13/jwalterweatherman"
jww "github.com/spf13/jwalterweatherman"
 
"github.com/stretchr/testify/require"
"gitlab.com/elixxir/client/v4/channels"
"gitlab.com/elixxir/client/v4/channels"
 
cft "gitlab.com/elixxir/client/v4/channelsFileTransfer"
"gitlab.com/elixxir/client/v4/cmix/rounds"
"gitlab.com/elixxir/client/v4/cmix/rounds"
cryptoBroadcast "gitlab.com/elixxir/crypto/broadcast"
cryptoBroadcast "gitlab.com/elixxir/crypto/broadcast"
cryptoChannel "gitlab.com/elixxir/crypto/channel"
cryptoChannel "gitlab.com/elixxir/crypto/channel"
 
"gitlab.com/elixxir/crypto/fileTransfer"
"gitlab.com/elixxir/crypto/message"
"gitlab.com/elixxir/crypto/message"
"gitlab.com/elixxir/wasm-utils/storage"
"gitlab.com/elixxir/wasm-utils/storage"
"gitlab.com/elixxir/xxdk-wasm/indexedDb/impl"
"gitlab.com/elixxir/xxdk-wasm/indexedDb/impl"
@@ -44,6 +43,7 @@ func TestMain(m *testing.M) {
@@ -44,6 +43,7 @@ func TestMain(m *testing.M) {
}
}
type dummyCbs struct{}
type dummyCbs struct{}
 
func (c *dummyCbs) EventUpdate(int64, []byte) {}
func (c *dummyCbs) EventUpdate(int64, []byte) {}
// Happy path test for receiving, updating, getting, and deleting a File.
// Happy path test for receiving, updating, getting, and deleting a File.
Loading