We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5609013 commit be0a3e0Copy full SHA for be0a3e0
packages/hello-world/__tests__/hello-world.test.ts
@@ -25,6 +25,8 @@ const users = [
25
26
beforeAll(async () => {
27
({ pg, db, teardown } = await getConnections());
28
+
29
+ // insert users using pg PgTestClient to bypass RLS (supabase auth.users table is not granted access)
30
user1 = await insertUser(pg, users[0].email, users[0].id);
31
user2 = await insertUser(pg, users[1].email, users[1].id);
32
user3 = await insertUser(pg, users[2].email, users[2].id);
0 commit comments