@@ -9,7 +9,7 @@ const client = new Spotify({
99} ) ;
1010
1111describe ( 'resource artists' , ( ) => {
12- // Prism tests are disabled
12+ // Mock server tests are disabled
1313 test . skip ( 'retrieve' , async ( ) => {
1414 const responsePromise = client . artists . retrieve ( '0TnOYISbd1XYRBk9myaseg' ) ;
1515 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -21,7 +21,7 @@ describe('resource artists', () => {
2121 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
2222 } ) ;
2323
24- // Prism tests are disabled
24+ // Mock server tests are disabled
2525 test . skip ( 'bulkRetrieve: only required params' , async ( ) => {
2626 const responsePromise = client . artists . bulkRetrieve ( {
2727 ids : '2CIMQHirSU0MQqyYHq0eOx,57dN52uHvrHOxijzpIgu3E,1vCWHaC5f2uS3yhpwWbIA6' ,
@@ -35,14 +35,14 @@ describe('resource artists', () => {
3535 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
3636 } ) ;
3737
38- // Prism tests are disabled
38+ // Mock server tests are disabled
3939 test . skip ( 'bulkRetrieve: required and optional params' , async ( ) => {
4040 const response = await client . artists . bulkRetrieve ( {
4141 ids : '2CIMQHirSU0MQqyYHq0eOx,57dN52uHvrHOxijzpIgu3E,1vCWHaC5f2uS3yhpwWbIA6' ,
4242 } ) ;
4343 } ) ;
4444
45- // Prism tests are disabled
45+ // Mock server tests are disabled
4646 test . skip ( 'listAlbums' , async ( ) => {
4747 const responsePromise = client . artists . listAlbums ( '0TnOYISbd1XYRBk9myaseg' ) ;
4848 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -54,7 +54,7 @@ describe('resource artists', () => {
5454 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
5555 } ) ;
5656
57- // Prism tests are disabled
57+ // Mock server tests are disabled
5858 test . skip ( 'listAlbums: request options and params are passed correctly' , async ( ) => {
5959 // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
6060 await expect (
@@ -71,7 +71,7 @@ describe('resource artists', () => {
7171 ) . rejects . toThrow ( Spotify . NotFoundError ) ;
7272 } ) ;
7373
74- // Prism tests are disabled
74+ // Mock server tests are disabled
7575 test . skip ( 'listRelatedArtists' , async ( ) => {
7676 const responsePromise = client . artists . listRelatedArtists ( '0TnOYISbd1XYRBk9myaseg' ) ;
7777 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -83,7 +83,7 @@ describe('resource artists', () => {
8383 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
8484 } ) ;
8585
86- // Prism tests are disabled
86+ // Mock server tests are disabled
8787 test . skip ( 'topTracks' , async ( ) => {
8888 const responsePromise = client . artists . topTracks ( '0TnOYISbd1XYRBk9myaseg' ) ;
8989 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -95,7 +95,7 @@ describe('resource artists', () => {
9595 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
9696 } ) ;
9797
98- // Prism tests are disabled
98+ // Mock server tests are disabled
9999 test . skip ( 'topTracks: request options and params are passed correctly' , async ( ) => {
100100 // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
101101 await expect (
0 commit comments