Jest (JavaScriptフレームワーク)

Jest[1]は、Jasmine(英語版)[2]の上に構築され、Meta(旧Facebook)によってメンテナンスされているJavaScriptのテ…

Jest (JavaScriptフレームワーク)

Jest[1]は、Jasmine英語版[2]の上に構築され、Meta(旧Facebook)によってメンテナンスされているJavaScriptのテストフレームワークである。

解説

Christoph Nakazawa英語版によって設計・開発され、シンプルさと大規模なWebアプリケーションのサポートに重点を置いている。BabelTypeScriptNode.jsReactAngularVue.jsSvelteを使用するプロジェクトで動作する。Jestは、テストフレームワークを初めて使用するユーザーのために、多数の設定が必要ないように作られている。

使い方とテストの例

インストール

JavaScriptのパッケージマネージャーnpmを使用して、JestをNode.jsにインストールする。

$ npm install --save-dev jest

この例では、次のようなsum.jsとして保存されたモジュールのテストケースを作成する。

function sum(a, b) {
  return a + b;
}

module.exports = sum;

以下のテストケースは、Jestがsum.jsのテストケースとして自動的に選択できるように、sum.test.jsという名前のファイルとして作成する。

テストケースのファイルの内容は次のようになる。

const sum = require('./sum');

test('adds 1 + 2 to equal 3', () => {
  expect(sum(1, 2)).toBe(3);
});

次に、コマンドラインで次のコマンドを実行する。

$ npm run test

これにより、テストが実行され、結果がコマンドラインに出力される。

関連項目

出典

  1. ^ Jest Website”. 2022年11月19日閲覧。
  2. ^ jest/README.md at 88a94d5d1bc1f387317a3068bf510ab992c5dc64 · facebook/jest” (英語). GitHub. 2022年5月31日閲覧。

外部リンク

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.