Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ジャスミンに相当する省略表現はありますか:
expect(true).toBe(false)
ユニットテストは、これに達するたびに失敗する可能性がありますか?
エラーをスローします。私は通常、まだ実装されていない新しいテスト関数を作成したときにこれを行います。
it('should test something when I have implemented it', function() { throw new Error('Not implemented yet'); });
これにより、必要な説明を使用できます。