Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions public/stage5/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/
});


Expand Down
2 changes: 1 addition & 1 deletion public/stage7/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ describe.skip('闇', function() {


it('暗黙のキャスト', function() {
expect(+'10' === '10').to.equal()/* ここに値を書き込んでください */;
expect(+'10' === '10').to.equal(/* ここに値を書き込んでください */);

expect(10 === (10 + '')).to.equal(/* ここに値を書き込んでください */);
});
Expand Down