@@ -35,7 +35,7 @@ if (Platform.other) {
3535 platformSupportedModules . push ( 'remoteConfig' ) ;
3636 platformSupportedModules . push ( 'analytics' ) ;
3737 platformSupportedModules . push ( 'appCheck' ) ;
38- platformSupportedModules . push ( 'vertexai ' ) ;
38+ platformSupportedModules . push ( 'ai ' ) ;
3939 // TODO add more modules here once they are supported.
4040}
4141
@@ -56,7 +56,7 @@ if (!Platform.other) {
5656 platformSupportedModules . push ( 'appCheck' ) ;
5757 platformSupportedModules . push ( 'appDistribution' ) ;
5858 platformSupportedModules . push ( 'ml' ) ;
59- platformSupportedModules . push ( 'vertexai ' ) ;
59+ platformSupportedModules . push ( 'ai ' ) ;
6060}
6161// Registering an error handler that always throw unhandled exceptions
6262// This is to enable Jet to exit on uncaught errors
@@ -227,10 +227,9 @@ function loadTests(_) {
227227 ) ;
228228 remoteConfigTests . keys ( ) . forEach ( remoteConfigTests ) ;
229229 }
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 ) ;
234233 }
235234 if ( platformSupportedModules . includes ( 'storage' ) ) {
236235 const storageTests = require . context ( '../packages/storage/e2e' , true , / \. e 2 e \. j s $ / ) ;
0 commit comments