File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const client = new LlamaAPIClient({
8
8
} ) ;
9
9
10
10
describe ( 'resource completions' , ( ) => {
11
- // skipped: tests are disabled for the time being
11
+ // Prism tests are disabled
12
12
test . skip ( 'create: only required params' , async ( ) => {
13
13
const responsePromise = client . chat . completions . create ( {
14
14
messages : [ { content : 'string' , role : 'user' } ] ,
@@ -23,7 +23,7 @@ describe('resource completions', () => {
23
23
expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
24
24
} ) ;
25
25
26
- // skipped: tests are disabled for the time being
26
+ // Prism tests are disabled
27
27
test . skip ( 'create: required and optional params' , async ( ) => {
28
28
const response = await client . chat . completions . create ( {
29
29
messages : [ { content : 'string' , role : 'user' } ] ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const client = new LlamaAPIClient({
8
8
} ) ;
9
9
10
10
describe ( 'resource models' , ( ) => {
11
- // skipped: tests are disabled for the time being
11
+ // Prism tests are disabled
12
12
test . skip ( 'retrieve' , async ( ) => {
13
13
const responsePromise = client . models . retrieve ( 'Llama-3.3-70B-Instruct' ) ;
14
14
const rawResponse = await responsePromise . asResponse ( ) ;
@@ -20,7 +20,7 @@ describe('resource models', () => {
20
20
expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
21
21
} ) ;
22
22
23
- // skipped: tests are disabled for the time being
23
+ // Prism tests are disabled
24
24
test . skip ( 'list' , async ( ) => {
25
25
const responsePromise = client . models . list ( ) ;
26
26
const rawResponse = await responsePromise . asResponse ( ) ;
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const client = new LlamaAPIClient({
8
8
} ) ;
9
9
10
10
describe ( 'resource moderations' , ( ) => {
11
- // skipped: tests are disabled for the time being
11
+ // Prism tests are disabled
12
12
test . skip ( 'create: only required params' , async ( ) => {
13
13
const responsePromise = client . moderations . create ( { messages : [ { content : 'string' , role : 'user' } ] } ) ;
14
14
const rawResponse = await responsePromise . asResponse ( ) ;
@@ -20,7 +20,7 @@ describe('resource moderations', () => {
20
20
expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
21
21
} ) ;
22
22
23
- // skipped: tests are disabled for the time being
23
+ // Prism tests are disabled
24
24
test . skip ( 'create: required and optional params' , async ( ) => {
25
25
const response = await client . moderations . create ( {
26
26
messages : [ { content : 'string' , role : 'user' } ] ,
You can’t perform that action at this time.
0 commit comments