@@ -59,6 +59,7 @@ const mockConfiguration: Writable<ExtensionConfiguration> = writable({
59
59
modelUploadDisabled : false ,
60
60
experimentalTuning : false ,
61
61
showGPUPromotion : false ,
62
+ inferenceRuntime : 'llama-cpp' ,
62
63
appearance : 'dark' ,
63
64
} ) ;
64
65
@@ -75,6 +76,7 @@ test('renders Start Fine Tuning button if experimentalTuning is true', async ()
75
76
modelUploadDisabled : false ,
76
77
modelsPath : '' ,
77
78
experimentalTuning : true ,
79
+ inferenceRuntime : 'llama-cpp' ,
78
80
apiPort : - 1 ,
79
81
appearance : 'dark' ,
80
82
} ) ;
@@ -89,6 +91,7 @@ test('does not render Start Fine Tuning button if experimentalTuning is false',
89
91
modelUploadDisabled : false ,
90
92
modelsPath : '' ,
91
93
experimentalTuning : false ,
94
+ inferenceRuntime : 'llama-cpp' ,
92
95
apiPort : - 1 ,
93
96
appearance : 'dark' ,
94
97
} ) ;
@@ -103,6 +106,7 @@ test('navigates to /tune/start when Start Fine Tuning is clicked', async () => {
103
106
modelUploadDisabled : false ,
104
107
modelsPath : '' ,
105
108
experimentalTuning : true ,
109
+ inferenceRuntime : 'llama-cpp' ,
106
110
apiPort : - 1 ,
107
111
appearance : 'dark' ,
108
112
} ) ;
0 commit comments