ブックマーク / rinoguchi.net (1)

  • Jest + TypeScriptのTips – rinoguchi's techlog

    Jest + TypeScript でテストを書くことが増えてきたので、この辺でTipsを記載しておこうと思います。今後も何かあれば追記します。 インストール こちら を参考にしました。 まず、必要なライブラリを追加します。 yarn init yarn add jest @types/jest ts-jest --dev jest.config.jsをプロジェクト直下に作成します。 module.exports = { "testMatch": [ "**/__tests__/**/*.+(ts|tsx|js)", "**/?(*.)+(spec|test).+(ts|tsx|js)" ], "transform": { "^.+\\.(ts|tsx)$": "ts-jest" }, } package.jsonにスクリプトを追加します。 "scripts": { "test": "je

    kinushu
    kinushu 2023/06/20
    “test”
  • 1