Skip to content

Commit 5ce2c1c

Browse files
committed
tests: fix typo
1 parent 112fc6f commit 5ce2c1c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: test/lambdas.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
'use strict';
2+
23
const Hogan = require('hogan.js');
34
const util = require('util');
45
const should = require('should');
56

67
const lambdas = require('../lambdas.js');
78

8-
99
const reservedWords = new Set([
1010
'lowercase',
1111
'UPPERCASE',
@@ -52,7 +52,7 @@ function render(template) {
5252
}
5353

5454
async function main(){
55-
describe('check conersion to lowercase',function(){
55+
describe('check conversion to lowercase',function(){
5656
it('should convert from lowerCaseVar', function() {
5757
should(
5858
render('{{#lowercase}}{{lowerCaseVar}}{{/lowercase}}')
@@ -90,7 +90,7 @@ async function main(){
9090
})
9191
});
9292

93-
describe('check conersion to UPPERCASE',function(){
93+
describe('check conversion to UPPERCASE',function(){
9494
it('should convert from lowerCaseVar', function() {
9595
should(
9696
render('{{#uppercase}}{{lowerCaseVar}}{{/uppercase}}')
@@ -128,7 +128,7 @@ async function main(){
128128
})
129129
});
130130

131-
describe('check conersion to snake_case',function(){
131+
describe('check conversion to snake_case',function(){
132132
it('should convert from lowerCaseVar', function() {
133133
should(
134134
render('{{#snakecase}}{{lowerCaseVar}}{{/snakecase}}')
@@ -166,7 +166,7 @@ async function main(){
166166
})
167167
});
168168

169-
describe('check conersion to PascalCase',function(){
169+
describe('check conversion to PascalCase',function(){
170170
it('should convert from lowerCaseVar', function() {
171171
should(
172172
render('{{#pascalcase}}{{lowerCaseVar}}{{/pascalcase}}')
@@ -204,7 +204,7 @@ async function main(){
204204
})
205205
});
206206

207-
describe('check conersion to camelCase',function(){
207+
describe('check conversion to camelCase',function(){
208208
it('should convert from lowerCaseVar', function() {
209209
should(
210210
render('{{#camelcase}}{{lowerCaseVar}}{{/camelcase}}')
@@ -242,7 +242,7 @@ async function main(){
242242
})
243243
});
244244

245-
describe('check conersion to kebab-case',function(){
245+
describe('check conversion to kebab-case',function(){
246246
it('should convert from lowerCaseVar', function() {
247247
should(
248248
render('{{#kebabcase}}{{lowerCaseVar}}{{/kebabcase}}')

0 commit comments

Comments
 (0)