これは、TDDBCのTypeScript向けプロジェクトです。
- Node.js : 4以上
- まずはじめに、プロジェクトをcloneしてください。
$ git clone https://github.com/tddbc/typescript-mocha.git
- 次に、依存関係をダウンロードしてください。
$ npm install
- 最後に、下記の様に表示されるか、確認してください。
$ npm test
> [email protected] pretest /path/to/projects/typescript-mocha
> npm run lint
> [email protected] lint /path/to/projects/typescript-mocha
> tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'
> [email protected] test /path/to/projects/typescript-mocha
> mocha --compilers ts:ts-node/register --require source-map-support/register --full-trace --bail
Sample
.status
✓ は、trueであるべき
#say()
✓ は、"Hello TDDBC!"が返ってくるべき
2 passing (11ms)
$
コマンド | 内容 |
---|---|
npm test |
lint とテストをまとめて行います |
npm run lint |
コードの静的検証を行います |
npm run watch |
ファイル変更を監視し、変更があったらテストを自動で行います |
Copyright (c) 2017 TDD BaseCamp and other contributors
Licensed under the MIT license.