diff --git a/react-helmet/react-helmet-tests.tsx b/react-helmet/react-helmet-tests.tsx
new file mode 100644
index 000000000..c50bdf2e1
--- /dev/null
+++ b/react-helmet/react-helmet-tests.tsx
@@ -0,0 +1,41 @@
+///
+///
+
+import * as React from 'react';
+import Helmet from 'react-helmet';
+
+
+
+const head = Helmet.rewind();
+const html = `
+
+
+
+ ${ head.title.toString() }
+ ${ head.meta.toString() }
+ ${ head.link.toString() }
+
+
+
+ // React stuff here
+
+
+
+`;
+
+function HTML() {
+ return (
+
+
+ { head.title.toComponent() }
+ { head.meta.toComponent() }
+ { head.link.toComponent() }
+
+
+
+ // React stuff here
+
+
+
+ );
+}