Generates gulp tasks for the provided Mocha target.
Undertaker (or Gulp) registry used to generate tasks.
Target configuration.
Generates and registers gulp tasks for the provided Mocha target.
Undertaker (or Gulp) instance where the tasks will be registered.
Target configuration.
Resolve absolute paths and dependencies for the provided target.
Non-resolved target.
Resolved target.
Generated using TypeDoc
This module defines the mocha target type used to build and run Mocha tests.
In the following list of tasks,
{target}
represents the name of the target as defined by thename
property of the target options. The lib target provides the following tasks:{target}
Build and run the tests, use the console reporter.
{target}:build
Performs a full test build of the library and test files.
{target}:run
Only run the tests (does not build the tests).
{target}:coverage
Run tests with coverage (does not build the tests).
{target}:typedoc:deploy
Deploy the Typedoc documentation using git. This can be used to easily deploy the documentation to the
gh-pages
branch.{target}:clean
Remove the build and directory corresponding to this target.
{target}:tsconfig.json
Emit a
tsconfig.json
file corresponding to the configuration for this target. This allows to compile it using the command linetsc
program. This is also useful for IDE to auto-detect the configuration of the project.