summaryrefslogtreecommitdiffstats
path: root/plugin/rpcplugin/sandbox/main_test.go
blob: 4be4a42af6e7374289343c902894cedc66e7952f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package sandbox

import (
	"testing"

	"github.com/mattermost/mattermost-server/mlog"
)

func TestMain(t *testing.T) {
	// Setup a global logger to catch tests logging outside of app context
	// The global logger will be stomped by apps initalizing but that's fine for testing. Ideally this won't happen.
	mlog.InitGlobalLogger(mlog.NewLogger(&mlog.LoggerConfiguration{
		EnableConsole: true,
		ConsoleJson:   true,
		ConsoleLevel:  "error",
		EnableFile:    false,
	}))
}