Skip to content

Commit

Permalink
chore(deps): package upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
jlp-craigmorten committed Sep 14, 2024
1 parent 59e3dcc commit 641ad72
Show file tree
Hide file tree
Showing 10 changed files with 495 additions and 236 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-nvda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
node-version: 20
- name: Guidepup Setup
uses: guidepup/setup-action@0.15.3
uses: guidepup/setup-action@0.17.0
with:
record: true
- run: yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-voiceover.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
node-version: 20
- name: Guidepup Setup
uses: guidepup/setup-action@0.15.3
uses: guidepup/setup-action@0.17.0
with:
record: true
- run: yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion examples/playwright-nvda/tests/chromium/chromium.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { platform, release } from "os";
import { headerNavigation } from "../headerNavigation";
import { logIncludesExpectedPhrases } from "../../../logIncludesExpectedPhrases";
import { windowsRecord } from "@guidepup/guidepup";
import { windowsRecord } from "@guidepup/record";
import spokenPhraseSnapshot from "./chromium.spokenPhrase.snapshot.json";
import { nvdaTest as test } from "../../../../src";

Expand Down
2 changes: 1 addition & 1 deletion examples/playwright-nvda/tests/firefox/firefox.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { platform, release } from "os";
import { headerNavigation } from "../headerNavigation";
import { logIncludesExpectedPhrases } from "../../../logIncludesExpectedPhrases";
import { windowsRecord } from "@guidepup/guidepup";
import { windowsRecord } from "@guidepup/record";
import spokenPhraseSnapshot from "./firefox.spokenPhrase.snapshot.json";
import { nvdaTest as test } from "../../../../src";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { platform, release } from "os";
import { headerNavigation } from "../headerNavigation";
import itemTextSnapshot from "./chromium.itemText.snapshot.json";
import { logIncludesExpectedPhrases } from "../../../logIncludesExpectedPhrases";
import { macOSRecord } from "@guidepup/guidepup";
import { macOSRecord } from "@guidepup/record";
import spokenPhraseSnapshot from "./chromium.spokenPhrase.snapshot.json";
import { voiceOverTest as test } from "../../../../src";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { platform, release } from "os";
import { headerNavigation } from "../headerNavigation";
import itemTextSnapshot from "./firefox.itemText.snapshot.json";
import { logIncludesExpectedPhrases } from "../../../logIncludesExpectedPhrases";
import { macOSRecord } from "@guidepup/guidepup";
import { macOSRecord } from "@guidepup/record";
import spokenPhraseSnapshot from "./firefox.spokenPhrase.snapshot.json";
import { voiceOverTest as test } from "../../../../src";

Expand Down
2 changes: 1 addition & 1 deletion examples/playwright-voiceover/tests/webkit/webkit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { platform, release } from "os";
import { headerNavigation } from "../headerNavigation";
import itemTextSnapshot from "./webkit.itemText.snapshot.json";
import { logIncludesExpectedPhrases } from "../../../logIncludesExpectedPhrases";
import { macOSRecord } from "@guidepup/guidepup";
import { macOSRecord } from "@guidepup/record";
import spokenPhraseSnapshot from "./webkit.spokenPhrase.snapshot.json";
import { voiceOverTest as test } from "../../../../src";

Expand Down
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,18 @@
"test:voiceover:webkit": "playwright test --config ./examples/playwright-voiceover/webkit.config.ts ./examples/playwright-voiceover/tests/webkit/"
},
"devDependencies": {
"@guidepup/guidepup": "^0.22.1",
"@playwright/test": "^1.41.1",
"@types/node": "^20.11.15",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@guidepup/guidepup": "^0.24.0",
"@guidepup/record": "^0.1.0",
"@playwright/test": "^1.47.1",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"rimraf": "^5.0.5",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@guidepup/guidepup": "^0.22.1",
Expand Down
1 change: 0 additions & 1 deletion src/nvdaTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { applicationNameMap } from "./applicationNameMap";

type Prettify<T> = {
[K in keyof T]: T[K];
// eslint-disable-next-line @typescript-eslint/ban-types
} & {};

type CaptureCommandOptions = Prettify<Pick<CommandOptions, "capture">>;
Expand Down
Loading

0 comments on commit 641ad72

Please sign in to comment.