Skip to content

Commit 5d5deff

Browse files
committed
Comment console output on update hook
1 parent 3eacc12 commit 5d5deff

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

example/src/tests/updateHook.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ export function updateHookTests() {
4444
promiseResolve = resolve;
4545
});
4646
db.updateHook(({rowId, table, operation, row = {}}) => {
47-
console.warn(
48-
`Hook has been called, rowId: ${rowId}, ${table}, ${operation}`,
49-
);
50-
console.warn(JSON.stringify(row, null, 2));
47+
// console.warn(
48+
// `Hook has been called, rowId: ${rowId}, ${table}, ${operation}`,
49+
// );
50+
// console.warn(JSON.stringify(row, null, 2));
5151
promiseResolve?.(operation);
5252
});
5353

0 commit comments

Comments
 (0)