@@ -8,7 +8,7 @@ const client = new CasParser({
88} ) ;
99
1010describe ( 'resource inbox' , ( ) => {
11- // Prism tests are disabled
11+ // Mock server tests are disabled
1212 test . skip ( 'checkConnectionStatus: only required params' , async ( ) => {
1313 const responsePromise = client . inbox . checkConnectionStatus ( { 'x-inbox-token' : 'x-inbox-token' } ) ;
1414 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -20,12 +20,12 @@ describe('resource inbox', () => {
2020 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
2121 } ) ;
2222
23- // Prism tests are disabled
23+ // Mock server tests are disabled
2424 test . skip ( 'checkConnectionStatus: required and optional params' , async ( ) => {
2525 const response = await client . inbox . checkConnectionStatus ( { 'x-inbox-token' : 'x-inbox-token' } ) ;
2626 } ) ;
2727
28- // Prism tests are disabled
28+ // Mock server tests are disabled
2929 test . skip ( 'connectEmail: only required params' , async ( ) => {
3030 const responsePromise = client . inbox . connectEmail ( { redirect_uri : 'https://yourapp.com/oauth-callback' } ) ;
3131 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -37,15 +37,15 @@ describe('resource inbox', () => {
3737 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
3838 } ) ;
3939
40- // Prism tests are disabled
40+ // Mock server tests are disabled
4141 test . skip ( 'connectEmail: required and optional params' , async ( ) => {
4242 const response = await client . inbox . connectEmail ( {
4343 redirect_uri : 'https://yourapp.com/oauth-callback' ,
4444 state : 'abc123' ,
4545 } ) ;
4646 } ) ;
4747
48- // Prism tests are disabled
48+ // Mock server tests are disabled
4949 test . skip ( 'disconnectEmail: only required params' , async ( ) => {
5050 const responsePromise = client . inbox . disconnectEmail ( { 'x-inbox-token' : 'x-inbox-token' } ) ;
5151 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -57,12 +57,12 @@ describe('resource inbox', () => {
5757 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
5858 } ) ;
5959
60- // Prism tests are disabled
60+ // Mock server tests are disabled
6161 test . skip ( 'disconnectEmail: required and optional params' , async ( ) => {
6262 const response = await client . inbox . disconnectEmail ( { 'x-inbox-token' : 'x-inbox-token' } ) ;
6363 } ) ;
6464
65- // Prism tests are disabled
65+ // Mock server tests are disabled
6666 test . skip ( 'listCasFiles: only required params' , async ( ) => {
6767 const responsePromise = client . inbox . listCasFiles ( { 'x-inbox-token' : 'x-inbox-token' } ) ;
6868 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -74,7 +74,7 @@ describe('resource inbox', () => {
7474 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
7575 } ) ;
7676
77- // Prism tests are disabled
77+ // Mock server tests are disabled
7878 test . skip ( 'listCasFiles: required and optional params' , async ( ) => {
7979 const response = await client . inbox . listCasFiles ( {
8080 'x-inbox-token' : 'x-inbox-token' ,
0 commit comments