@servant/servant-jasmine-node
Version:
Servant testing module for jasmine tests running in node.
53 lines (38 loc) • 2.09 kB
Markdown
Quick references: **[Command line][4]**, **[Node API][3]**, **[servant.json][2]**, **[dev-server][5]**
Servant jasmine node is module for Servant build tool that is intended for running tests in node
environment. Module can be included as module `@servant/servant-jasmine-node` or can be forked
from main nodejs process. If you want to run it as process, you need send message with data to
say module that you need some work.
```typescript
import { ServantJson, PackageJson } from "@servant/servant-data";
export type TestsJson = {
cwd: string;
entry: string | null;
files: Array<string>;
extensions: Array<string>;
externals: Array<string>;
packageJson: PackageJson.PackageJsonInfo | null;
servantJson: ServantJson.ServantJsonInfo | null;
};
```
Message must contain `cwd` (working directory path) and `entry` that is used as a base directory
for loading test from.
Property `files` is array of glob patterns or array of files with tests. Modules send message on
every tests progress. These data are `TestsProgress` and you can read them from message
event in parent process.
Property `extensions` is array of extensions that are resolved by tests.
Property `externals` is a list of external libraries that are necessary for running tests but there
are not a part of your module.
Property `packageJson` is PackageJsonInfo for package.json.
Property `servantJson` is ServantJsonInfo for servant.json.
[][license]
[]: https://gitlab.com/stanislavhacker/servant/raw/master/logo.png
[]: https://docs.npmjs.com/files/package.json
[]: https://gitlab.com/stanislavhacker/servant/blob/master/servant/doc/servant.json.md
[]: https://gitlab.com/stanislavhacker/servant/blob/master/servant/doc/servant.nodejs.md
[]: https://gitlab.com/stanislavhacker/servant/blob/master/servant-cli/doc/servant.clia.md
[]: https://gitlab.com/stanislavhacker/servant/blob/master/servant-development/doc/servant.devserver.md
[]: https://gitlab.com/stanislavhacker/servant/blob/master/LICENSE