Last active
November 7, 2015 08:25
-
-
Save hokaccha/4964646e3902c88b1bee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @test {MyClass} */ | |
describe('MyClass', () => { | |
/** @test {MyClass#foo} */ | |
describe('MyClass#foo', () => { | |
it('should be ...'); | |
}); | |
/** @test {MyClass#bar} */ | |
describe('MyClass#bar', () => { | |
it('should be ...'); | |
}); | |
}); |
おーーー、なるほどなるほど。雑な感じならできそうですが、真面目にするならかなりハードですね。でも面白そう。これできれば圧倒的に関連付けがらくになりますね。
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@test
とdescribe
の内容がかぶることが多いので@test
書かなくてもESDocが空気読んでくれると嬉しい。最低限、
@test {MyClass}
だけ書いとけば'MyClass#foo'
とかはdescribe
に指定するテキストから読み取るとかでもいいかも。