Skip to content

Commit 38255d4

Browse files
committed
Clean logs
1 parent e819748 commit 38255d4

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

example/index.ios.js

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ class NotificationsExampleApp extends Component {
6161
}
6262

6363
onNotificationReceivedForeground(notification) {
64-
alert(JSON.stringify(notification));
6564
console.log('Notification Received Foreground: ' + JSON.stringify(notification));
6665
this.setState({
6766
notifications: [...this.state.notifications, notification]

test/index.android.spec.js

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ describe('Notifications-Android', () => {
3535
it('should assign callback to native event upon listener registration', () => {
3636
expect(deviceEventEmitterListenerStub).toHaveBeenCalledTimes(0);
3737
const userListener = () => {};
38-
console.log(libUnderTest);
3938
libUnderTest.NotificationsAndroid.setRegistrationTokenUpdateListener(userListener);
4039

4140
expect(deviceEventEmitterListenerStub).toHaveBeenCalledWith('remoteNotificationsRegistered', userListener);

0 commit comments

Comments
 (0)