Fix ember browser tests to always use full height of preview container

no issue
- adds style to client/tests/index.html to force preview container and inner element to always fill 100%
- fixes issue with infinite-scroll test failing in browser but passing in phantomjs
This commit is contained in:
Kevin Ansfield 2015-11-04 15:43:05 +00:00
parent eedcdf2f17
commit e6cef8fcb9

View File

@ -24,6 +24,16 @@
{{content-for 'head-footer'}}
{{content-for 'test-head-footer'}}
<style>
/* fix to ensure we use full viewport height when testing */
#ember-testing {
height: 100%;
}
#ember-testing > div {
height: 100%;
}
</style>
</head>
<body>