Skip to content

Commit 4496d06

Browse files
authored
fix: 🐛 fixed ui alignment issues (#451)
* fix: 🐛 fixed ui alignment issues * docs: ✨ updated docs
1 parent 937e125 commit 4496d06

File tree

13 files changed

+1154
-1667
lines changed

13 files changed

+1154
-1667
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [18, 20]
17+
node-version: [18, 20, 22]
1818

1919
steps:
2020
- name: Checkout Repository

.vscode/launch.json

Lines changed: 26 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,27 @@
11
{
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5-
"version": "0.2.0",
6-
"configurations": [
7-
{
8-
"type": "node",
9-
"request": "launch",
10-
"name": "debug test.js",
11-
"skipFiles": [
12-
"<node_internals>/**"
13-
],
14-
"program": "${workspaceFolder}/test/test.js"
15-
},
16-
{
17-
"type": "node",
18-
"name": "debug current spec file",
19-
"request": "launch",
20-
"args": [
21-
"${file}"
22-
],
23-
"cwd": "${workspaceFolder}",
24-
"console": "integratedTerminal",
25-
"internalConsoleOptions": "neverOpen",
26-
"program": "${workspaceFolder}/node_modules/jasmine/bin/jasmine",
27-
"sourceMaps": true,
28-
"runtimeArgs": [
29-
"--nolazy",
30-
"--inspect-brk"
31-
]
32-
}
33-
]
34-
}
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "debug test.js",
11+
"skipFiles": ["<node_internals>/**"],
12+
"program": "${workspaceFolder}/test/test.js"
13+
},
14+
{
15+
"type": "node",
16+
"name": "debug current spec file",
17+
"request": "launch",
18+
"args": ["${file}"],
19+
"cwd": "${workspaceFolder}",
20+
"console": "integratedTerminal",
21+
"internalConsoleOptions": "neverOpen",
22+
"program": "${workspaceFolder}/node_modules/jasmine/bin/jasmine",
23+
"sourceMaps": true,
24+
"runtimeArgs": ["--nolazy", "--inspect-brk"]
25+
}
26+
]
27+
}

docs/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
Contributing
2-
============
1+
# Contributing
32

43
We try to achieve a 100% coverage on the Javascript code. Please make sure that each addition reaches this goal.
54

65
## Tests
6+
77
- clone the project to your local machine
88
- do a npm install
99

docs/WEBDRIVER.IO.MD

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# webdriver.io
22

3-
> **NOTE:<br>**
4-
> If you are using WebdriverIO V4 follow the instructions below, if you are using WebdriverIO V5, please check [here](https://github.com/WasiqB/wdio-cucumberjs-json-reporter).
3+
> **NOTE:**
4+
> If you are using WebdriverIO V4 follow the instructions below, if you are using WebdriverIO V5, please check [wdio-cucumberjs-json-reporter](https://github.com/webdriverio-community/wdio-cucumberjs-json-reporter).
55
66
Follow the installation instructions as mentioned in [Install](../README.MD#install)
77

@@ -12,9 +12,7 @@ It works nicely with this reporter.
1212

1313
## Using wdio-cucumber-framework version lower than 2.2.0?
1414

15-
> **NOTE: THIS INSTRUCTION ONLY WORKS WITH `CucumberJS` V2 AND THUS `wdio-cucumber-framework` V1.1.1. I'M WORKING ON A SOLUTION FOR THE LATEST VERSION OF `CucumberJS` V4 AND THUS `wdio-cucumber-framework` > V2.0.0**
16-
17-
> **THIS REPORT WORKS BASED ON EXTRA PROVIDED BROWSER INFO IN THE REPORT. PLEASE FOLLOWING THE INSTRUCTIONS BELOW / IN THE README.MD TO ADD THAT INFO. IF YOU DON'T YOU MAY GET ERRORS GENERATING THE REPORT**
15+
> **NOTE: THIS INSTRUCTION ONLY WORKS WITH `CucumberJS` V2 AND THUS `wdio-cucumber-framework` V1.1.1. I'M WORKING ON A SOLUTION FOR THE LATEST VERSION OF `CucumberJS` V4 AND THUS `wdio-cucumber-framework` > V2.0.0** > **THIS REPORT WORKS BASED ON EXTRA PROVIDED BROWSER INFO IN THE REPORT. PLEASE FOLLOWING THE INSTRUCTIONS BELOW / IN THE README.MD TO ADD THAT INFO. IF YOU DON'T YOU MAY GET ERRORS GENERATING THE REPORT**
1816
1917
## Step 1: Add extra dependency
2018

examples/cypress/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"author": "Wasiq Bhamla",
1515
"license": "MIT",
1616
"devDependencies": {
17-
"@badeball/cypress-cucumber-preprocessor": "^22.0.1",
18-
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.4",
19-
"@types/node": "^22.14.0",
20-
"cypress": "^14.0.3",
17+
"@badeball/cypress-cucumber-preprocessor": "^22.1.0",
18+
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.5",
19+
"@types/node": "^24.0.3",
20+
"cypress": "^14.4.1",
2121
"multiple-cucumber-html-reporter": "3.9.2",
2222
"typescript": "^5.8.3"
2323
},

0 commit comments

Comments
 (0)