@sap_oss/wdio-qmate-service
Version:
[](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[](http
19 lines (13 loc) • 400 B
Markdown
Inside the *.spec.js* file, you define the sequence of steps for your test script. Each file consists of at least one *describe* block.
```js
describe("01_yourScript - describe the test", function () {
it("Step 01: describe the step", async function () {
// [...]
});
it("Step 02: describe the step", async function () {
// [...]
});
// [...]
});
```