File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ HandlebarsTestBench.prototype.withMessage = function(message) {
167
167
} ;
168
168
169
169
HandlebarsTestBench . prototype . toCompileTo = function ( expectedOutputAsString ) {
170
- expect ( this . _compileAndExeute ( ) ) . to . equal ( expectedOutputAsString ) ;
170
+ expect ( this . _compileAndExecute ( ) ) . to . equal ( expectedOutputAsString ) ;
171
171
} ;
172
172
173
173
// see chai "to.throw" (https://www.chaijs.com/api/bdd/#method_throw)
@@ -178,11 +178,11 @@ HandlebarsTestBench.prototype.toThrow = function(
178
178
) {
179
179
var self = this ;
180
180
expect ( function ( ) {
181
- self . _compileAndExeute ( ) ;
181
+ self . _compileAndExecute ( ) ;
182
182
} ) . to . throw ( errorLike , errMsgMatcher , msg ) ;
183
183
} ;
184
184
185
- HandlebarsTestBench . prototype . _compileAndExeute = function ( ) {
185
+ HandlebarsTestBench . prototype . _compileAndExecute = function ( ) {
186
186
var compile =
187
187
Object . keys ( this . partials ) . length > 0
188
188
? CompilerContext . compileWithPartial
You can’t perform that action at this time.
0 commit comments