@@ -250,66 +250,66 @@ describe('Test Syllables', function(){
250250 assert . equal ( 2 , ts . syllableCount ( 'ocean' ) ) ;
251251 assert . equal ( 1 , ts . syllableCount ( 'with' ) ) ;
252252 assert . equal ( 1 , ts . syllableCount ( 'me' ) ) ;
253- }
253+ } ) ;
254254
255255 /* Test Word Count
256256 -------------------- */
257257 it ( 'testWordCount' , function ( ) {
258258 assert . equal ( 201 , ts . wordCount ( strText ) ) ;
259- }
259+ } ) ;
260260
261261 /* Test Long Word Count
262262 -------------------- */
263263 it ( 'testLongWordCount' , function ( ) {
264264 assert . equal ( 23 , ts . wordsWithThreeSyllables ( strText , true ) ) ; // Include proper nouns
265265 assert . equal ( 22 , ts . wordsWithThreeSyllables ( strText , false ) ) ; // Don't include proper nouns
266- }
266+ } ) ;
267267
268268 /* Test Sentences
269269 -------------------- */
270270 it ( 'testSentenceCount' , function ( ) {
271271 assert . equal ( 8 , ts . sentenceCount ( strText ) ) ;
272- }
272+ } ) ;
273273
274274 /* Test Letter Count
275275 -------------------- */
276276 it ( 'testTextLengthCheck' , function ( ) {
277277 assert . equal ( 884 , ts . letterCount ( strText ) ) ;
278- }
278+ } ) ;
279279
280280 /* Test Flesch Kincaid Reading Ease
281281 -------------------- */
282282 it ( 'testFleschKincaidReadingEase' , function ( ) {
283283 assert . equal ( 53.4 , ts . fleschKincaidReadingEase ( strText ) ) ;
284- }
284+ } ) ;
285285
286286 /* Test Flesch Kincaid Grade Level
287287 -------------------- */
288288 it ( 'testFleschKincaidGradeLevel' , function ( ) {
289289 assert . equal ( 12.1 , ts . fleschKincaidGradeLevel ( strText ) ) ;
290- }
290+ } ) ;
291291
292292 /* Test Gunning Fog Score
293293 -------------------- */
294294 it ( 'testGunningFogScore' , function ( ) {
295295 assert . equal ( 14.4 , ts . gunningFogScore ( strText ) ) ;
296- }
296+ } ) ;
297297
298298 /* Test Coleman Liau Index
299299 -------------------- */
300300 it ( 'testColemanLiauIndex' , function ( ) {
301301 assert . equal ( 10.1 , ts . colemanLiauIndex ( strText ) ) ;
302- }
302+ } ) ;
303303
304304 /* Test SMOG Index
305305 -------------------- */
306306 it ( 'testSMOGIndex' , function ( ) {
307307 assert . equal ( 9.9 , ts . smogIndex ( strText ) ) ;
308- }
308+ } ) ;
309309
310310 /* Test Automated Readability Index
311311 -------------------- */
312312 it ( 'testAutomatedReadabilityIndex' , function ( ) {
313313 assert . equal ( 11.8 , ts . automatedReadabilityIndex ( strText ) ) ;
314- }
314+ } ) ;
315315} ) ;
0 commit comments