1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-07-12 23:50:27 +02:00

GH-2745 Don't init default templates when unit testing (#2748)

* Don't warn when  appears in card followed by text that is not a username

* Selectively initalize default templates for unit tests that need them to reduce test times. Reduce log noise.
This commit is contained in:
Doug Lauder
2022-04-08 07:46:16 -04:00
committed by GitHub
parent 4411bdddb3
commit 30e6bc477d
9 changed files with 46 additions and 17 deletions

20
server/utils/debug.go Normal file
View File

@ -0,0 +1,20 @@
package utils
import (
"os"
"strings"
)
// IsRunningUnitTests returns true if this instance of FocalBoard is running unit or integration tests.
func IsRunningUnitTests() bool {
testing := os.Getenv("FB_UNIT_TESTING")
if testing == "" {
return false
}
switch strings.ToLower(testing) {
case "1", "t", "y", "true", "yes":
return true
}
return false
}