aboutsummaryrefslogtreecommitdiffstats
path: root/development/test.html
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2016-12-02 02:30:31 +0800
committerGitHub <noreply@github.com>2016-12-02 02:30:31 +0800
commiteb7cf2bf310419246b59044e80c88a2bcabb9c34 (patch)
treef1f3bff45a4e6951bb073aa6684791908901afb3 /development/test.html
parent5af41573638e438f4af496afe18d9a01f89c7733 (diff)
parentc43178360203b4571d9e00880b5bf2806908c179 (diff)
downloadtangerine-wallet-browser-eb7cf2bf310419246b59044e80c88a2bcabb9c34.tar.gz
tangerine-wallet-browser-eb7cf2bf310419246b59044e80c88a2bcabb9c34.tar.zst
tangerine-wallet-browser-eb7cf2bf310419246b59044e80c88a2bcabb9c34.zip
Merge pull request #904 from MetaMask/BetterIntegrationTest
Made integration test suite better, added a step to story
Diffstat (limited to 'development/test.html')
-rw-r--r--development/test.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/development/test.html b/development/test.html
new file mode 100644
index 000000000..702be7fa0
--- /dev/null
+++ b/development/test.html
@@ -0,0 +1,31 @@
+<!doctype html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>MetaMask</title>
+
+ <script>
+ window.METAMASK_DEBUG = true
+ window.TEST_MODE = true
+ </script>
+ </head>
+ <body>
+
+ <!-- app content -->
+ <div id="app-content" style="height: 100%"></div>
+ <script src="./bundle.js" type="text/javascript" charset="utf-8"></script>
+
+ </body>
+
+<style>
+html, body, #app-content, .super-dev-container {
+ height: 100%;
+ width: 100%;
+ position: relative;
+ background: white;
+}
+.mock-app-root {
+ background: #F7F7F7;
+}
+</style>
+</html>