From 4869b2c58c299751d8c556cbb7d940b62d34635c Mon Sep 17 00:00:00 2001 From: djKooks Date: Fri, 8 Feb 2019 20:43:41 +0900 Subject: [PATCH] Fix wrong typo --- _posts/2018-12-21-publish-module-npm.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2018-12-21-publish-module-npm.md b/_posts/2018-12-21-publish-module-npm.md index d5e73dd..b0dfbf1 100644 --- a/_posts/2018-12-21-publish-module-npm.md +++ b/_posts/2018-12-21-publish-module-npm.md @@ -147,7 +147,7 @@ Add new file in '/test' directory. let assert = require('assert'); let reverse = require('../lib/index.js').reverseWords -describe('to camelcase', () => { +describe('first test', () => { let testString = '' before(() => { testString = 'news in NBA trade deadline' @@ -165,7 +165,7 @@ Install `mocha`, and run test to check the module works well. ``` $ mocha - to camelcase + first test check reverse ✓ words in test string should be reversed