mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +03:00
18 lines
289 B
Go
18 lines
289 B
Go
package example
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/nomad/e2e/framework"
|
|
)
|
|
|
|
func TestE2E(t *testing.T) {
|
|
framework.New().AddSuites(&framework.TestSuite{
|
|
Component: "simple",
|
|
CanRunLocal: true,
|
|
Cases: []framework.TestCase{
|
|
new(SimpleExampleTestCase),
|
|
},
|
|
}).Run(t)
|
|
}
|