![img1]()
- Organic Music Production in a Sustainable, Ethical and Professional Studio.
-
-
- Social Permaculture focuses on nourishing our environment with abundance instead of depleting it.
-
-
- Banyan Studios is a comfortable, conscious, inspiring and creative retreat for musicians trying to convey their message through state of the art Audio & Video.
-
-
https://vimeo.com/168106603
- ",
+ "__html": "listing1 description",
}
} />
@@ -129,7 +118,7 @@ exports[`ListingPage matches snapshot 1`] = `
"id": 12345,
}
}>
- Book Banyan Studios
+ Book listing1 title
`;
diff --git a/src/util/test-helpers.js b/src/util/test-helpers.js
index e2021dac..ef40478e 100644
--- a/src/util/test-helpers.js
+++ b/src/util/test-helpers.js
@@ -46,3 +46,15 @@ export const renderDeep = component => {
);
return comp.toJSON();
};
+
+// Create fake Internalization object to help with shallow rendering.
+export const fakeIntl = {
+ formatDate: d => d,
+ formatHTMLMessage: d => d,
+ formatMessage: msg => msg.defaultMessage,
+ formatNumber: d => d,
+ formatPlural: d => d,
+ formatRelative: d => d,
+ formatTime: d => d,
+ now: d => d,
+};