marcioj / ember-cli-scaffold

Scaffolds models, routes and templates a la rails
https://github.com/marcioj/ember-cli-scaffold
43 stars 9 forks source link

Option to disable fixtures #20

Closed kevintraver closed 9 years ago

kevintraver commented 9 years ago

It would be nice to have the option to disable generating fixtures. When using an adapter, it still generates fixtures, which causes errors when trying to use a backend.

Thanks!

marcioj commented 9 years ago

Hi @kevintraver I'm working in remove the fixtures and the ember data FixtureAdapter since it's deprecated, and instead use https://github.com/samselikoff/ember-cli-mirage which is the best approach to mock data in tests.

kevintraver commented 9 years ago

Ok, thanks!