@@ -204,38 +204,6 @@ describe("Cloudflare Docs", () => {
204204 const text = await response . text ( ) ;
205205 expect ( text ) . toContain ( "# Cloudflare Developer Documentation" ) ;
206206 } ) ;
207-
208- it ( "llms-full.txt" , async ( ) => {
209- const request = new Request ( "http://fakehost/llms-full.txt" ) ;
210- const response = await SELF . fetch ( request ) ;
211-
212- expect ( response . status ) . toBe ( 200 ) ;
213-
214- const text = await response . text ( ) ;
215- expect ( text ) . toContain ( "<page>" ) ;
216- } ) ;
217-
218- it ( "product-specific llms-full.txt" , async ( ) => {
219- const request = new Request ( "http://fakehost/workers/llms-full.txt" ) ;
220- const response = await SELF . fetch ( request ) ;
221-
222- expect ( response . status ) . toBe ( 200 ) ;
223-
224- const text = await response . text ( ) ;
225- expect ( text ) . toContain ( "<page>" ) ;
226- } ) ;
227-
228- it ( "area-specific llms-full.txt" , async ( ) => {
229- const request = new Request (
230- "http://fakehost/developer-platform/llms-full.txt" ,
231- ) ;
232- const response = await SELF . fetch ( request ) ;
233-
234- expect ( response . status ) . toBe ( 200 ) ;
235-
236- const text = await response . text ( ) ;
237- expect ( text ) . toContain ( "<page>" ) ;
238- } ) ;
239207 } ) ;
240208
241209 describe ( "index.md handling" , ( ) => {
0 commit comments