# Ember-testing without Rails 3.2

**URL:** https://discuss.emberjs.com/t/ember-testing-without-rails-3-2/1409
**Category:** Testing
**Created:** [June 4, 2013, 4:31pm UTC](https://discuss.emberjs.com/t/ember-testing-without-rails-3-2/1409 "2013-06-04T16:31:11Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![jakehow](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.emberjs.com/jakehow/32/14746_2.png) [@jakehow](https://discuss.emberjs.com/u/jakehow)
#### Post date: [June 4, 2013, 4:31pm UTC](https://discuss.emberjs.com/t/ember-testing-without-rails-3-2/1409/1 "2013-06-04T16:31:11Z")

</div>

Does anyone have setup instructions for ember-testing that are not dependent on Rails3.2?

We have an app that is on 3.1 right now and I would like to get some integration tests written before we try to migrate to 3.2

I have taken a look at [https://github.com/ebryn/bloggr-client-rails](https://github.com/ebryn/bloggr-client-rails) to see how Erik got it setup in the demo app, just wondering if anyone has already solved this issue.

---

<div class="post-metadata">

### Author: ![trombom](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.emberjs.com/trombom/32/14349_2.png) [@trombom](https://discuss.emberjs.com/u/trombom)
#### Post date: [June 6, 2013, 11:57pm UTC](https://discuss.emberjs.com/t/ember-testing-without-rails-3-2/1409/2 "2013-06-06T23:57:44Z")

</div>

@jakehow - I’ve been working on solving basically the same problem.

[https://github.com/trombom/todoapp.js](https://github.com/trombom/todoapp.js)

I’m definitely not done, but my intent has been to clarify the problem and therefore the solution for myself, perhaps it will help you as well.

Let me know if it helps or if you have questions(or suggestions). So far, the tests are minimal but my goal is to expand those and find a working solution to rapid feedback with tdd in ember.

Cheers

PS: I should note that my example does not use rails at all, which perhaps means I misunderstood the question. Nonetheless, I’ll leave my reply.

---

<div class="post-metadata">

### Author: ![walter](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.emberjs.com/walter/32/14648_2.png) [@walter](https://discuss.emberjs.com/u/walter)
#### Post date: [June 10, 2013, 4:48pm UTC](https://discuss.emberjs.com/t/ember-testing-without-rails-3-2/1409/3 "2013-06-10T16:48:48Z")

</div>

I would recommend you have a read through this thread:

> [@Testing Ember Apps: how do you do it?](http://discuss.emberjs.com/t/testing-ember-apps-how-do-you-do-it/173):
>
> I’d like to gather together how you are testing ember apps and turn it into “The Ember Testing Story”. I’m also going to add tests into ember-tools generators and want to do it in a blessed path. I seek righteousness in all things, brethren and sisters. Here’s my current setup for my app: For Unit tests: I build my app into a single file with ember-tools, which uses browserbuild (commonjs). I then use testacular + jasmine and load my full application.js into the test suite. I make sur…

Several different example set ups. I wouldn’t say anything has come out as “the one true way” yet.
