@@ -219,7 +219,9 @@ enum ROUTES {
219
219
AIAChatCodeGenerationDashboard = `${ ROUTE_PREFIX . AIA } /chatCodeGeneration` ,
220
220
AIANameSuggestionDashboard = `${ ROUTE_PREFIX . AIA } /nameSuggestion` ,
221
221
AIATestGenerationDashboard = `${ ROUTE_PREFIX . AIA } /testGeneration` ,
222
- KMTTests = `${ ROUTE_PREFIX . KMT } /${ TEST_ROUTE } ` ,
222
+ KMTTests = `${ ROUTE_PREFIX . KMT } /unitTests` ,
223
+ KMTIntegrationTests = `${ ROUTE_PREFIX . KMT } /${ TEST_ROUTE } ` ,
224
+ KMTDashboard = `${ ROUTE_PREFIX . KMT } /${ DASHBOARD_ROUTE } ` ,
223
225
DiogenTests = `${ ROUTE_PREFIX . Diogen } /${ TEST_ROUTE } ` ,
224
226
ToolboxTests = `${ ROUTE_PREFIX . Toolbox } /${ TEST_ROUTE } ` ,
225
227
ReportDegradations = "/degradations/report" ,
@@ -1177,9 +1179,17 @@ const KMT: Product = {
1177
1179
url : ROUTE_PREFIX . KMT ,
1178
1180
label : "" ,
1179
1181
tabs : [
1182
+ {
1183
+ url : ROUTES . KMTDashboard ,
1184
+ label : "Dashboard" ,
1185
+ } ,
1186
+ {
1187
+ url : ROUTES . KMTIntegrationTests ,
1188
+ label : "Integration Tests" ,
1189
+ } ,
1180
1190
{
1181
1191
url : ROUTES . KMTTests ,
1182
- label : "All " ,
1192
+ label : "Unit Tests " ,
1183
1193
} ,
1184
1194
] ,
1185
1195
} ,
@@ -2392,7 +2402,24 @@ export function getNewDashboardRoutes(): ParentRouteRecord[] {
2392
2402
branch : null ,
2393
2403
initialMachine : "Mac Cidr Performance" ,
2394
2404
} ,
2395
- meta : { pageTitle : "AIA Tests" } ,
2405
+ meta : { pageTitle : "KMT Unit Tests" } ,
2406
+ } ,
2407
+ {
2408
+ path : ROUTES . KMTIntegrationTests ,
2409
+ component : ( ) => import ( "./components/common/PerformanceTests.vue" ) ,
2410
+ props : {
2411
+ dbName : "perfintDev" ,
2412
+ table : "kmt" ,
2413
+ withInstaller : false ,
2414
+ branch : "master" ,
2415
+ initialMachine : "Mac Cidr Performance" ,
2416
+ } ,
2417
+ meta : { pageTitle : "KMT Integration Tests" } ,
2418
+ } ,
2419
+ {
2420
+ path : ROUTES . KMTDashboard ,
2421
+ component : ( ) => import ( "./components/kmt/PerformanceDashboard.vue" ) ,
2422
+ meta : { pageTitle : "KMT Dashboard" } ,
2396
2423
} ,
2397
2424
{
2398
2425
path : ROUTES . DiogenTests ,
0 commit comments