You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because this has ES6 import statements, should my grunt build transpile all of my tests and dump those into karam/testem ? What if I have some tests/helpers that are not ES6? Will this be an issue?
I'm working on a EAK-lite like blog post series and I have integration testing down w/ something like the following
(almost identical to what's in EAK now for integration testing)
What I'm having a hard time w/ today is mixing tests that need my startApp and using this ember-qunit project. Thanks for the help (this is literally the final step required to help my team start migrating to ES6)
The text was updated successfully, but these errors were encountered:
haha, actually I'm just trying to provide an "alternative" to EAK while we wait for ember-cli + broccoli to mature a little. (the top 2 requirements are 1) ES6 2) testing both unit/integration)
Also I'm blogging the "build up" so people know what all is required / how a grunt file is built up over time to encapsulate things like
1.) ES6 transpilation
2.) testing with karma or testem
3.) concat for local builds/test builds
4.) deployment
5.) how to deal w/ multiple static "ember" builds all in 1 grunt configuration (something I'd like to share at a user group or conference at some point -surpised ZenDesk didn't share at EmberConf to be honest)
I'm migrating from a pure globals setup and I'm trying to understand what is required in my simple "test helper"
When I look at EAK I see a few additional items (and I just want to confirm they are /are not needed with this new ember-qunit project)
Number 1 on my list (do I need isolatedContainer) ?
Number 2 on my list (to use a custom resolver or not) ?
In the readme is states "if you don't have a custom resolver..."
When should you have a custom resolver? What are the benefits? I see that EAK has a simple resolver like so
Is it preferred to use something like this or follow the readme to the letter?
This brings up number 3 on my list ...
Because this has ES6 import statements, should my grunt build transpile all of my tests and dump those into karam/testem ? What if I have some tests/helpers that are not ES6? Will this be an issue?
I'm working on a EAK-lite like blog post series and I have integration testing down w/ something like the following
(almost identical to what's in EAK now for integration testing)
What I'm having a hard time w/ today is mixing tests that need my startApp and using this ember-qunit project. Thanks for the help (this is literally the final step required to help my team start migrating to ES6)
The text was updated successfully, but these errors were encountered: