Skip to content

Commit 69eba6e

Browse files
author
Indra Prajapati
committed
Completed fremework
1 parent a55b33c commit 69eba6e

File tree

20 files changed

+2652
-0
lines changed

20 files changed

+2652
-0
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
# Playwright
3+
node_modules/
4+
/test-results/
5+
/playwright-report/
6+
/blob-report/
7+
/playwright/.cache/

config/cucumber.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module.exports = {
2+
default: {
3+
tags: process.env.npm_config_TAGS || "",
4+
formatOptions: {
5+
snippetInterface: "async-await"
6+
},
7+
paths: [
8+
"src/test/features/*.feature"
9+
],
10+
publishQuite: true,
11+
dryRun: false,
12+
require: [
13+
"src/test/steps_definitions/*.js",
14+
"src/test/hooks/hooks.js"
15+
],
16+
format: [
17+
"html:test-results/cucumber-report.html",
18+
"json:test-results/cucumber-report.json"
19+
],
20+
parallel: 2,
21+
retry: 1
22+
}
23+
}

0 commit comments

Comments
 (0)