1// Copyright (C) 2021 Storj Labs, Inc.
2// See LICENSE for copying information
3
4package testmonkit_test
5
6import (
7	"context"
8	"testing"
9	"time"
10
11	"storj.io/storj/private/testmonkit"
12)
13
14func TestBasic(t *testing.T) {
15	// Set STORJ_TEST_MONKIT=svg,json for this to see the output.
16	testmonkit.Run(context.Background(), t, func(ctx context.Context) {
17		time.Sleep(100 * time.Millisecond)
18	})
19}
20