- Tener ruby andando (de 1.8 para arriba vamos a estar bien)
- Tener instalado bundler.
- Tener algun servidor de base de datos, sqlite, mysql o postgres andando.
- Tener un pequeño proyecto de prueba instalado.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
import { module, test } from 'qunit'; | |
import startApp from '../helpers/start-app'; | |
import PO from '../page-object'; | |
let application; | |
module('Collections', { | |
beforeEach: function() { | |
application = startApp(); |