Skip to content

Commit c4cfed8

Browse files
committed
chore: remove extra async
1 parent 2a2dae3 commit c4cfed8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chapter_03.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Select `Y` and the project will be created and dependencies will be installed.
9999
After all these questions your config file is created. Next try to solve the objectives mention at the top of this file. If you port the `test.js` code to an actual test, make sure you follow the [Mocha](https://mochajs.org/) conventions of writing test files. Simple setup would like this:
100100

101101
```js
102-
describe("My Vue.js Example Application", async () => {
102+
describe("My Vue.js Example Application", () => {
103103
it("should be able to complete ToDos", async () => {
104104
// add your automation code here
105105
// ...
@@ -110,7 +110,7 @@ describe("My Vue.js Example Application", async () => {
110110
To automate the browser through the [browser object](https://webdriver.io/docs/api/browser) you can either import it via:
111111

112112
```ts
113-
import { browser } from '@wdio/globals'
113+
import { browser } from "@wdio/globals";
114114
```
115115

116116
or use `browser` directly as variable since it is available in the global scope.

0 commit comments

Comments
 (0)