Skip to content

Commit 6f6462e

Browse files
committed
ref #55 parent.childの真偽値をundefinedに修正
1 parent 5020fa6 commit 6f6462e

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

public/stage7/tests.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ describe('ステージ7(よくあるJSのイディオムを読める)', func
1111
};
1212

1313
var counter = createCounter();
14-
console.log(counter);
1514

1615

1716
it('1回目の値がわかる', function() {
@@ -143,7 +142,7 @@ describe('ステージ7(よくあるJSのイディオムを読める)', func
143142

144143

145144
it('parent.child の値がわかる', function() {
146-
expect(parent.child).to.equal(/* ここに値を書き込んでください */);
145+
expect(parent.child).to.equal(undefined);
147146
});
148147

149148

0 commit comments

Comments
 (0)