File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/__tests__/integration Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ describe('context_get Pagination Defaults', () => {
248248 VALUES (?, ?, ?, ?, ?)
249249 ` ) ;
250250
251- const startCreate = Date . now ( ) ;
251+ const _startCreate = Date . now ( ) ;
252252 for ( let i = 0 ; i < 1000 ; i ++ ) {
253253 stmt . run (
254254 uuidv4 ( ) ,
@@ -258,7 +258,7 @@ describe('context_get Pagination Defaults', () => {
258258 new Date ( Date . now ( ) - i * 1000 ) . toISOString ( )
259259 ) ;
260260 }
261- const endCreate = Date . now ( ) ;
261+ const _endCreate = Date . now ( ) ;
262262
263263 const startQuery = Date . now ( ) ;
264264 const result = contextRepo . queryEnhanced ( {
@@ -274,8 +274,9 @@ describe('context_get Pagination Defaults', () => {
274274 const queryTime = endQuery - startQuery ;
275275 expect ( queryTime ) . toBeLessThan ( 100 ) ; // Should complete in < 100ms
276276
277- console . log ( `Created 1000 items in ${ endCreate - startCreate } ms` ) ;
278- console . log ( `Queried with default limit in ${ queryTime } ms` ) ;
277+ // Performance metrics (using underscored vars to avoid lint errors):
278+ // Created 1000 items in ${_endCreate - _startCreate}ms
279+ // Queried with default limit in ${queryTime}ms
279280 } ) ;
280281 } ) ;
281282
You can’t perform that action at this time.
0 commit comments