about summary refs log tree commit diff
path: root/__e2e__/tests/create-account.test.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-04-05 18:56:02 -0500
committerGitHub <noreply@github.com>2023-04-05 18:56:02 -0500
commitea04c2bd330dc5b46d6f9df0d7d4619bbd8f56d0 (patch)
tree870c7d3dbffe1f382cba30b858eaa2b76b31af36 /__e2e__/tests/create-account.test.ts
parent8e28d3c6be8e063b6d563b0068cb4fc907ff5df0 (diff)
downloadvoidsky-ea04c2bd330dc5b46d6f9df0d7d4619bbd8f56d0.tar.zst
Add user invite codes (#393)
* Add mobile UIs for invite codes

* Update invite code UIs for web

* Finish implementing invite code behaviors (including notifications of invited users)

* Bump deps

* Update web right nav to use real data; also fix lint
Diffstat (limited to '__e2e__/tests/create-account.test.ts')
-rw-r--r--__e2e__/tests/create-account.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/__e2e__/tests/create-account.test.ts b/__e2e__/tests/create-account.test.ts
index 7b2e00fb5..38466ed8e 100644
--- a/__e2e__/tests/create-account.test.ts
+++ b/__e2e__/tests/create-account.test.ts
@@ -5,7 +5,7 @@ import {openApp, createServer} from '../util'
 describe('Create account', () => {
   let service: string
   beforeAll(async () => {
-    service = await createServer('mock0')
+    service = await createServer('')
     await openApp({permissions: {notifications: 'YES'}})
   })