File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ const (
3838 // manage their app manifest on app settings (remote manifest).
3939 BoltInstall Experiment = "bolt-install"
4040
41+ // Charm experiment enables beautiful prompts.
42+ Charm Experiment = "charm"
43+
4144 // Placeholder experiment is a placeholder for testing and does nothing... or does it?
4245 Placeholder Experiment = "placeholder"
4346)
@@ -47,6 +50,7 @@ const (
4750var AllExperiments = []Experiment {
4851 BoltFrameworks ,
4952 BoltInstall ,
53+ Charm ,
5054 Placeholder ,
5155}
5256
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ func Test_Includes(t *testing.T) {
2626
2727 // Test expected experiments
2828 require .Equal (t , true , Includes (Experiment ("bolt" )))
29+ require .Equal (t , true , Includes (Experiment ("charm" )))
2930
3031 // Test invalid experiment
3132 require .Equal (t , false , Includes (Experiment ("should-fail" )))
You can’t perform that action at this time.
0 commit comments