Created
August 7, 2015 17:42
-
-
Save drapergeek/95f41ba2556845c90837 to your computer and use it in GitHub Desktop.
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'; | |
function clickOn(app, key, context) { | |
return awesomeFunction; | |
} | |
export default function registerHelper() { | |
Ember.Test.registerHelper('clickOn', clickOn); | |
} |
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 clickOn from `my-app/tests/helpers/click-on` | |
clickOn.registerHelper(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment