Skip to content

Commit

Permalink
Start clarifying public API and add documentation for API.
Browse files Browse the repository at this point in the history
Add test coverage for new features
  • Loading branch information
krisselden committed Jul 26, 2018
1 parent 9a1670f commit 0fd5621
Show file tree
Hide file tree
Showing 26 changed files with 2,206 additions and 321 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/node_modules/
/dist/
*.log
/.nyc_output/
/coverage/
7 changes: 2 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,12 @@
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/node_modules/.bin/_mocha",
"args": [
"--no-timeouts",
"${workspaceRoot}/dist/test"
],
"args": ["--no-timeouts", "${workspaceRoot}/dist/tests"],
"preLaunchTask": "build",
"outFiles": [
"${workspaceRoot}/dist/index.js",
"${workspaceRoot}/dist/lib/**/*.js",
"${workspaceRoot}/dist/test/**/*.js"
"${workspaceRoot}/dist/tests/**/*.js"
],
"sourceMaps": true
}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Has TypeScript declarations and supports async/await style testing.
- [Usage Examples](#usage-examples)
- [QUnit and TypeScript](#qunit-and-typescript)
- [Mocha and co](#mocha-and-co)
- [API](docs/api/index.md)

# Usage Examples

Expand Down

0 comments on commit 0fd5621

Please sign in to comment.