github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/cmn/tests/cmn_suite_test.go (about) 1 // Package test provides tests for common low-level types and utilities for all aistore projects 2 /* 3 * Copyright (c) 2018-2023, NVIDIA CORPORATION. All rights reserved. 4 */ 5 package tests_test 6 7 import ( 8 "testing" 9 10 "github.com/NVIDIA/aistore/tools" 11 . "github.com/onsi/ginkgo/v2" 12 . "github.com/onsi/gomega" 13 ) 14 15 func TestCmn(t *testing.T) { 16 tools.CheckSkip(t, &tools.SkipTestArgs{Long: true}) 17 RegisterFailHandler(Fail) 18 RunSpecs(t, t.Name()) 19 }