Skip to content

Commit fd055d7

Browse files
authored
fix: keyboard focus looping issue (#158)
* fix keyboard focus looping issue * add test coverage * revert to v1 package lockfile * update README * update project version * rename test variables
1 parent 7bcf8a4 commit fd055d7

File tree

6 files changed

+280
-30
lines changed

6 files changed

+280
-30
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,3 +261,11 @@ To run the e2e tests run -
261261
```shell
262262
npm run test:e2e
263263
```
264+
265+
## Developing
266+
267+
The CI workflows for this project currently depend upon a v1 package lockfile. When generating a new package-lock.json ensure you generate a v1 lockfile -
268+
269+
```shell
270+
npm install --lockfile-version 1
271+
```

codecept.conf.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ exports.config = {
99
tests: './src/__tests__/e2e/*.test.js',
1010
output: './output',
1111
helpers: {
12+
ChaiWrapper: {
13+
require: 'codeceptjs-chai',
14+
},
1215
Puppeteer: {
1316
url: 'http://localhost:8080/',
1417
show: true,

package-lock.json

Lines changed: 201 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)