File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 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) {
167167} ;
168168
169169HandlebarsTestBench . prototype . toCompileTo = function ( expectedOutputAsString ) {
170- expect ( this . _compileAndExeute ( ) ) . to . equal ( expectedOutputAsString ) ;
170+ expect ( this . _compileAndExecute ( ) ) . to . equal ( expectedOutputAsString ) ;
171171} ;
172172
173173// see chai "to.throw" (https://www.chaijs.com/api/bdd/#method_throw)
@@ -178,11 +178,11 @@ HandlebarsTestBench.prototype.toThrow = function(
178178) {
179179 var self = this ;
180180 expect ( function ( ) {
181- self . _compileAndExeute ( ) ;
181+ self . _compileAndExecute ( ) ;
182182 } ) . to . throw ( errorLike , errMsgMatcher , msg ) ;
183183} ;
184184
185- HandlebarsTestBench . prototype . _compileAndExeute = function ( ) {
185+ HandlebarsTestBench . prototype . _compileAndExecute = function ( ) {
186186 var compile =
187187 Object . keys ( this . partials ) . length > 0
188188 ? CompilerContext . compileWithPartial
You can’t perform that action at this time.
0 commit comments