What are people using for headless browser testing their emberjs application. I have tried both zomebiejs and tobi but i always stumble across the same problem. When I issue a request to my home page i only seem to get a partially rendered page where the handlebar tags aren't processed.
<body> <script type="text/x-handlebars" data-template-name="application">
<div class="container">
{{outlet mainView}}
</div>
</script>
<script src="js/application.js"></script>
<!--script src="/socket.io/socket.io.js"></script-->
</body>
All the javascript files are loaded so i can only suspect that I need to do something more to get the complete page to render.
Has nayone else come across this or has a solution
cheers jima