@@ -18,10 +18,10 @@ const templateUI: TemplateUI = "shadcn";
18
18
const templatePostInstallAction : TemplatePostInstallAction = "runApp" ;
19
19
const appType : AppType = templateFramework === "fastapi" ? "--frontend" : "" ;
20
20
const userMessage = "Write a blog post about physical standards for letters" ;
21
- const templateAgents = [ "financial_report" , "blog" , "form_filling" ] ;
21
+ const templateUseCases = [ "financial_report" , "blog" , "form_filling" ] ;
22
22
23
- for ( const agents of templateAgents ) {
24
- test . describe ( `Test multiagent template ${ agents } ${ templateFramework } ${ dataSource } ${ templateUI } ${ appType } ${ templatePostInstallAction } ` , async ( ) => {
23
+ for ( const useCase of templateUseCases ) {
24
+ test . describe ( `Test multiagent template ${ useCase } ${ templateFramework } ${ dataSource } ${ templateUI } ${ appType } ${ templatePostInstallAction } ` , async ( ) => {
25
25
test . skip (
26
26
process . platform !== "linux" || process . env . DATASOURCE === "--no-files" ,
27
27
"The multiagent template currently only works with files. We also only run on Linux to speed up tests." ,
@@ -46,7 +46,7 @@ for (const agents of templateAgents) {
46
46
postInstallAction : templatePostInstallAction ,
47
47
templateUI,
48
48
appType,
49
- agents ,
49
+ useCase ,
50
50
} ) ;
51
51
name = result . projectName ;
52
52
appProcess = result . appProcess ;
@@ -71,8 +71,8 @@ for (const agents of templateAgents) {
71
71
} ) => {
72
72
test . skip (
73
73
templatePostInstallAction !== "runApp" ||
74
- agents === "financial_report" ||
75
- agents === "form_filling" ||
74
+ useCase === "financial_report" ||
75
+ useCase === "form_filling" ||
76
76
templateFramework === "express" ,
77
77
"Skip chat tests for financial report and form filling." ,
78
78
) ;
0 commit comments