diff --git a/public/stage5/tests.js b/public/stage5/tests.js index 8cb4d5ca..06344c20 100644 --- a/public/stage5/tests.js +++ b/public/stage5/tests.js @@ -126,21 +126,21 @@ describe('ステージ5(意図通りに非同期処理を利用できる)', return expect(mixiOrg).to.eventually.have.property('id', 1089312); // Github API に関する参考情報 - // https://developer.github.com/v3/repos/ + // https://developer.github.com/v3/orgs }); it('Github API を使って、mixi-inc/JavaScriptTraining の情報を取得できる', function() { - var repositry = 'mixi-inc/JavaScriptTraining'; + var repository = 'mixi-inc/JavaScriptTraining'; // 作成した promise を mixiRepo 変数に代入してください。 var mixiRepo = 'change me!'; - return expect(mixiRepo).to.eventually.have.property('full_name', repositry); + return expect(mixiRepo).to.eventually.have.property('full_name', repository); // Github API に関する参考情報 - // https://developer.github.com/v3/orgs + // https://developer.github.com/v3/repos/ }); diff --git a/public/stage7/tests.js b/public/stage7/tests.js index 20c102c8..0276df98 100644 --- a/public/stage7/tests.js +++ b/public/stage7/tests.js @@ -152,7 +152,7 @@ describe.skip('闇', function() { it('暗黙のキャスト', function() { - expect(+'10' === '10').to.equal()/* ここに値を書き込んでください */; + expect(+'10' === '10').to.equal(/* ここに値を書き込んでください */); expect(10 === (10 + '')).to.equal(/* ここに値を書き込んでください */); });