|
@@ -64,7 +64,7 @@ export const InAppNotificationPage: FC = () => {
|
|
|
|
|
|
|
|
if (notificationData == null) {
|
|
if (notificationData == null) {
|
|
|
return (
|
|
return (
|
|
|
- <div className="wiki">
|
|
|
|
|
|
|
+ <div className="wiki" data-testid="grw-in-app-notification-page-spinner">
|
|
|
<div className="text-muted text-center">
|
|
<div className="text-muted text-center">
|
|
|
<i className="fa fa-2x fa-spinner fa-pulse mr-1"></i>
|
|
<i className="fa fa-2x fa-spinner fa-pulse mr-1"></i>
|
|
|
</div>
|
|
</div>
|
|
@@ -138,7 +138,9 @@ export const InAppNotificationPage: FC = () => {
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
return (
|
|
|
- <CustomNavAndContents navTabMapping={navTabMapping} tabContentClasses={['mt-4']} />
|
|
|
|
|
|
|
+ <div data-testid="grw-in-app-notification-page">
|
|
|
|
|
+ <CustomNavAndContents navTabMapping={navTabMapping} tabContentClasses={['mt-4']} />
|
|
|
|
|
+ </div>
|
|
|
);
|
|
);
|
|
|
};
|
|
};
|
|
|
|
|
|