Skip to content

Commit bb5b455

Browse files
committed
Fix tests
1 parent 6a3809a commit bb5b455

File tree

2 files changed

+22
-14
lines changed

2 files changed

+22
-14
lines changed

RNNotifications/RNNotifications.xcodeproj/project.pbxproj

+18-10
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@
140140
508CE81122D12F3C00357815 /* Notifications */ = {
141141
isa = PBXGroup;
142142
children = (
143+
50E49F0522D1E4E0007160C1 /* RNNotificationsStore.h */,
144+
50E49F0622D1E4E0007160C1 /* RNNotificationsStore.m */,
143145
508CE7D322D12CCA00357815 /* RNNotificationEventHandler.h */,
144146
508CE7D422D12CCA00357815 /* RNNotificationEventHandler.m */,
145147
508CE81522D12FF500357815 /* RNNotificationCenterListener.h */,
@@ -166,28 +168,34 @@
166168
children = (
167169
508CE82022D1372E00357815 /* RNUtils.h */,
168170
508CE82122D1372E00357815 /* RNUtils.m */,
171+
50351F9322CD7FF1000713B3 /* RCTConvert+Notifications.h */,
172+
50351F9422CD7FF1000713B3 /* RCTConvert+Notifications.m */,
169173
);
170174
name = Helpers;
171175
sourceTree = "<group>";
172176
};
177+
50E4A03D22D220E8007160C1 /* Bridge */ = {
178+
isa = PBXGroup;
179+
children = (
180+
50351F9022CD7DF4000713B3 /* RNBridgeModule.h */,
181+
50351F9122CD7DF4000713B3 /* RNBridgeModule.m */,
182+
50351F8D22CD782F000713B3 /* RNEventEmitter.h */,
183+
50351F8E22CD782F000713B3 /* RNEventEmitter.m */,
184+
);
185+
name = Bridge;
186+
sourceTree = "<group>";
187+
};
173188
58B511D21A9E6C8500147676 = {
174189
isa = PBXGroup;
175190
children = (
191+
50E4A03D22D220E8007160C1 /* Bridge */,
176192
508CE81222D12F4300357815 /* PushKitNotifications */,
177193
508CE81122D12F3C00357815 /* Notifications */,
178194
508CE81F22D1371700357815 /* Helpers */,
179-
50351F9022CD7DF4000713B3 /* RNBridgeModule.h */,
180-
50351F9122CD7DF4000713B3 /* RNBridgeModule.m */,
181-
50351F9622CD8604000713B3 /* RNCommandsHandler.h */,
182-
50351F9722CD8604000713B3 /* RNCommandsHandler.m */,
183195
D8A2F7561CB57F28002CC8F5 /* RNNotifications.h */,
184196
D8A2F7541CB57F1A002CC8F5 /* RNNotifications.m */,
185-
50E49F0522D1E4E0007160C1 /* RNNotificationsStore.h */,
186-
50E49F0622D1E4E0007160C1 /* RNNotificationsStore.m */,
187-
50351F8D22CD782F000713B3 /* RNEventEmitter.h */,
188-
50351F8E22CD782F000713B3 /* RNEventEmitter.m */,
189-
50351F9322CD7FF1000713B3 /* RCTConvert+Notifications.h */,
190-
50351F9422CD7FF1000713B3 /* RCTConvert+Notifications.m */,
197+
50351F9622CD8604000713B3 /* RNCommandsHandler.h */,
198+
50351F9722CD8604000713B3 /* RNCommandsHandler.m */,
191199
508CE7BA22D12B0A00357815 /* Tests */,
192200
508CE7C922D12B2600357815 /* RNNotificationsTests */,
193201
134814211AA4EA7D00B7C361 /* Products */,

babel.config.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ module.exports = function (api) {
22
api && api.cache(false);
33
return {
44
presets: [
5-
"module:metro-react-native-babel-preset"
5+
'module:metro-react-native-babel-preset'
66
],
77
plugins: [
8-
"@babel/plugin-proposal-export-namespace-from",
9-
"@babel/plugin-proposal-export-default-from"
8+
'@babel/plugin-proposal-export-namespace-from',
9+
'@babel/plugin-proposal-export-default-from'
1010
]
1111
};
12-
}
12+
};

0 commit comments

Comments
 (0)