From 4d872aade3002173085b3749fd8b01e187b1a592 Mon Sep 17 00:00:00 2001 From: Naomi Plasterer Date: Wed, 10 Jul 2024 12:27:35 -0600 Subject: [PATCH] Revert "update a test to see if it can be created without a key" This reverts commit 6c5ba4f6735cce27aa414cf80a0e43a4929c8a2e. --- example/src/tests/groupTests.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/example/src/tests/groupTests.ts b/example/src/tests/groupTests.ts index cef98751e..8dd1513b9 100644 --- a/example/src/tests/groupTests.ts +++ b/example/src/tests/groupTests.ts @@ -27,10 +27,15 @@ function test(name: string, perform: () => Promise) { test('can make a MLS V3 client', async () => { // eslint-disable-next-line @typescript-eslint/no-unused-vars + const keyBytes = new Uint8Array([ + 233, 120, 198, 96, 154, 65, 132, 17, 132, 96, 250, 40, 103, 35, 125, 64, + 166, 83, 208, 224, 254, 44, 205, 227, 175, 49, 234, 129, 74, 252, 135, 145, + ]) const client = await Client.createRandom({ env: 'local', appVersion: 'Testing/0.0.0', enableV3: true, + dbEncryptionKey: keyBytes, }) return true