File tree Expand file tree Collapse file tree 1 file changed +0
-21
lines changed
Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -113,25 +113,4 @@ describe("ReflagBootstrappedProvider", () => {
113113 expect ( wrapper . findComponent ( Child ) . vm . client ) . toBeDefined ( ) ;
114114 expect ( wrapper . findComponent ( Child ) . vm . flag . isEnabled . value ) . toBe ( true ) ;
115115 } ) ;
116-
117- test ( "handles missing flags gracefully" , async ( ) => {
118- const Child = defineComponent ( {
119- setup ( ) {
120- const client = useClient ( ) ;
121- return { client } ;
122- } ,
123- template : "<div></div>" ,
124- } ) ;
125-
126- const wrapper = mount ( ReflagBootstrappedProvider , {
127- props : {
128- publishableKey : "key" ,
129- // No flags provided
130- } ,
131- slots : { default : ( ) => h ( Child ) } ,
132- } ) ;
133-
134- await nextTick ( ) ;
135- expect ( wrapper . findComponent ( Child ) . vm . client ) . toBeUndefined ( ) ;
136- } ) ;
137116} ) ;
You can’t perform that action at this time.
0 commit comments