Skip to content

Commit e4ca558

Browse files
chore(internal): codegen related update
1 parent dbbb546 commit e4ca558

7 files changed

Lines changed: 26 additions & 28 deletions

File tree

app_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
func TestAppListWithOptionalParams(t *testing.T) {
17-
t.Skip("skipped: tests are disabled for the time being")
17+
t.Skip("Prism tests are disabled")
1818
baseURL := "http://localhost:4010"
1919
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2020
baseURL = envURL

browser_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
func TestBrowserNewWithOptionalParams(t *testing.T) {
17-
t.Skip("skipped: tests are disabled for the time being")
17+
t.Skip("Prism tests are disabled")
1818
baseURL := "http://localhost:4010"
1919
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2020
baseURL = envURL
@@ -45,7 +45,7 @@ func TestBrowserNewWithOptionalParams(t *testing.T) {
4545
}
4646

4747
func TestBrowserGet(t *testing.T) {
48-
t.Skip("skipped: tests are disabled for the time being")
48+
t.Skip("Prism tests are disabled")
4949
baseURL := "http://localhost:4010"
5050
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
5151
baseURL = envURL
@@ -68,7 +68,7 @@ func TestBrowserGet(t *testing.T) {
6868
}
6969

7070
func TestBrowserList(t *testing.T) {
71-
t.Skip("skipped: tests are disabled for the time being")
71+
t.Skip("Prism tests are disabled")
7272
baseURL := "http://localhost:4010"
7373
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
7474
baseURL = envURL
@@ -91,7 +91,7 @@ func TestBrowserList(t *testing.T) {
9191
}
9292

9393
func TestBrowserDelete(t *testing.T) {
94-
t.Skip("skipped: tests are disabled for the time being")
94+
t.Skip("Prism tests are disabled")
9595
baseURL := "http://localhost:4010"
9696
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
9797
baseURL = envURL
@@ -116,7 +116,7 @@ func TestBrowserDelete(t *testing.T) {
116116
}
117117

118118
func TestBrowserDeleteByID(t *testing.T) {
119-
t.Skip("skipped: tests are disabled for the time being")
119+
t.Skip("Prism tests are disabled")
120120
baseURL := "http://localhost:4010"
121121
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
122122
baseURL = envURL

browserf_test.go

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
)
1919

2020
func TestBrowserFNewDirectoryWithOptionalParams(t *testing.T) {
21-
t.Skip("skipped: tests are disabled for the time being")
21+
t.Skip("Prism tests are disabled")
2222
baseURL := "http://localhost:4010"
2323
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2424
baseURL = envURL
@@ -48,7 +48,7 @@ func TestBrowserFNewDirectoryWithOptionalParams(t *testing.T) {
4848
}
4949

5050
func TestBrowserFDeleteDirectory(t *testing.T) {
51-
t.Skip("skipped: tests are disabled for the time being")
51+
t.Skip("Prism tests are disabled")
5252
baseURL := "http://localhost:4010"
5353
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
5454
baseURL = envURL
@@ -77,7 +77,7 @@ func TestBrowserFDeleteDirectory(t *testing.T) {
7777
}
7878

7979
func TestBrowserFDeleteFile(t *testing.T) {
80-
t.Skip("skipped: tests are disabled for the time being")
80+
t.Skip("Prism tests are disabled")
8181
baseURL := "http://localhost:4010"
8282
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
8383
baseURL = envURL
@@ -106,7 +106,7 @@ func TestBrowserFDeleteFile(t *testing.T) {
106106
}
107107

108108
func TestBrowserFFileInfo(t *testing.T) {
109-
t.Skip("skipped: tests are disabled for the time being")
109+
t.Skip("Prism tests are disabled")
110110
baseURL := "http://localhost:4010"
111111
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
112112
baseURL = envURL
@@ -135,7 +135,7 @@ func TestBrowserFFileInfo(t *testing.T) {
135135
}
136136

137137
func TestBrowserFListFiles(t *testing.T) {
138-
t.Skip("skipped: tests are disabled for the time being")
138+
t.Skip("Prism tests are disabled")
139139
baseURL := "http://localhost:4010"
140140
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
141141
baseURL = envURL
@@ -164,7 +164,7 @@ func TestBrowserFListFiles(t *testing.T) {
164164
}
165165

166166
func TestBrowserFMove(t *testing.T) {
167-
t.Skip("skipped: tests are disabled for the time being")
167+
t.Skip("Prism tests are disabled")
168168
baseURL := "http://localhost:4010"
169169
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
170170
baseURL = envURL
@@ -194,7 +194,6 @@ func TestBrowserFMove(t *testing.T) {
194194
}
195195

196196
func TestBrowserFReadFile(t *testing.T) {
197-
t.Skip("skipped: tests are disabled for the time being")
198197
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
199198
w.WriteHeader(200)
200199
w.Write([]byte("abc"))
@@ -235,7 +234,7 @@ func TestBrowserFReadFile(t *testing.T) {
235234
}
236235

237236
func TestBrowserFSetFilePermissionsWithOptionalParams(t *testing.T) {
238-
t.Skip("skipped: tests are disabled for the time being")
237+
t.Skip("Prism tests are disabled")
239238
baseURL := "http://localhost:4010"
240239
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
241240
baseURL = envURL
@@ -267,7 +266,7 @@ func TestBrowserFSetFilePermissionsWithOptionalParams(t *testing.T) {
267266
}
268267

269268
func TestBrowserFWriteFileWithOptionalParams(t *testing.T) {
270-
t.Skip("skipped: tests are disabled for the time being")
269+
t.Skip("Prism tests are disabled")
271270
baseURL := "http://localhost:4010"
272271
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
273272
baseURL = envURL

browserfwatch_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
func TestBrowserFWatchStartWithOptionalParams(t *testing.T) {
17-
t.Skip("skipped: tests are disabled for the time being")
17+
t.Skip("Prism tests are disabled")
1818
baseURL := "http://localhost:4010"
1919
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2020
baseURL = envURL
@@ -44,7 +44,7 @@ func TestBrowserFWatchStartWithOptionalParams(t *testing.T) {
4444
}
4545

4646
func TestBrowserFWatchStop(t *testing.T) {
47-
t.Skip("skipped: tests are disabled for the time being")
47+
t.Skip("Prism tests are disabled")
4848
baseURL := "http://localhost:4010"
4949
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
5050
baseURL = envURL

browserreplay_test.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
)
1919

2020
func TestBrowserReplayList(t *testing.T) {
21-
t.Skip("skipped: tests are disabled for the time being")
21+
t.Skip("Prism tests are disabled")
2222
baseURL := "http://localhost:4010"
2323
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2424
baseURL = envURL
@@ -41,7 +41,6 @@ func TestBrowserReplayList(t *testing.T) {
4141
}
4242

4343
func TestBrowserReplayDownload(t *testing.T) {
44-
t.Skip("skipped: tests are disabled for the time being")
4544
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
4645
w.WriteHeader(200)
4746
w.Write([]byte("abc"))
@@ -82,7 +81,7 @@ func TestBrowserReplayDownload(t *testing.T) {
8281
}
8382

8483
func TestBrowserReplayStartWithOptionalParams(t *testing.T) {
85-
t.Skip("skipped: tests are disabled for the time being")
84+
t.Skip("Prism tests are disabled")
8685
baseURL := "http://localhost:4010"
8786
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
8887
baseURL = envURL
@@ -112,7 +111,7 @@ func TestBrowserReplayStartWithOptionalParams(t *testing.T) {
112111
}
113112

114113
func TestBrowserReplayStop(t *testing.T) {
115-
t.Skip("skipped: tests are disabled for the time being")
114+
t.Skip("Prism tests are disabled")
116115
baseURL := "http://localhost:4010"
117116
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
118117
baseURL = envURL

deployment_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
)
1717

1818
func TestDeploymentNewWithOptionalParams(t *testing.T) {
19-
t.Skip("skipped: tests are disabled for the time being")
19+
t.Skip("Prism tests are disabled")
2020
baseURL := "http://localhost:4010"
2121
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2222
baseURL = envURL
@@ -48,7 +48,7 @@ func TestDeploymentNewWithOptionalParams(t *testing.T) {
4848
}
4949

5050
func TestDeploymentGet(t *testing.T) {
51-
t.Skip("skipped: tests are disabled for the time being")
51+
t.Skip("Prism tests are disabled")
5252
baseURL := "http://localhost:4010"
5353
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
5454
baseURL = envURL
@@ -71,7 +71,7 @@ func TestDeploymentGet(t *testing.T) {
7171
}
7272

7373
func TestDeploymentListWithOptionalParams(t *testing.T) {
74-
t.Skip("skipped: tests are disabled for the time being")
74+
t.Skip("Prism tests are disabled")
7575
baseURL := "http://localhost:4010"
7676
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
7777
baseURL = envURL

invocation_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
)
1515

1616
func TestInvocationNewWithOptionalParams(t *testing.T) {
17-
t.Skip("skipped: tests are disabled for the time being")
17+
t.Skip("Prism tests are disabled")
1818
baseURL := "http://localhost:4010"
1919
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
2020
baseURL = envURL
@@ -43,7 +43,7 @@ func TestInvocationNewWithOptionalParams(t *testing.T) {
4343
}
4444

4545
func TestInvocationGet(t *testing.T) {
46-
t.Skip("skipped: tests are disabled for the time being")
46+
t.Skip("Prism tests are disabled")
4747
baseURL := "http://localhost:4010"
4848
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
4949
baseURL = envURL
@@ -66,7 +66,7 @@ func TestInvocationGet(t *testing.T) {
6666
}
6767

6868
func TestInvocationUpdateWithOptionalParams(t *testing.T) {
69-
t.Skip("skipped: tests are disabled for the time being")
69+
t.Skip("Prism tests are disabled")
7070
baseURL := "http://localhost:4010"
7171
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
7272
baseURL = envURL
@@ -96,7 +96,7 @@ func TestInvocationUpdateWithOptionalParams(t *testing.T) {
9696
}
9797

9898
func TestInvocationDeleteBrowsers(t *testing.T) {
99-
t.Skip("skipped: tests are disabled for the time being")
99+
t.Skip("Prism tests are disabled")
100100
baseURL := "http://localhost:4010"
101101
if envURL, ok := os.LookupEnv("TEST_API_BASE_URL"); ok {
102102
baseURL = envURL

0 commit comments

Comments
 (0)