@@ -35,7 +35,7 @@ if (Platform.other) {
35
35
platformSupportedModules . push ( 'remoteConfig' ) ;
36
36
platformSupportedModules . push ( 'analytics' ) ;
37
37
platformSupportedModules . push ( 'appCheck' ) ;
38
- platformSupportedModules . push ( 'vertexai ' ) ;
38
+ platformSupportedModules . push ( 'ai ' ) ;
39
39
// TODO add more modules here once they are supported.
40
40
}
41
41
@@ -56,7 +56,7 @@ if (!Platform.other) {
56
56
platformSupportedModules . push ( 'appCheck' ) ;
57
57
platformSupportedModules . push ( 'appDistribution' ) ;
58
58
platformSupportedModules . push ( 'ml' ) ;
59
- platformSupportedModules . push ( 'vertexai ' ) ;
59
+ platformSupportedModules . push ( 'ai ' ) ;
60
60
}
61
61
// Registering an error handler that always throw unhandled exceptions
62
62
// This is to enable Jet to exit on uncaught errors
@@ -227,10 +227,9 @@ function loadTests(_) {
227
227
) ;
228
228
remoteConfigTests . keys ( ) . forEach ( remoteConfigTests ) ;
229
229
}
230
-
231
- if ( platformSupportedModules . includes ( 'vertexai' ) ) {
232
- const vertexaiTests = require . context ( '../packages/vertexai/e2e' , true , / \. e 2 e \. j s $ / ) ;
233
- vertexaiTests . keys ( ) . forEach ( vertexaiTests ) ;
230
+ if ( platformSupportedModules . includes ( 'ai' ) ) {
231
+ const aiTests = require . context ( '../packages/ai/e2e' , true , / \. e 2 e \. j s $ / ) ;
232
+ aiTests . keys ( ) . forEach ( aiTests ) ;
234
233
}
235
234
if ( platformSupportedModules . includes ( 'storage' ) ) {
236
235
const storageTests = require . context ( '../packages/storage/e2e' , true , / \. e 2 e \. j s $ / ) ;
0 commit comments