Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/update dependencies #29

Merged
merged 6 commits into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/stale-rabbits-swim.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"expect-axe-playwright": minor
---

Update dependencies
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
.vscode/
dist/
test-results/
Expand Down
786 changes: 0 additions & 786 deletions .yarn/releases/yarn-3.2.1.cjs

This file was deleted.

875 changes: 875 additions & 0 deletions .yarn/releases/yarn-3.8.1.cjs

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
nodeLinker: node-modules

npmRegistryServer: "https://registry.yarnpkg.com"

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
spec: "https://mskelton.dev/yarn-outdated/v3"

yarnPath: .yarn/releases/yarn-3.2.1.cjs
yarnPath: .yarn/releases/yarn-3.8.1.cjs
avo marked this conversation as resolved.
Show resolved Hide resolved
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Expect matchers to perform Axe accessibility tests in your Playwright tests.",
"author": "Widen",
"license": "ISC",
"packageManager": "yarn@3.2.1",
"packageManager": "yarn@3.8.1",
"engines": {
"node": ">=16.0.0"
},
Expand Down Expand Up @@ -47,21 +47,21 @@
}
},
"dependencies": {
"axe-core": "^4.6.3",
"axe-reporter-html": "^1.0.0",
"axe-core": "^4.9.0",
"axe-reporter-html": "^1.1.0",
"isomorphic-resolve": "^1.0.0",
"merge-deep": "^3.0.3"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@playwright/test": "^1.30.0",
"@types/merge-deep": "^3.0.0",
"@changesets/cli": "^2.27.1",
"@playwright/test": "^1.42.3",
"@types/merge-deep": "^3.0.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"prettier": "^2.8.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"tsup": "^7.3.0",
"typescript": "^5.4.5"
}
}
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ declare module '@playwright/test' {
const config: PlaywrightTestConfig = {
retries: process.env.CI ? 2 : 0,
globalSetup: fileURLToPath(
new URL('./src/config/globalSetup.ts', import.meta.url)
new URL('./src/config/globalSetup.ts', import.meta.url),
),
testDir: './src',
use: {
Expand Down
2 changes: 1 addition & 1 deletion src/config/templates/accessible.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<title>Foo</title>
Expand Down
2 changes: 1 addition & 1 deletion src/config/templates/inaccessible.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head> </head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion src/matchers/toPassAxe/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function getResults(obj: Handle | AxeResults, options: MatcherOptions) {
export async function toPassAxe(
this: ReturnType<(typeof expect)['getState']>,
obj: Handle | AxeResults,
options: MatcherOptions = {}
options: MatcherOptions = {},
) {
try {
const { results, ok } = await getResults(obj, options)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/axe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ export async function injectAxe(locator: Locator) {
export function runAxe(locator: Locator, options: RunOptions = {}) {
return locator.evaluate<AxeResults, RunOptions>(
(el, options) => window.axe.run(el, options),
options
options,
)
}
4 changes: 2 additions & 2 deletions src/utils/poll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function getTimeout(timeout: number | undefined) {
export async function poll<T extends { ok: boolean }>(
locator: Locator,
timeout: number | undefined,
predicate: () => Promise<T>
predicate: () => Promise<T>,
): Promise<T> {
let result: T = null!
let expired = false
Expand All @@ -31,7 +31,7 @@ export async function poll<T extends { ok: boolean }>(
// TODO: Figure out a non-flaky way to use RAF.
// await locator.evaluate(() => new Promise(requestAnimationFrame))
await locator.evaluate(
() => new Promise((resolve) => setTimeout(resolve, 250))
() => new Promise((resolve) => setTimeout(resolve, 250)),
)
}
} catch (e) {
Expand Down
2 changes: 1 addition & 1 deletion src/waitForAxeResults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { getOptions } from './utils/options.js'
*/
export async function waitForAxeResults(
handle: Handle,
{ timeout, ...options }: { timeout?: number } & RunOptions = {}
{ timeout, ...options }: { timeout?: number } & RunOptions = {},
) {
const opts = getOptions(options)
const locator = resolveLocator(handle)
Expand Down
Loading
Loading