File tree 2 files changed +0
-6
lines changed
2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,6 @@ func TestConvertResources(t *testing.T) {
182
182
DisplayName : "app1" ,
183
183
// Subdomain defaults to false if unspecified.
184
184
Subdomain : false ,
185
- OpenIn : "slim-window" ,
186
185
},
187
186
{
188
187
Slug : "app2" ,
@@ -193,13 +192,11 @@ func TestConvertResources(t *testing.T) {
193
192
Interval : 5 ,
194
193
Threshold : 6 ,
195
194
},
196
- OpenIn : "window" ,
197
195
},
198
196
{
199
197
Slug : "app3" ,
200
198
DisplayName : "app3" ,
201
199
Subdomain : false ,
202
- OpenIn : "tab" ,
203
200
},
204
201
},
205
202
Auth : & proto.Agent_Token {},
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ resource "coder_app" "app1" {
18
18
slug = " app1"
19
19
# subdomain should default to false.
20
20
# subdomain = false
21
- open_in = " slim-window"
22
21
}
23
22
24
23
# app2 tests that subdomaincan be true, and that healthchecks work.
@@ -31,15 +30,13 @@ resource "coder_app" "app2" {
31
30
interval = 5
32
31
threshold = 6
33
32
}
34
- open_in = " window"
35
33
}
36
34
37
35
# app3 tests that subdomain can explicitly be false.
38
36
resource "coder_app" "app3" {
39
37
agent_id = coder_agent. dev1 . id
40
38
slug = " app3"
41
39
subdomain = false
42
- open_in = " tab"
43
40
}
44
41
45
42
resource "null_resource" "dev" {
You can’t perform that action at this time.
0 commit comments