@@ -8,7 +8,7 @@ const client = new BrowserUse({
88} ) ;
99
1010describe ( 'resource tasks' , ( ) => {
11- // skipped: tests are disabled for the time being
11+ // Prism tests are disabled
1212 test . skip ( 'create: only required params' , async ( ) => {
1313 const responsePromise = client . tasks . create ( { task : 'x' } ) ;
1414 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -20,7 +20,7 @@ describe('resource tasks', () => {
2020 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
2121 } ) ;
2222
23- // skipped: tests are disabled for the time being
23+ // Prism tests are disabled
2424 test . skip ( 'create: required and optional params' , async ( ) => {
2525 const response = await client . tasks . create ( {
2626 task : 'x' ,
@@ -37,7 +37,7 @@ describe('resource tasks', () => {
3737 } ) ;
3838 } ) ;
3939
40- // skipped: tests are disabled for the time being
40+ // Prism tests are disabled
4141 test . skip ( 'retrieve' , async ( ) => {
4242 const responsePromise = client . tasks . retrieve ( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' ) ;
4343 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -49,7 +49,7 @@ describe('resource tasks', () => {
4949 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
5050 } ) ;
5151
52- // skipped: tests are disabled for the time being
52+ // Prism tests are disabled
5353 test . skip ( 'retrieve: request options and params are passed correctly' , async ( ) => {
5454 // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
5555 await expect (
@@ -61,7 +61,7 @@ describe('resource tasks', () => {
6161 ) . rejects . toThrow ( BrowserUse . NotFoundError ) ;
6262 } ) ;
6363
64- // skipped: tests are disabled for the time being
64+ // Prism tests are disabled
6565 test . skip ( 'update: only required params' , async ( ) => {
6666 const responsePromise = client . tasks . update ( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' , { action : 'stop' } ) ;
6767 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -73,12 +73,12 @@ describe('resource tasks', () => {
7373 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
7474 } ) ;
7575
76- // skipped: tests are disabled for the time being
76+ // Prism tests are disabled
7777 test . skip ( 'update: required and optional params' , async ( ) => {
7878 const response = await client . tasks . update ( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' , { action : 'stop' } ) ;
7979 } ) ;
8080
81- // skipped: tests are disabled for the time being
81+ // Prism tests are disabled
8282 test . skip ( 'list' , async ( ) => {
8383 const responsePromise = client . tasks . list ( ) ;
8484 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -90,7 +90,7 @@ describe('resource tasks', () => {
9090 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
9191 } ) ;
9292
93- // skipped: tests are disabled for the time being
93+ // Prism tests are disabled
9494 test . skip ( 'list: request options and params are passed correctly' , async ( ) => {
9595 // ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
9696 await expect (
@@ -107,7 +107,7 @@ describe('resource tasks', () => {
107107 ) . rejects . toThrow ( BrowserUse . NotFoundError ) ;
108108 } ) ;
109109
110- // skipped: tests are disabled for the time being
110+ // Prism tests are disabled
111111 test . skip ( 'retrieveLogs' , async ( ) => {
112112 const responsePromise = client . tasks . retrieveLogs ( '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' ) ;
113113 const rawResponse = await responsePromise . asResponse ( ) ;
@@ -119,7 +119,7 @@ describe('resource tasks', () => {
119119 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
120120 } ) ;
121121
122- // skipped: tests are disabled for the time being
122+ // Prism tests are disabled
123123 test . skip ( 'retrieveOutputFile: only required params' , async ( ) => {
124124 const responsePromise = client . tasks . retrieveOutputFile ( 'file_name' , {
125125 task_id : '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' ,
@@ -133,7 +133,7 @@ describe('resource tasks', () => {
133133 expect ( dataAndResponse . response ) . toBe ( rawResponse ) ;
134134 } ) ;
135135
136- // skipped: tests are disabled for the time being
136+ // Prism tests are disabled
137137 test . skip ( 'retrieveOutputFile: required and optional params' , async ( ) => {
138138 const response = await client . tasks . retrieveOutputFile ( 'file_name' , {
139139 task_id : '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e' ,
0 commit comments