TypeScriptとJestとCircleCIとCodecovな環境
TypeScript
まずは、本体をインストール。
npm i -D typescript
# yarn add -D typescript
tsconfig.json
の作成。
npx tsc --init
# yarn run tsc --init
適当に変換するファイル作成。
export function plus(x: number, y: number): number {
return x + y;
}
以下で変換できればok。
npx tsc index.ts
# yarn tsc index.ts
push
時に、色々含まれないようにする。
cat > .gitignore <<A
> node_modules/
> index.js
> coverage/
> A
Jest
インストール。
npm i -D jest ts-jest @types/jest
# yarn add -D jest ts-jest @types/jest
通るテストを書く。
import {plus} from './index.ts';
test('plus', () => {
expect(plus(1, 1)).toBe(2);
});
package.json
にこんな感じのjest
プロパティを追加。
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
},
また、run-scripts
のtest
で使えるようにする。package.json
にこんなのを追記。
"scripts": {
"test": "jest index.test.ts"
}
テスト。
npm test
# yarn test
#
# ----------------------
# PASS ./index.test.ts
# ✓ plus (3ms)
# ...
CircleCI
設定ファイルを作る。
mkdir .circleci && touch .circleci/config.yml
中身はこんな感じ。(Nodeのサンプルのyarn
をnpm
に変えただけ)
version: 2
jobs:
build:
docker:
- image: circleci/node:7.10
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm test
Githubへプッシュ。
git init
git add --all
git commit -m 'Init'
git remote add origin [email protected]:...
git push origin master
CircleCIの設定。「Add Project]のからの、
適当なリポジトリをセットアップを押して、
「Start Building」をクリック。
通った。
Codecov
まずはインストール。
npm i -D codecov
# yarn add -D codecov
package.json
のjest
プロパティを編集して、coverage/
に結果を出すようにする。こんな感じ。
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
あとscripts
のtest
でcodecov
コマンドを続けて実行するように。
"scripts": {
"test": "jest index.test.ts && codecov"
}
codecov
コマンドでデータを送るのにトークンが必要なので、その辺の設定をする。
Codecovの対象リポジトリのページを開く。この辺から、
開くとトークンがあるので、コピー。
CI上でCODECOV_TOKEN
という名前で見れるように、環境変数を登録する。
「Add Variable」から。
(モザイクはトークン)
先程の修正をプッシュして、無事CIが通ったらCodecovのページが更新。
こんな感じになってたらok!!
おわりに
実際のnpm test
の中では[ "true" = "$CI" ] && ... || ...
とか使ってローカルではcodecov
しないとかすると良いと思います。
リポジトリ
Author And Source
この問題について(TypeScriptとJestとCircleCIとCodecovな環境), 我々は、より多くの情報をここで見つけました https://qiita.com/nju33/items/72992bd4941b96bc4ce5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .