Skip to content

Commit 42e72f7

Browse files
committed
Add first commit
0 parents  commit 42e72f7

12 files changed

+3887
-0
lines changed

.eslintignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Ignore the project's node_modules directory
2+
node_modules/
3+
4+
# Ignore test results directory
5+
test-results/
6+
7+
# Ignore Cucumber feature files
8+
features/
9+
10+
# Ignore generated Cucumber report
11+
cucumber-report.html
12+
13+
# Ignore rerun information file
14+
@rerun.txt
15+
16+
# Ignore the main HTML file of the project
17+
index.html

.eslintrc.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended",
9+
"plugin:react/recommended"
10+
],
11+
"parser": "@typescript-eslint/parser",
12+
"parserOptions": {
13+
"ecmaVersion": "latest",
14+
"sourceType": "module"
15+
},
16+
"plugins": ["@typescript-eslint", "react"],
17+
"rules": {}
18+
}
19+

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
assets/
2+
node_modules/
3+
test-results/
4+
.DS_Store
5+
index.html
6+
features/

cucumber.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"default": {
3+
"formatOptions": {
4+
"snippetInterface": "async-await"
5+
},
6+
"paths": ["src/test/features/"],
7+
"dryRun": true,
8+
"require": ["src/test/steps/*.ts", "src/hooks/hooks.ts"],
9+
"requireModule": ["ts-node/register"],
10+
"format": [
11+
"progress-bar",
12+
"html:test-results/cucumber-report.html",
13+
"json:test-results/cucumber-report.json"
14+
]
15+
}
16+
}

0 commit comments

Comments
 (0)