File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,9 @@ export function load(client: any): any {
143
143
client . hosting . sites . get = loadCommand ( "hosting-sites-get" ) ;
144
144
client . hosting . sites . list = loadCommand ( "hosting-sites-list" ) ;
145
145
client . init = loadCommand ( "init" ) ;
146
+ if ( experiments . isEnabled ( "internaltesting" ) ) {
147
+ client . internaltesting = { } ;
148
+ }
146
149
client . login = loadCommand ( "login" ) ;
147
150
client . login . add = loadCommand ( "login-add" ) ;
148
151
client . login . ci = loadCommand ( "login-ci" ) ;
Original file line number Diff line number Diff line change @@ -97,11 +97,17 @@ export const ALL_EXPERIMENTS = experiments({
97
97
"if any service exceeds 500 tags, but it is theoretically possible that a project " +
98
98
"exceeds the region-wide limit of tags and an old site version fails" ,
99
99
} ,
100
-
101
100
// Access experiments
102
101
crossservicerules : {
103
102
shortDescription : "Allow Firebase Rules to reference resources in other services" ,
104
103
} ,
104
+ internaltesting : {
105
+ shortDescription : "Exposes Firebase CLI commands intended for internal testing purposes." ,
106
+ fullDescription :
107
+ "Exposes Firebase CLI commands intended for internal testing purposes. " +
108
+ "These commands are not meant for public consumption and may break or disappear " +
109
+ "without a notice." ,
110
+ } ,
105
111
} ) ;
106
112
107
113
export type ExperimentName = keyof typeof ALL_EXPERIMENTS ;
You can’t perform that action at this time.
0 commit comments