mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-23 07:09:24 -04:00
* Includes mmctl into the mono-repo * Update to use the new public module paths * Adds docs check to the mmctl CI * Fix public utils import path * Tidy up modules * Fix linter * Update CI tasks to use the new file structure * Update CI references
17 lines
301 B
Go
17 lines
301 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
//go:build e2e
|
|
// +build e2e
|
|
|
|
package commands
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestMmctlE2ESuite(t *testing.T) {
|
|
suite.Run(t, new(MmctlE2ETestSuite))
|
|
}
|