Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanSmile committed Feb 26, 2025
1 parent 4716bc1 commit cf46c2d
Show file tree
Hide file tree
Showing 4 changed files with 358 additions and 107 deletions.
18 changes: 18 additions & 0 deletions internal/logger/logger_init_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package logger

import (
"testing"
)

func TestLoggerSync(t *testing.T) {
// Initialize the logger
NewLogger()

// Check if logger is initialized
if Logger == nil {
t.Fatal("Logger should be initialized")
}

// Test logging
Logger.Info("Test log message")
}
107 changes: 0 additions & 107 deletions internal/logger/logger_test.go

This file was deleted.

Loading

0 comments on commit cf46c2d

Please sign in to comment.