Created
March 23, 2016 23:52
-
-
Save nicoespeon/c6c1f77d3d3315f632c0 to your computer and use it in GitHub Desktop.
Blog - Testing Marionette.js Behaviors - use behavior test factory
This file contains hidden or 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
describe( "Like View", () => { | |
const View = LikeView.extend( { template: _.template( "" ) } ); | |
describe( "AddOnClick Behavior", () => { | |
addOnClickTests( { ViewClass: View, ModelClass: LikeModel } ); | |
} ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment