Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aa298a6

Browse files
committed
RED: fast-fail some slow-failing tests
1 parent 65b980e commit aa298a6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cli/create_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import (
2323

2424
func TestCreate(t *testing.T) {
2525
t.Parallel()
26+
t.Fatal("CIAN FIX THIS")
2627
t.Run("Create", func(t *testing.T) {
2728
t.Parallel()
2829
client := coderdtest.New(t, &coderdtest.Options{IncludeProvisionerD: true})
@@ -65,6 +66,7 @@ func TestCreate(t *testing.T) {
6566

6667
t.Run("AboveTemplateMaxTTL", func(t *testing.T) {
6768
t.Parallel()
69+
t.Fatal("CIAN FIX THIS")
6870
client := coderdtest.New(t, &coderdtest.Options{IncludeProvisionerD: true})
6971
user := coderdtest.CreateFirstUser(t, client)
7072
version := coderdtest.CreateTemplateVersion(t, client, user.OrganizationID, nil)
@@ -93,6 +95,7 @@ func TestCreate(t *testing.T) {
9395

9496
t.Run("BelowTemplateMinAutostartInterval", func(t *testing.T) {
9597
t.Parallel()
98+
t.Fatal("CIAN FIX THIS")
9699
client := coderdtest.New(t, &coderdtest.Options{IncludeProvisionerD: true})
97100
user := coderdtest.CreateFirstUser(t, client)
98101
version := coderdtest.CreateTemplateVersion(t, client, user.OrganizationID, nil)
@@ -149,6 +152,7 @@ func TestCreate(t *testing.T) {
149152

150153
t.Run("CreateErrInvalidTTL", func(t *testing.T) {
151154
t.Parallel()
155+
t.Fatal("CIAN FIX THIS")
152156
client := coderdtest.New(t, &coderdtest.Options{IncludeProvisionerD: true})
153157
user := coderdtest.CreateFirstUser(t, client)
154158
version := coderdtest.CreateTemplateVersion(t, client, user.OrganizationID, nil)

0 commit comments

Comments
 (0)