From 207801f2ae9cfef32fd5a0df32e44d2f6b521bd2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 19:14:22 +0000 Subject: [PATCH 1/2] Update dependency ava to v8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ef685b4..02082e7 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "resolve": "^1.1.7" }, "devDependencies": { - "ava": "^6.0.0", + "ava": "^8.0.0", "c8": "^10.0.0", "eslint": "^10.8.1", "eslint-config-problems": "^10.0.1", From 2e2cea0e6e9cd98c4a888ef371567120488bbee1 Mon Sep 17 00:00:00 2001 From: Ryan Zimmerman Date: Wed, 12 Aug 2026 13:26:35 -0400 Subject: [PATCH 2/2] Update ava imports --- test/custom-load.js | 2 +- test/custom-resolve.js | 2 +- test/custom-syntax-parser.js | 2 +- test/data-url.js | 2 +- test/filter.js | 2 +- test/import-events.js | 2 +- test/import.js | 2 +- test/layer.js | 2 +- test/lint.js | 2 +- test/media.js | 2 +- test/order.js | 2 +- test/plugins.js | 2 +- test/resolve.js | 2 +- test/supports-condition.js | 2 +- test/syntax-error.js | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/test/custom-load.js b/test/custom-load.js index 872b15a..0cf7878 100644 --- a/test/custom-load.js +++ b/test/custom-load.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") // internal tooling const checkFixture = require("./helpers/check-fixture") diff --git a/test/custom-resolve.js b/test/custom-resolve.js index 094d383..2052dc1 100644 --- a/test/custom-resolve.js +++ b/test/custom-resolve.js @@ -3,7 +3,7 @@ const path = require("path") // external tooling -const test = require("ava") +const { default: test } = require("ava") const postcss = require("postcss") // plugin diff --git a/test/custom-syntax-parser.js b/test/custom-syntax-parser.js index aa32504..eab9c9a 100644 --- a/test/custom-syntax-parser.js +++ b/test/custom-syntax-parser.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") const scss = require("postcss-scss") const sugarss = require("sugarss") diff --git a/test/data-url.js b/test/data-url.js index 353b97b..3331d60 100644 --- a/test/data-url.js +++ b/test/data-url.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") const postcss = require("postcss") // plugin diff --git a/test/filter.js b/test/filter.js index 1e2f70d..2a35daa 100644 --- a/test/filter.js +++ b/test/filter.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") // internal tooling const checkFixture = require("./helpers/check-fixture") diff --git a/test/import-events.js b/test/import-events.js index 970baf1..0dc4d49 100644 --- a/test/import-events.js +++ b/test/import-events.js @@ -4,7 +4,7 @@ const { readFileSync } = require("fs") const { resolve } = require("path") // external tooling -const test = require("ava") +const { default: test } = require("ava") const postcss = require("postcss") // plugin diff --git a/test/import.js b/test/import.js index e2a2bd1..975cfe3 100644 --- a/test/import.js +++ b/test/import.js @@ -4,7 +4,7 @@ const { readFileSync } = require("fs") const path = require("path") // external tooling -const test = require("ava") +const { default: test } = require("ava") const postcss = require("postcss") // plugin diff --git a/test/layer.js b/test/layer.js index 52236a6..a67b310 100644 --- a/test/layer.js +++ b/test/layer.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") // internal tooling const checkFixture = require("./helpers/check-fixture") diff --git a/test/lint.js b/test/lint.js index 70d8607..ffd3602 100644 --- a/test/lint.js +++ b/test/lint.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") const postcss = require("postcss") // plugin diff --git a/test/media.js b/test/media.js index 38ce5c1..cbb1dcd 100644 --- a/test/media.js +++ b/test/media.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") // internal tooling const checkFixture = require("./helpers/check-fixture") diff --git a/test/order.js b/test/order.js index 86af664..e189486 100644 --- a/test/order.js +++ b/test/order.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") // internal tooling const checkFixture = require("./helpers/check-fixture") diff --git a/test/plugins.js b/test/plugins.js index 31df1ff..ac12bd2 100644 --- a/test/plugins.js +++ b/test/plugins.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") const postcss = require("postcss") // plugin diff --git a/test/resolve.js b/test/resolve.js index 53d475c..b976b1c 100644 --- a/test/resolve.js +++ b/test/resolve.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") const fs = require("fs") const path = require("path") diff --git a/test/supports-condition.js b/test/supports-condition.js index f985264..3f1018c 100644 --- a/test/supports-condition.js +++ b/test/supports-condition.js @@ -1,6 +1,6 @@ "use strict" // external tooling -const test = require("ava") +const { default: test } = require("ava") // internal tooling const checkFixture = require("./helpers/check-fixture") diff --git a/test/syntax-error.js b/test/syntax-error.js index 9833060..a6b324d 100644 --- a/test/syntax-error.js +++ b/test/syntax-error.js @@ -3,7 +3,7 @@ const fs = require("fs") // external tooling -const test = require("ava") +const { default: test } = require("ava") const postcss = require("postcss") // plugin