File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 46
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-46f433f34d440aa1dfcc48cc8d822c598571b68be2f723ec99e1b4fba6c13b1e.yml
33openapi_spec_hash : 5b5cd728776723ac773900f7e8a32c05
4- config_hash : 83522e0e335cf983f8d2119c1f2bba18
4+ config_hash : ccdf6a5b4aaa2a0897c89ac8685d8eb0
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ const client = new Finch({
1010} ) ;
1111
1212describe ( 'resource accessTokens' , ( ) => {
13- test ( 'create: only required params' , async ( ) => {
13+ // prism doesnt like the format for the API-Version header
14+ test . skip ( 'create: only required params' , async ( ) => {
1415 const responsePromise = client . accessTokens . create ( { code : 'code' } ) ;
1516 const rawResponse = await responsePromise . asResponse ( ) ;
1617 expect ( rawResponse ) . toBeInstanceOf ( Response ) ;
@@ -21,7 +22,8 @@ describe('resource accessTokens', () => {
2122 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
2223 } ) ;
2324
24- test ( 'create: required and optional params' , async ( ) => {
25+ // prism doesnt like the format for the API-Version header
26+ test . skip ( 'create: required and optional params' , async ( ) => {
2527 const response = await client . accessTokens . create ( {
2628 code : 'code' ,
2729 client_id : '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' ,
You can’t perform that action at this time.
0 commit comments