Skip to content

Commit c7b3031

Browse files
cleanup
1 parent d21f2eb commit c7b3031

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/web/tests/uploads.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ describe('CRUD Uploads', () => {
7171
uploadSpy.mockImplementation(async (db) => {
7272
// This upload method does not perform an upload
7373
const nextTransaction = await db.getNextCrudTransaction();
74-
console.log('uploading trans', nextTransaction);
7574
if (!nextTransaction) {
7675
return;
7776
}
@@ -99,7 +98,7 @@ describe('CRUD Uploads', () => {
9998
// Create a second item
10099
await powersync.execute('INSERT into users (id, name) VALUES (uuid(), ?)', ['steven2']);
101100

102-
// The empty upload handler should have been called
101+
// The empty upload handler should have been called.
103102
// Timeouts seem to be weird in Vitest Browser mode.
104103
// This makes the check below more stable.
105104
await deferred.promise;

0 commit comments

Comments
 (0)