Fixing variable name typo (instane -> instance) (#7353)

This commit is contained in:
Marian Steinbach 2018-01-14 10:37:37 +01:00 committed by William Cheng
parent fb73b8c4de
commit 90859575eb

View File

@ -44,7 +44,7 @@
describe('{{classname}}', function() { describe('{{classname}}', function() {
it('should create an instance of {{classname}}', function() { it('should create an instance of {{classname}}', function() {
// uncomment below and update the code to test {{classname}} // uncomment below and update the code to test {{classname}}
//var instane = new {{moduleName}}.{{classname}}(); //var instance = new {{moduleName}}.{{classname}}();
//expect(instance).to.be.a({{moduleName}}.{{classname}}); //expect(instance).to.be.a({{moduleName}}.{{classname}});
}); });
@ -53,7 +53,7 @@
{{#vars}} {{#vars}}
it('should have the property {{name}} (base name: "{{baseName}}")', function() { it('should have the property {{name}} (base name: "{{baseName}}")', function() {
// uncomment below and update the code to test the property {{name}} // uncomment below and update the code to test the property {{name}}
//var instane = new {{moduleName}}.{{classname}}(); //var instance = new {{moduleName}}.{{classname}}();
//expect(instance).to.be(); //expect(instance).to.be();
}); });