We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
codePushLabel
init
1 parent 8dfe0d4 commit 1152305Copy full SHA for 1152305
test/modules/Instabug.spec.ts
@@ -171,13 +171,15 @@ describe('Instabug Module', () => {
171
token: 'some-token',
172
invocationEvents: [InvocationEvent.floatingButton, InvocationEvent.shake],
173
debugLogsLevel: LogLevel.debug,
174
+ codePushLabel: 'v123',
175
};
176
Instabug.init(instabugConfig);
177
178
expect(NativeInstabug.init).toBeCalledTimes(1);
179
expect(NativeInstabug.init).toBeCalledWith(
180
instabugConfig.token,
181
instabugConfig.invocationEvents,
182
+ instabugConfig.codePushLabel,
183
instabugConfig.debugLogsLevel,
184
);
185
});
0 commit comments