@platform/test
Version:
Configuration module containing test related modules.
50 lines (33 loc) • 1.02 kB
Markdown

[](https://opensource.org/licenses/MIT)
[](https://www.npmjs.com/package/@platform/test)

Configuration package containing test related modules.
## Install
yarn add @platform/ts
yarn add @platform/test
<p> <p>
## Commands
See [@platform/ts](../ts) for test related commands you may want to add to `package.json`:
```json
{
"scripts: {
"test": "ts test",
"tdd": "ts test --watch",
"lint": "ts lint",
"build": "ts build",
"prepare": "ts prepare",
}
}
```
Integration test commands:
```json
{
"scripts: {
"test:integration": "ts test --suffix INTEGRATION",
"tddi": "ts test --suffix INTEGRATION --watch"
}
}
```
<p> <p>
<p> <p>