Skip to content

Commit

Permalink
check module name as well
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ocean committed Jul 16, 2024
1 parent 1eae945 commit f79dc5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/integration/logs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ describe('LogDatabase CRUD', () => {
meta: 'Test meta information'
}
// Trigger a log event which should be saved in the database
logger.logMessage(newLogEntry.message)
logger.logMessage(newLogEntry.message, true)

// Wait for the log to be written to the database
await new Promise((resolve) => setTimeout(resolve, 1000)) // Delay to allow log to be processed
Expand Down Expand Up @@ -123,7 +123,7 @@ describe('LogDatabase CRUD', () => {
meta: 'Test meta information'
}
// Trigger a log event which should be saved in the database
logger.logMessageWithEmoji(newLogEntry.message)
logger.logMessageWithEmoji(newLogEntry.message, true)

// Wait for the log to be written to the database
await new Promise((resolve) => setTimeout(resolve, 1000)) // Delay to allow log to be processed
Expand Down

0 comments on commit f79dc5e

Please sign in to comment.