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 d2c6153 commit bcc4a51Copy full SHA for bcc4a51
tests/modules/Instabug.spec.js
@@ -141,6 +141,7 @@ describe('Instabug Module', () => {
141
const instabugConfig = {
142
token: 'some-token',
143
invocationEvents: [Instabug.invocationEvent.floatingButton, Instabug.invocationEvent.shake],
144
+ codePushLabel: 'v123',
145
debugLogsLevel: LogLevel.Debug,
146
};
147
Instabug.init(instabugConfig);
@@ -149,6 +150,7 @@ describe('Instabug Module', () => {
149
150
expect(NativeInstabug.init).toBeCalledWith(
151
instabugConfig.token,
152
instabugConfig.invocationEvents,
153
+ instabugConfig.codePushLabel,
154
instabugConfig.debugLogsLevel,
155
);
156
});
0 commit comments