Skip to content

Commit

Permalink
fix: keyboard focus looping issue (#158)
Browse files Browse the repository at this point in the history
* fix keyboard focus looping issue

* add test coverage

* revert to v1 package lockfile

* update README

* update project version

* rename test variables
  • Loading branch information
TSeelig authored Jan 29, 2024
1 parent 7bcf8a4 commit fd055d7
Show file tree
Hide file tree
Showing 6 changed files with 280 additions and 30 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,3 +261,11 @@ To run the e2e tests run -
```shell
npm run test:e2e
```

## Developing

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 -

```shell
npm install --lockfile-version 1
```
3 changes: 3 additions & 0 deletions codecept.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ exports.config = {
tests: './src/__tests__/e2e/*.test.js',
output: './output',
helpers: {
ChaiWrapper: {
require: 'codeceptjs-chai',
},
Puppeteer: {
url: 'http://localhost:8080/',
show: true,
Expand Down
229 changes: 201 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fd055d7

Please sign in to comment.