@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
21 lines (14 loc) • 576 B
Markdown
# Config
> Related Topics: [Features ❯ Config](../features/config.md)
## Enable Qmate Service
To use our service you have to enable `@sap_oss/wdio-qmate-service` in your *config.js*.
```js title="config.js"
const QmateService = require("@sap_oss/wdio-qmate-service");
exports.config = {
// ...
services: [[QmateService]],
// ...
};
```
!!! info "WebdriverIO Parameters"
For more information about **how to setup your config**, please see the official [documentation](https://webdriver.io/docs/configurationfile/){target="__blank"} from WebdriverIO.