@@ -38,13 +38,13 @@ describe("Slicing", () => {
3838 // Clean up, currently nothing
3939 } ) ;
4040
41- test ( "should get a device" , ( ) => {
41+ test . skip ( "should get a device" , ( ) => {
4242 expect ( device . networkAccessIdentifier ) . toEqual (
43434444 ) ;
4545 } ) ;
4646
47- test ( "should create a slice" , async ( ) => {
47+ test . skip ( "should create a slice" , async ( ) => {
4848 const random = Math . floor ( Math . random ( ) * 1000 ) + 1 ;
4949
5050 const new_slice = await client . slices . create (
@@ -71,7 +71,7 @@ describe("Slicing", () => {
7171 expect ( slices . length ) . toBeGreaterThanOrEqual ( 0 ) ;
7272 } ) ;
7373
74- test ( "should create a slice with other optional args" , async ( ) => {
74+ test . skip ( "should create a slice with other optional args" , async ( ) => {
7575 const slice = await client . slices . create (
7676 { mcc : "236" , mnc : "30" } ,
7777 { serviceType : "eMBB" , differentiator : "444444" } ,
@@ -126,7 +126,7 @@ describe("Slicing", () => {
126126 await slice . delete ( ) ;
127127 } ) ;
128128
129- test ( "should get a slice" , async ( ) => {
129+ test . skip ( "should get a slice" , async ( ) => {
130130 const random = Math . floor ( Math . random ( ) * 1000 ) + 1 ;
131131
132132 const slice = await client . slices . create (
@@ -143,7 +143,7 @@ describe("Slicing", () => {
143143 expect ( slice . sid ) . toEqual ( fetchedSlice . sid ) ;
144144 } ) ;
145145
146- test ( "should mark a deleted slice's state as 'Deleted'" , async ( ) => {
146+ test . skip ( "should mark a deleted slice's state as 'Deleted'" , async ( ) => {
147147 const random = Math . floor ( Math . random ( ) * 1000 ) + 1 ;
148148
149149 const slice = await client . slices . create (
@@ -163,7 +163,7 @@ describe("Slicing", () => {
163163 expect ( slice . state ) . toEqual ( "DELETED" ) ;
164164 } ) ;
165165
166- test ( "should get attachments" , async ( ) => {
166+ test . skip ( "should get attachments" , async ( ) => {
167167 const attachments : any = await client . slices . getAllAttachments ( ) ;
168168 expect ( attachments . length ) . toBeGreaterThanOrEqual ( 0 ) ;
169169 } ) ;
@@ -209,7 +209,7 @@ describe("Slicing", () => {
209209
210210 // NOTE: This test takes a long time to execute, since it must wait for slice updates
211211 // if you are in a rush, add a temporary skip here
212- test . concurrent ( "should deactivate and delete" , async ( ) => {
212+ test . skip ( "should deactivate and delete" , async ( ) => {
213213 const slice = await client . slices . create (
214214 { mcc : "236" , mnc : "30" } ,
215215 { serviceType : "eMBB" , differentiator : "444444" } ,
@@ -353,7 +353,7 @@ describe("Slicing", () => {
353353 await slice . delete ( ) ;
354354 } , 720000 ) ;
355355
356- test ( "Should receive notifications" , async ( ) => {
356+ test . skip ( "Should receive notifications" , async ( ) => {
357357 let lastNotification : { [ key : string ] : any } ;
358358 let data : { [ key : string ] : any } [ ] ;
359359 const random = Math . floor ( Math . random ( ) * 1000 ) + 1 ;
0 commit comments