From c4cfed83233937956181324cd3bc190b44d5d1c1 Mon Sep 17 00:00:00 2001 From: wswebcreation Date: Tue, 9 Apr 2024 11:19:20 +0200 Subject: [PATCH] chore: remove extra async --- chapter_03.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chapter_03.md b/chapter_03.md index 0f1964c..b9fa55d 100644 --- a/chapter_03.md +++ b/chapter_03.md @@ -99,7 +99,7 @@ Select `Y` and the project will be created and dependencies will be installed. 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: ```js -describe("My Vue.js Example Application", async () => { +describe("My Vue.js Example Application", () => { it("should be able to complete ToDos", async () => { // add your automation code here // ... @@ -110,7 +110,7 @@ describe("My Vue.js Example Application", async () => { To automate the browser through the [browser object](https://webdriver.io/docs/api/browser) you can either import it via: ```ts -import { browser } from '@wdio/globals' +import { browser } from "@wdio/globals"; ``` or use `browser` directly as variable since it is available in the global scope.