11import { beforeEach , describe , expect , test } from "vitest"
2- import { createJazzTestAccount , setupJazzTestSync } from "jazz-tools/testing"
2+ import { createJazzTestAccount } from "jazz-tools/testing"
33import { co , Group } from "jazz-tools"
44import { Person , Note , Reminder , UserAccount } from "#shared/schema/user"
55import {
@@ -13,8 +13,6 @@ describe("permanentlyDeleteNote", () => {
1313 let person : co . loaded < typeof Person >
1414
1515 beforeEach ( async ( ) => {
16- await setupJazzTestSync ( )
17-
1816 account = await createJazzTestAccount ( {
1917 isCurrentActiveAccount : true ,
2018 AccountSchema : UserAccount ,
@@ -95,8 +93,6 @@ describe("permanentlyDeleteReminder", () => {
9593 let person : co . loaded < typeof Person >
9694
9795 beforeEach ( async ( ) => {
98- await setupJazzTestSync ( )
99-
10096 account = await createJazzTestAccount ( {
10197 isCurrentActiveAccount : true ,
10298 AccountSchema : UserAccount ,
@@ -153,8 +149,6 @@ describe("permanentlyDeletePerson", () => {
153149 let account : co . loaded < typeof UserAccount >
154150
155151 beforeEach ( async ( ) => {
156- await setupJazzTestSync ( )
157-
158152 account = await createJazzTestAccount ( {
159153 isCurrentActiveAccount : true ,
160154 AccountSchema : UserAccount ,
@@ -258,8 +252,6 @@ describe("deleted items in lists", () => {
258252 let account : co . loaded < typeof UserAccount >
259253
260254 beforeEach ( async ( ) => {
261- await setupJazzTestSync ( )
262-
263255 account = await createJazzTestAccount ( {
264256 isCurrentActiveAccount : true ,
265257 AccountSchema : UserAccount ,
0 commit comments