From 035f417c36668ec2416ab09df33b1a8954e50842 Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Sun, 26 Jul 2026 13:55:15 +0200 Subject: [PATCH] Update internal elm-explorations/test version --- elm/elm.json | 2 +- example-application-no-tests/elm.json | 2 +- example-application-src/elm.json | 2 +- example-application/elm.json | 2 +- example-package/test.json | 2 +- tests/ElmJson.js | 2 +- tests/fixtures/elm.json | 2 +- .../fixtures/invalid-elm-json/empty-source-directories/elm.json | 2 +- tests/fixtures/invalid-elm-json/json-syntax-error/elm.json | 2 +- tests/fixtures/invalid-elm-json/null-type/elm.json | 2 +- .../invalid-elm-json/source-directories-not-array/elm.json | 2 +- .../invalid-elm-json/source-directory-not-string/elm.json | 2 +- tests/fixtures/invalid-elm-json/unknown-type/elm.json | 2 +- tests/fixtures/write-elm-json/elm.input.json | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/elm/elm.json b/elm/elm.json index aecf67b9..08e5084d 100644 --- a/elm/elm.json +++ b/elm/elm.json @@ -10,7 +10,7 @@ "elm/json": "1.1.3", "elm/random": "1.0.0", "elm/time": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/bytes": "1.0.8", diff --git a/example-application-no-tests/elm.json b/example-application-no-tests/elm.json index a7a1562d..aa3a316d 100644 --- a/example-application-no-tests/elm.json +++ b/example-application-no-tests/elm.json @@ -19,7 +19,7 @@ }, "test-dependencies": { "direct": { - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/bytes": "1.0.8", diff --git a/example-application-src/elm.json b/example-application-src/elm.json index 7a672b52..b3ebe03a 100644 --- a/example-application-src/elm.json +++ b/example-application-src/elm.json @@ -9,7 +9,7 @@ "elm/browser": "1.0.2", "elm/core": "1.0.5", "elm/html": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/bytes": "1.0.8", diff --git a/example-application/elm.json b/example-application/elm.json index 9a33edcf..85836b2f 100644 --- a/example-application/elm.json +++ b/example-application/elm.json @@ -20,7 +20,7 @@ }, "test-dependencies": { "direct": { - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/bytes": "1.0.8", diff --git a/example-package/test.json b/example-package/test.json index 377d8c49..4eb0103f 100644 --- a/example-package/test.json +++ b/example-package/test.json @@ -7,7 +7,7 @@ "elm/html": "1.0.0", "elm/project-metadata-utils": "1.0.0", "elm/parser": "1.1.0", - "elm-explorations/test": "2.0.0", + "elm-explorations/test": "2.2.1", "elm/core": "1.0.2", "elm/random": "1.0.0", "elm/time": "1.0.0", diff --git a/tests/ElmJson.js b/tests/ElmJson.js index 4e0c37ee..0899171f 100644 --- a/tests/ElmJson.js +++ b/tests/ElmJson.js @@ -86,7 +86,7 @@ const expectedWrittenElmJson = `{ "test-dependencies": { "direct": { "elm/regex": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/html": "1.0.0", diff --git a/tests/fixtures/elm.json b/tests/fixtures/elm.json index 8c642052..b6b61fc4 100644 --- a/tests/fixtures/elm.json +++ b/tests/fixtures/elm.json @@ -13,7 +13,7 @@ "test-dependencies": { "direct": { "elm/regex": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/bytes": "1.0.8", diff --git a/tests/fixtures/invalid-elm-json/empty-source-directories/elm.json b/tests/fixtures/invalid-elm-json/empty-source-directories/elm.json index 809dba9c..2e7a45ce 100644 --- a/tests/fixtures/invalid-elm-json/empty-source-directories/elm.json +++ b/tests/fixtures/invalid-elm-json/empty-source-directories/elm.json @@ -12,7 +12,7 @@ "test-dependencies": { "direct": { "elm/regex": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/html": "1.0.0", diff --git a/tests/fixtures/invalid-elm-json/json-syntax-error/elm.json b/tests/fixtures/invalid-elm-json/json-syntax-error/elm.json index 8c43b8e4..226304a8 100644 --- a/tests/fixtures/invalid-elm-json/json-syntax-error/elm.json +++ b/tests/fixtures/invalid-elm-json/json-syntax-error/elm.json @@ -12,7 +12,7 @@ "test-dependencies": { "direct": { "elm/regex": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/html": "1.0.0", diff --git a/tests/fixtures/invalid-elm-json/null-type/elm.json b/tests/fixtures/invalid-elm-json/null-type/elm.json index 0fc35b5e..0d63b4ef 100644 --- a/tests/fixtures/invalid-elm-json/null-type/elm.json +++ b/tests/fixtures/invalid-elm-json/null-type/elm.json @@ -13,7 +13,7 @@ "test-dependencies": { "direct": { "elm/regex": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/html": "1.0.0", diff --git a/tests/fixtures/invalid-elm-json/source-directories-not-array/elm.json b/tests/fixtures/invalid-elm-json/source-directories-not-array/elm.json index 81637bde..4ec8ab7e 100644 --- a/tests/fixtures/invalid-elm-json/source-directories-not-array/elm.json +++ b/tests/fixtures/invalid-elm-json/source-directories-not-array/elm.json @@ -13,7 +13,7 @@ "test-dependencies": { "direct": { "elm/regex": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/html": "1.0.0", diff --git a/tests/fixtures/invalid-elm-json/source-directory-not-string/elm.json b/tests/fixtures/invalid-elm-json/source-directory-not-string/elm.json index a3b1157b..656ce4c5 100644 --- a/tests/fixtures/invalid-elm-json/source-directory-not-string/elm.json +++ b/tests/fixtures/invalid-elm-json/source-directory-not-string/elm.json @@ -11,7 +11,7 @@ "test-dependencies": { "direct": { "elm/regex": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/html": "1.0.0", diff --git a/tests/fixtures/invalid-elm-json/unknown-type/elm.json b/tests/fixtures/invalid-elm-json/unknown-type/elm.json index 8069ce05..e6f44972 100644 --- a/tests/fixtures/invalid-elm-json/unknown-type/elm.json +++ b/tests/fixtures/invalid-elm-json/unknown-type/elm.json @@ -13,7 +13,7 @@ "test-dependencies": { "direct": { "elm/regex": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/html": "1.0.0", diff --git a/tests/fixtures/write-elm-json/elm.input.json b/tests/fixtures/write-elm-json/elm.input.json index 76f505c4..8da72f3c 100644 --- a/tests/fixtures/write-elm-json/elm.input.json +++ b/tests/fixtures/write-elm-json/elm.input.json @@ -11,7 +11,7 @@ "test-dependencies": { "direct": { "elm/regex": "1.0.0", - "elm-explorations/test": "2.0.0" + "elm-explorations/test": "2.2.1" }, "indirect": { "elm/html": "1.0.0",