From ed5cb458b4f8f1f2fa3c503247bcad54692d90f0 Mon Sep 17 00:00:00 2001 From: KimGenius Date: Fri, 4 Dec 2020 22:15:52 +0900 Subject: [PATCH 1/2] =?UTF-8?q?installing=20yarn=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 0ac7e688..176c96f4 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,14 @@ You can send text messages, Kakaotalk in Korea using this package. ## Installing To use the SDK, simply use npm package manager CLI. Type the following into a terminal window. +### npm ```bash npm install solapi ``` +### yarn +```bash +yarn add solapi +``` ## Usage From c5d5e9dc80befef78e3b5e550a6fb1e68ab8b14a Mon Sep 17 00:00:00 2001 From: KimGenius Date: Fri, 4 Dec 2020 22:24:08 +0900 Subject: [PATCH 2/2] =?UTF-8?q?test=20=EC=8B=A4=ED=8C=A8=EB=A5=BC=20?= =?UTF-8?q?=EA=B3=A0=EC=B3=90=EB=B3=B4=EC=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test.js b/tests/test.js index caff8692..0a71d0ce 100644 --- a/tests/test.js +++ b/tests/test.js @@ -108,7 +108,7 @@ describe('test', () => { }) expect(data.errorCount).to.equal(0) const result = await group.sendMessages() - expect(result).to.have.all.keys('app', 'balance', 'countForCharge', 'customFields', 'dateCompleted', 'dateSent', 'isRefunded', 'osPlatform', 'point', 'prepaid', 'price', 'sdkVersion', 'serviceMethod', 'strict', 'count', 'log', 'status', '_id', 'groupId', 'hint', 'accountId', 'apiVersion', 'dateCreated', 'dateUpdated', 'flagUpdated') + expect(result).to.have.all.keys('app', 'balance', 'countForCharge', 'customFields', 'dateCompleted', 'dateSent', 'isRefunded', 'osPlatform', 'point', 'prepaid', 'price', 'sdkVersion', 'serviceMethod', 'strict', 'count', 'log', 'status', '_id', 'groupId', 'hint', 'masterAccountId', 'accountId', 'apiVersion', 'dateCreated', 'dateUpdated', 'flagUpdated') }) it('그룹 삭제 (정상)', async () => { const group = new Group() @@ -129,7 +129,7 @@ describe('test', () => { const group = new Group() await group.createGroup() const data = await Group.getInfo(group.getGroupId()) - expect(data).to.have.all.keys('app', 'balance', 'countForCharge', 'customFields', 'dateCompleted', 'dateSent', 'isRefunded', 'osPlatform', 'point', 'prepaid', 'price', 'sdkVersion', 'serviceMethod', 'count', 'log', 'status', 'strict', '_id', 'groupId', 'hint', 'accountId', 'apiVersion', 'dateCreated', 'dateUpdated', 'flagUpdated') + expect(data).to.have.all.keys('app', 'balance', 'countForCharge', 'customFields', 'dateCompleted', 'dateSent', 'isRefunded', 'osPlatform', 'point', 'prepaid', 'price', 'sdkVersion', 'serviceMethod', 'count', 'log', 'status', 'strict', '_id', 'groupId', 'hint', 'masterAccountId', 'accountId', 'apiVersion', 'dateCreated', 'dateUpdated', 'flagUpdated') }) it('그룹 정보 조회 (생성 전)', async () => { const group = new Group()