File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -825,25 +825,6 @@ describe('Instabug Module', () => {
825
825
expect ( emitter . listenerCount ( NativeEvents . PRESENDING_HANDLER ) ) . toBe ( 1 ) ;
826
826
} ) ;
827
827
828
- it ( 'should call native addExperiments method' , ( ) => {
829
- const experiments = [ 'exp1' , 'exp2' ] ;
830
- Instabug . addExperiments ( experiments ) ;
831
- expect ( NativeInstabug . addExperiments ) . toBeCalledTimes ( 1 ) ;
832
- expect ( NativeInstabug . addExperiments ) . toBeCalledWith ( experiments ) ;
833
- } ) ;
834
-
835
- it ( 'should call native removeExperiments method' , ( ) => {
836
- const experiments = [ 'exp1' , 'exp2' ] ;
837
- Instabug . removeExperiments ( experiments ) ;
838
- expect ( NativeInstabug . removeExperiments ) . toBeCalledTimes ( 1 ) ;
839
- expect ( NativeInstabug . removeExperiments ) . toBeCalledWith ( experiments ) ;
840
- } ) ;
841
-
842
- it ( 'should call native clearAllExperiments method' , ( ) => {
843
- Instabug . clearAllExperiments ( ) ;
844
- expect ( NativeInstabug . clearAllExperiments ) . toBeCalledTimes ( 1 ) ;
845
- } ) ;
846
-
847
828
it ( 'should call native addFeatureFlags method' , ( ) => {
848
829
const featureFlags : Array < FeatureFlag > = [
849
830
{
You can’t perform that action at this time.
0 commit comments