Skip to content

Commit 8b0c750

Browse files
committed
fix: remove tests
1 parent 7018193 commit 8b0c750

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

test/modules/Instabug.spec.ts

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -825,25 +825,6 @@ describe('Instabug Module', () => {
825825
expect(emitter.listenerCount(NativeEvents.PRESENDING_HANDLER)).toBe(1);
826826
});
827827

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-
847828
it('should call native addFeatureFlags method', () => {
848829
const featureFlags: Array<FeatureFlag> = [
849830
{

0 commit comments

Comments
 (0)