# wdio-typescript-service

> WDIO TypeScript service

Latest version **0.0.3** (published 2017-04-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install wdio-typescript-service
pnpm add wdio-typescript-service
yarn add wdio-typescript-service
bun add wdio-typescript-service
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2017-04-14 |
| First published | 2017-02-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=5.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Alexander Abashkin |
| Maintainers | monolithed |
| Keywords | wdio, webdriver, webdriverio, typescript, ts-node |

## Links

- npm: https://www.npmjs.com/package/wdio-typescript-service
- Repository: https://github.com/monolithed/wdio-typescript-service
- Homepage: https://github.com/monolithed/wdio-typescript-service#readme
- Issues: https://github.com/monolithed/wdio-typescript-service/issues
- npm.io page: https://npm.io/package/wdio-typescript-service

## Dependencies (1)

- [ts-node](https://npm.io/package/ts-node.md) ^2.1.0

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2017-04-14
- 0.0.2 — 2017-02-19
- 0.0.1 — 2017-02-14

## README

# wdio-typescript-service

> WDIO TypeScript service

Attention: The best practice is known to use a special option of your testing framework. So, this service is an alternative to do something like:

```js
{
	framework: 'mocha'

	mochaOpts: {
		'compilers': ['ts-node/register']
	}
}
```

### Installation

```
npm install wdio-typescript-service --save
```

####  package.json

Make sure you already have the following dependencies: 

```json
{
	"typescript": "^2.1.5",
}
```

### Usage

#### wdio.config.js

```js
{
	services: [
		'typescript'
	]
};
```

#### Options

```js
{
	typescriptOptions: { }
}
```

A full list of options see [here](https://github.com/TypeStrong/ts-node).


#### Example

```typescript
import Page from './page';

interface Test {};

describe('Suite', () => {
	let page: Test = new Page;
})
```

---
_Source: https://npm.io/package/wdio-typescript-service · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
