@@ -14,7 +14,6 @@ describe('getTransportConfigInstance', () => {
14
14
it ( 'should return the dummy instance of TransportConfig' , async ( ) => {
15
15
const transportConfigResult = await getTransportConfigInstance ( {
16
16
backendTarget : undefined ,
17
- scp : true ,
18
17
credentials : { }
19
18
} ) ;
20
19
expect ( transportConfigResult . transportConfig ?. getPackage ( ) ) . toBe ( undefined ) ;
@@ -41,7 +40,6 @@ describe('getTransportConfigInstance', () => {
41
40
42
41
const transportConfigResult = await getTransportConfigInstance ( {
43
42
backendTarget : undefined ,
44
- scp : false ,
45
43
credentials : { }
46
44
} ) ;
47
45
@@ -69,7 +67,6 @@ describe('getTransportConfigInstance', () => {
69
67
70
68
const transportConfigResult = await getTransportConfigInstance ( {
71
69
backendTarget : undefined ,
72
- scp : false ,
73
70
credentials : { }
74
71
} ) ;
75
72
@@ -87,7 +84,6 @@ describe('getTransportConfigInstance', () => {
87
84
88
85
const transportConfigResult2 = await getTransportConfigInstance ( {
89
86
backendTarget : undefined ,
90
- scp : false ,
91
87
credentials : { }
92
88
} ) ;
93
89
@@ -112,7 +108,6 @@ describe('getTransportConfigInstance', () => {
112
108
113
109
const transportConfigResult = await getTransportConfigInstance ( {
114
110
backendTarget : undefined ,
115
- scp : false ,
116
111
credentials : { }
117
112
} ) ;
118
113
@@ -137,7 +132,6 @@ describe('getTransportConfigInstance', () => {
137
132
138
133
const transportConfigResult = await getTransportConfigInstance ( {
139
134
backendTarget : undefined ,
140
- scp : false ,
141
135
credentials : { }
142
136
} ) ;
143
137
expect ( transportConfigResult . transportConfigNeedsCreds ) . toBe ( true ) ;
@@ -156,7 +150,6 @@ describe('getTransportConfigInstance', () => {
156
150
157
151
const transportConfigResultWithoutHeaders = await getTransportConfigInstance ( {
158
152
backendTarget : undefined ,
159
- scp : false ,
160
153
credentials : { }
161
154
} ) ;
162
155
expect ( transportConfigResultWithoutHeaders . transportConfigNeedsCreds ) . toBe ( false ) ;
@@ -175,7 +168,6 @@ describe('getTransportConfigInstance', () => {
175
168
176
169
const transportConfigResult2 = await getTransportConfigInstance ( {
177
170
backendTarget : undefined ,
178
- scp : false ,
179
171
credentials : { }
180
172
} ) ;
181
173
expect ( transportConfigResult2 . transportConfigNeedsCreds ) . toBe ( false ) ;
0 commit comments