Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.

Join them; it only takes a minute:

Sign up
Join the Stack Overflow community to:
  1. Ask programming questions
  2. Answer and help your peers
  3. Get recognized for your expertise

I come across Karma and Jasmine when I search for testing framework for Angular.js.

What is the best one for a medium Rails + Angular project? I am a beginner with Angular.

share|improve this question

Considering that you seem to want to do this in RoR, I would recommend using Teaspoon.

Teaspoon is a Javascript test runner built for Rails. It can run tests in the browser and headless using PhantomJS, Selenium WebDriver, or Capybara Webkit.
...
Teaspoon takes advantage of the Rails asset pipeline, and ships with support for Jasmine, Mocha, and QUnit.

The gems you'll most likely need are

gem 'teaspoon-jasmine'
gem 'phantomjs'

Following the angular-rails.com tutorial should help you get started.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.