@@ -55,7 +55,7 @@ describe("QoD", () => {
5555 ) ;
5656 } ) ;
5757
58- test ( "should create a session" , async ( ) => {
58+ test . skip ( "should create a session" , async ( ) => {
5959 const session = await device . createQodSession ( "QOS_L" , {
6060 duration : 3600 ,
6161 serviceIpv4 : "5.6.7.8" ,
@@ -68,7 +68,7 @@ describe("QoD", () => {
6868 await session . deleteSession ( ) ;
6969 } ) ;
7070
71- test ( "should create a session to a device with phone number" , async ( ) => {
71+ test . skip ( "should create a session to a device with phone number" , async ( ) => {
7272 const session = await deviceWithPhoneNumber . createQodSession ( "QOS_L" , {
7373 duration : 3600 ,
7474 serviceIpv4 : "5.6.7.8" ,
@@ -83,7 +83,7 @@ describe("QoD", () => {
8383 await session . deleteSession ( ) ;
8484 } ) ;
8585
86- test ( "should create a session with medium profile" , async ( ) => {
86+ test . skip ( "should create a session with medium profile" , async ( ) => {
8787 const session = await device . createQodSession ( "QOS_M" , {
8888 duration : 3600 ,
8989 serviceIpv4 : "5.6.7.8" ,
@@ -94,7 +94,7 @@ describe("QoD", () => {
9494 await session . deleteSession ( ) ;
9595 } ) ;
9696
97- test ( "should create a session with small profile" , async ( ) => {
97+ test . skip ( "should create a session with small profile" , async ( ) => {
9898 const session = await device . createQodSession ( "QOS_S" , {
9999 duration : 3600 ,
100100 serviceIpv4 : "5.6.7.8" ,
@@ -105,7 +105,7 @@ describe("QoD", () => {
105105 await session . deleteSession ( ) ;
106106 } ) ;
107107
108- test ( "should create a session with low latency profile" , async ( ) => {
108+ test . skip ( "should create a session with low latency profile" , async ( ) => {
109109 const session = await device . createQodSession ( "QOS_E" , {
110110 duration : 3600 ,
111111 serviceIpv4 : "5.6.7.8" ,
@@ -116,7 +116,7 @@ describe("QoD", () => {
116116 await session . deleteSession ( ) ;
117117 } ) ;
118118
119- test ( "should get one session" , async ( ) => {
119+ test . skip ( "should get one session" , async ( ) => {
120120 const session = await device . createQodSession ( "QOS_E" , {
121121 duration : 3600 ,
122122 serviceIpv4 : "5.6.7.8" ,
@@ -137,7 +137,7 @@ describe("QoD", () => {
137137 }
138138 } ) ;
139139
140- test ( "should get all sessions" , async ( ) => {
140+ test . skip ( "should get all sessions" , async ( ) => {
141141 await device . createQodSession ( "QOS_E" , {
142142 duration : 3600 ,
143143 serviceIpv4 : "5.6.7.8" ,
@@ -151,7 +151,7 @@ describe("QoD", () => {
151151 } ) ;
152152
153153
154- test ( "should create a session with service port" , async ( ) => {
154+ test . skip ( "should create a session with service port" , async ( ) => {
155155 const session = await device . createQodSession ( "QOS_L" , {
156156 duration : 3600 ,
157157 serviceIpv4 : "5.6.7.8" ,
@@ -164,7 +164,7 @@ describe("QoD", () => {
164164 await session . deleteSession ( ) ;
165165 } ) ;
166166
167- test ( "should create a session with service port range" , async ( ) => {
167+ test . skip ( "should create a session with service port range" , async ( ) => {
168168 const session = await device . createQodSession ( "QOS_M" , {
169169 duration : 3600 ,
170170 serviceIpv4 : "5.6.7.8" ,
@@ -178,7 +178,7 @@ describe("QoD", () => {
178178 await session . deleteSession ( ) ;
179179 } ) ;
180180
181- test ( "should create a session with device port" , async ( ) => {
181+ test . skip ( "should create a session with device port" , async ( ) => {
182182 const session = await device . createQodSession ( "QOS_M" , {
183183 duration : 3600 ,
184184 serviceIpv4 : "5.6.7.8" ,
@@ -192,7 +192,7 @@ describe("QoD", () => {
192192 await session . deleteSession ( ) ;
193193 } ) ;
194194
195- test ( "should create a session with device port range" , async ( ) => {
195+ test . skip ( "should create a session with device port range" , async ( ) => {
196196 const session = await device . createQodSession ( "QOS_M" , {
197197 duration : 3600 ,
198198 serviceIpv4 : "5.6.7.8" ,
@@ -206,7 +206,7 @@ describe("QoD", () => {
206206 await session . deleteSession ( ) ;
207207 } ) ;
208208
209- test ( "should create a session with duration" , async ( ) => {
209+ test . skip ( "should create a session with duration" , async ( ) => {
210210 const session = await device . createQodSession ( "QOS_L" , {
211211 serviceIpv4 : "5.6.7.8" ,
212212 serviceIpv6 : "2041:0000:140F::875B:131B" ,
@@ -219,7 +219,7 @@ describe("QoD", () => {
219219 await session . deleteSession ( ) ;
220220 } ) ;
221221
222- test ( "should extend the duration of a session" , async ( ) => {
222+ test . skip ( "should extend the duration of a session" , async ( ) => {
223223 const session = await device . createQodSession ( "QOS_L" , {
224224 serviceIpv4 : "5.6.7.8" ,
225225 serviceIpv6 : "2041:0000:140F::875B:131B" ,
@@ -232,7 +232,7 @@ describe("QoD", () => {
232232 await session . deleteSession ( ) ;
233233 } ) ;
234234
235- test ( "should create and delete a session with notification url" , async ( ) => {
235+ test . skip ( "should create and delete a session with notification url" , async ( ) => {
236236 const session = await device . createQodSession ( "QOS_L" , {
237237 duration : 3600 ,
238238 serviceIpv4 : "5.6.7.8" ,
@@ -272,7 +272,7 @@ describe("QoD", () => {
272272
273273 } , 20 * 1000 ) ;
274274
275- test ( "should change session status from deletion" , async ( ) => {
275+ test . skip ( "should change session status from deletion" , async ( ) => {
276276 const session = await device . createQodSession ( "QOS_L" , {
277277 duration : 3600 ,
278278 serviceIpv4 : "5.6.7.8" ,
@@ -309,7 +309,7 @@ describe("QoD", () => {
309309
310310 } , 20 * 1000 ) ;
311311
312- test ( "should create a session with public and private ipv4" , async ( ) => {
312+ test . skip ( "should create a session with public and private ipv4" , async ( ) => {
313313 device = client . devices . get ( {
314314 networkAccessIdentifier :
"[email protected] " , 315315 ipv4Address : {
@@ -329,7 +329,7 @@ describe("QoD", () => {
329329 await session . deleteSession ( ) ;
330330 } ) ;
331331
332- test ( "should create a session with public ipv4 and public port" , async ( ) => {
332+ test . skip ( "should create a session with public ipv4 and public port" , async ( ) => {
333333 device = client . devices . get ( {
334334 networkAccessIdentifier :
"[email protected] " , 335335 ipv4Address : {
0 commit comments