github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/ais/ais_suite_test.go (about) 1 // Package ais_tests provides tests of AIS cluster. 2 /* 3 * Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved. 4 * 5 */ 6 package ais_test 7 8 import ( 9 "testing" 10 11 "github.com/NVIDIA/aistore/hk" 12 "github.com/NVIDIA/aistore/tools" 13 "github.com/NVIDIA/aistore/xact/xreg" 14 . "github.com/onsi/ginkgo/v2" 15 . "github.com/onsi/gomega" 16 ) 17 18 func init() { 19 xreg.Init() 20 hk.TestInit() 21 } 22 23 func TestAIS(t *testing.T) { 24 RegisterFailHandler(Fail) 25 tools.CheckSkip(t, &tools.SkipTestArgs{Long: true}) 26 RunSpecs(t, t.Name()) 27 }