File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
pages/ManagementSettingsPage Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,14 @@ const updateUserRole = async (role: SlimRole) => {
59
59
} ;
60
60
} ;
61
61
62
+ beforeAll ( ( ) => {
63
+ server . use (
64
+ http . get ( "/api/v2/experiments" , ( ) => {
65
+ return HttpResponse . json ( [ "multi-organization" ] ) ;
66
+ } ) ,
67
+ ) ;
68
+ } ) ;
69
+
62
70
describe ( "OrganizationMembersPage" , ( ) => {
63
71
describe ( "remove member" , ( ) => {
64
72
describe ( "when it is success" , ( ) => {
Original file line number Diff line number Diff line change @@ -2209,7 +2209,7 @@ export const MockEntitlementsWithUserLimit: TypesGen.Entitlements = {
2209
2209
} ) ,
2210
2210
} ;
2211
2211
2212
- export const MockExperiments : TypesGen . Experiment [ ] = [ "multi-organization" ] ;
2212
+ export const MockExperiments : TypesGen . Experiment [ ] = [ ] ;
2213
2213
2214
2214
export const MockAuditLog : TypesGen . AuditLog = {
2215
2215
id : "fbd2116a-8961-4954-87ae-e4575bd29ce0" ,
You can’t perform that action at this time.
0 commit comments