QA Wolf provides globals to help you create tests quickly.
The globals available in your test are:
// Generate a random nameconst name = faker.name.findName();console.log(name);
// read a json fileconst json = await fse.readJson(filePath);// read a text fileconst text = await fse.readFile(filePath, "utf8");