@@ -5,7 +5,7 @@ test.describe('Landing page', () => {
55 await page . goto ( '/' ) ;
66
77 const groupedRows = page . locator ( '.app-row[data-group]' ) ;
8- await expect ( groupedRows ) . toHaveCount ( 4 ) ;
8+ await expect ( groupedRows ) . toHaveCount ( 3 ) ;
99
1010 const expectedRows = [
1111 {
@@ -20,12 +20,6 @@ test.describe('Landing page', () => {
2020 texts : [ '💬 Quotes' , 'All Quotes' ] ,
2121 hrefs : [ 'apps/quotes/' , 'apps/quotes/all-quotes.html' ] ,
2222 } ,
23- {
24- group : 'total-recall' ,
25- label : 'Total Recall' ,
26- texts : [ '🧠 Total Recall' ] ,
27- hrefs : [ 'apps/total-recall/' ] ,
28- } ,
2923 {
3024 group : 'slang' ,
3125 label : 'Slang' ,
@@ -62,7 +56,7 @@ test.describe('Landing page', () => {
6256
6357 const toolSection = page . locator ( 'section.app-groups' ) . nth ( 1 ) ;
6458 const toolButtons = toolSection . locator ( 'a.app-button, a.docs-button' ) ;
65- await expect ( toolButtons ) . toHaveCount ( 6 ) ;
59+ await expect ( toolButtons ) . toHaveCount ( 9 ) ;
6660
6761 const toolInfo = await toolButtons . evaluateAll ( ( nodes ) =>
6862 nodes . map ( ( node ) => ( {
@@ -72,11 +66,14 @@ test.describe('Landing page', () => {
7266 ) ;
7367
7468 expect ( toolInfo ) . toEqual ( [
69+ { text : '🧠 Total Recall' , href : 'apps/total-recall/' } ,
7570 { text : '🧪 Cosine Similarity Lab' , href : 'apps/similarity-report/' } ,
7671 { text : '🧬 Embedding Explorer' , href : 'apps/embedding-explorer/' } ,
7772 { text : '📊 Asset Observatory' , href : 'apps/asset-observatory/' } ,
7873 { text : '🧰 Value Formatter' , href : 'apps/value-formatter/' } ,
79- { text : '📚 AI Docs' , href : 'ai_docs/' } ,
74+ { text : '🧵 Cloth Lab' , href : 'apps/cloth/' } ,
75+ { text : '🐇 Enchanted Forest Bunny' , href : 'apps/enchanted-bunny/' } ,
76+ { text : '📖 Docs' , href : 'docs/' } ,
8077 { text : '📚 Blog' , href : 'apps/wiki/' } ,
8178 ] ) ;
8279
@@ -86,6 +83,6 @@ test.describe('Landing page', () => {
8683 await expect ( valueFormatterButton ) . not . toContainText ( '—' ) ;
8784
8885 const allButtons = page . locator ( 'a.app-button, a.docs-button' ) ;
89- await expect ( allButtons ) . toHaveCount ( 13 ) ;
86+ await expect ( allButtons ) . toHaveCount ( 15 ) ;
9087 } ) ;
9188} ) ;
0 commit comments