Skip to content

Commit 5ad9273

Browse files
committed
feat: upgrade @guidepup/guidepup
docs: introduce `@guidepup/setup`
1 parent 60b35fc commit 5ad9273

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Providing a reliable set of APIs to automate your screen-reader a11y workflows in Playwright.
1212
</p>
1313

14-
## Getting Started
14+
## Getting Started 🦮
1515

1616
Install `@guidepup/playwright` to your project:
1717

@@ -51,7 +51,7 @@ test.describe("Playwright VoiceOver", () => {
5151
});
5252
```
5353

54-
## Playwright Config
54+
## Playwright Config 🐕‍🦺
5555

5656
In your `playwright.config.ts` add the following for the best results with
5757
Guidepup for VoiceOver automation. 💥
@@ -71,12 +71,20 @@ export default config;
7171

7272
Check out the configuration this adds [here](./src/voConfig.ts). 👀
7373

74-
## Resources
74+
## Environment Setup 🐾
75+
76+
Setup your environment for screen-read automation with [`@guidepup/setup`](https://github.com/guidepup/setup):
77+
78+
```bash
79+
npx @guidepup/setup
80+
```
81+
82+
## See Also 🐶
7583

7684
Checkout the core [`@guidepup/guidepup`](https://github.com/guidepup/guidepup)
7785
project to learn more about how you can automate your screen-reader workflows
7886
using Guidepup.
7987

80-
## License
88+
## License 🐩
8189

8290
[MIT](https://github.com/guidepup/guidepup/blob/main/LICENSE)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@guidepup/playwright",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "Screen-reader driver for Playwright.",
55
"main": "lib/index.js",
66
"typings": "lib/index.d.ts",
@@ -31,7 +31,7 @@
3131
"prepublish": "yarn build"
3232
},
3333
"dependencies": {
34-
"@guidepup/guidepup": "^0.9.3"
34+
"@guidepup/guidepup": "^0.10.1"
3535
},
3636
"devDependencies": {
3737
"@playwright/test": "^1.17.1",

src/voTest.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ const voTest = test.extend<{ vo: VoiceOver }>({
1919
await macOSActivate(PLAYWRIGHT_APPLICATION);
2020
await use(vo);
2121
} finally {
22-
vo.stopLog();
2322
await vo.stop();
2423
}
2524
},

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -456,10 +456,10 @@
456456
minimatch "^3.0.4"
457457
strip-json-comments "^3.1.1"
458458

459-
"@guidepup/guidepup@^0.9.3":
460-
version "0.9.3"
461-
resolved "https://registry.yarnpkg.com/@guidepup/guidepup/-/guidepup-0.9.3.tgz#b0e6826e85286b8d7e3d28f3d24f849ced91e456"
462-
integrity sha512-8FIb20T7vlTjPmI8f6cM9Mn4pxWzEx938V0Au1m36jMPcrE1lK1e5ejQfHcYFwL7o50pULm4SwU6eJOvfCE/pQ==
459+
"@guidepup/guidepup@^0.10.1":
460+
version "0.10.1"
461+
resolved "https://registry.yarnpkg.com/@guidepup/guidepup/-/guidepup-0.10.1.tgz#18470bdb6a85478f1366c462e0ba279470e61b53"
462+
integrity sha512-BKfIs+9NSa20/4Ev3vqucWRDUNNXOJ2RuZy4/n3pHkQPQrVe5CWq7XPAXOMu8MUG/I8kMc2gDZIVsRQArTvdTQ==
463463

464464
"@humanwhocodes/config-array@^0.9.2":
465465
version "0.9.2"

0 commit comments

Comments
 (0)