Skip to content

Commit

Permalink
fix: adjusts test to pass again
Browse files Browse the repository at this point in the history
  • Loading branch information
ajpauwels committed Oct 5, 2023
1 parent a23e05e commit c99f84f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,13 @@ func TestHandlerWithLogger(t *testing.T) {
}
defer logger.Sync()

_ = HandlerWithLogger(logger)
// Create config
config := Config{
Port: 8080,
Slack: SlackConfig{
SigningKey: "abc",
},
}

_ = BuildHandler(logger, &config)
}

0 comments on commit c99f84f

Please sign in to comment.