Merge pull request #185 from dolanmiu/feat/clean-imports

Add codecov and add more tests to travis
This commit is contained in:
Dolan
2018-10-26 02:12:52 +01:00
committed by GitHub
2 changed files with 13 additions and 0 deletions

View File

@ -3,6 +3,7 @@ node_js:
- 9
install:
- npm install
- npm install -g codecov
script:
- npm run lint
- npm test
@ -32,12 +33,23 @@ script:
- npm run ts-node -- ./demo/demo22.ts
- npm run ts-node -- ./demo/demo23.ts
- npm run ts-node -- ./demo/demo24.ts
# - npm run ts-node -- ./demo/demo25.ts
- npm run ts-node -- ./demo/demo26.ts
- npm run ts-node -- ./demo/demo27.ts
- npm run ts-node -- ./demo/demo28.ts
- npm run ts-node -- ./demo/demo29.ts
- npm run ts-node -- ./demo/demo30.ts
- npm run ts-node -- ./demo/demo31.ts
- npm run ts-node -- ./demo/demo32.ts
- npm run ts-node -- ./demo/demo33.ts
- npm run ts-node -- ./demo/demo34.ts
after_failure:
- "cat /home/travis/builds/dolanmiu/docx/npm-debug.log"
after_success:
- npm run typedoc
- echo "docx.js.org" > docs/.nojekyll
- echo "docx.js.org" > docs/CNAME
- codecov
deploy:
provider: pages
skip-cleanup: true

View File

@ -1,6 +1,7 @@
import { assert } from "chai";
import { Utility } from "tests/utility";
import { LeftTabStop, MaxRightTabStop, RightTabStop } from "./tab-stop";
describe("LeftTabStop", () => {