From e60455892f2df63e7089c471bf75bc4224960803 Mon Sep 17 00:00:00 2001 From: Antoine ZANARDI Date: Mon, 14 Oct 2024 12:38:44 +0200 Subject: [PATCH] feat(seo): add schema org --- .github/workflows/deploy-to-production.yml | 5 + .github/workflows/push-on-develop.yml | 5 + README.md | 1 + app/components/pages/index/IndexFooter.vue | 7 +- config/vitest/vitest.unit-config.ts | 1 + env/.env.example | 1 + nuxt.config.ts | 3 +- .../features/home/features/home.feature | 4 +- tests/acceptance/features/support/hooks.ts | 2 + tests/stryker/incremental.json | 4648 +++++++++-------- .../specs/__snapshots__/app.nuxt.spec.ts.snap | 2 +- .../IndexFooter.nuxt.spec.ts.snap | 2 +- 12 files changed, 2407 insertions(+), 2274 deletions(-) diff --git a/.github/workflows/deploy-to-production.yml b/.github/workflows/deploy-to-production.yml index 9e9beb87fd1..6236376d648 100644 --- a/.github/workflows/deploy-to-production.yml +++ b/.github/workflows/deploy-to-production.yml @@ -14,6 +14,7 @@ jobs: - tag: prod-fr NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL: "https://api.werewolves-assistant.com" NUXT_PUBLIC_DEFAULT_LOCALE: "fr" + NUXT_PUBLIC_CONTACT_EMAIL: "antoine.zanardi@epitech.eu" NUXT_SITE_URL: "https://werewolves-assistant.com" NUXT_SITE_NAME: "Assistant Loups-Garous" NUXT_SITE_ENV: "production" @@ -21,6 +22,7 @@ jobs: - tag: prod-en NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL: "https://api.werewolves-assistant.com" NUXT_PUBLIC_DEFAULT_LOCALE: "en" + NUXT_PUBLIC_CONTACT_EMAIL: "antoine.zanardi@epitech.eu" NUXT_SITE_URL: "https://werewolves-assistant.com" NUXT_SITE_NAME: "Werewolves Assistant" NUXT_SITE_ENV: "production" @@ -28,6 +30,7 @@ jobs: - tag: local-prod-fr NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL: "http://localhost:9191" NUXT_PUBLIC_DEFAULT_LOCALE: "fr" + NUXT_PUBLIC_CONTACT_EMAIL: "antoine.zanardi@epitech.eu" NUXT_SITE_URL: "http://localhost:3000" NUXT_SITE_NAME: "Assistant Loups-Garous" NUXT_SITE_ENV: "production" @@ -35,6 +38,7 @@ jobs: - tag: local-prod-en NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL: "http://localhost:9191" NUXT_PUBLIC_DEFAULT_LOCALE: "en" + NUXT_PUBLIC_CONTACT_EMAIL: "antoine.zanardi@epitech.eu" NUXT_SITE_URL: "http://localhost:3000" NUXT_SITE_NAME: "Werewolves Assistant" NUXT_SITE_ENV: "production" @@ -65,6 +69,7 @@ jobs: build-args: | NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL=${{ matrix.NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL }} NUXT_PUBLIC_DEFAULT_LOCALE=${{ matrix.NUXT_PUBLIC_DEFAULT_LOCALE }} + NUXT_PUBLIC_CONTACT_EMAIL=${{ matrix.NUXT_PUBLIC_CONTACT_EMAIL }} NUXT_SITE_URL=${{ matrix.NUXT_SITE_URL }} NUXT_SITE_NAME=${{ matrix.NUXT_SITE_NAME }} NUXT_SITE_ENV=${{ matrix.NUXT_SITE_ENV }} diff --git a/.github/workflows/push-on-develop.yml b/.github/workflows/push-on-develop.yml index 4ab601801d1..041a523f4c1 100644 --- a/.github/workflows/push-on-develop.yml +++ b/.github/workflows/push-on-develop.yml @@ -19,6 +19,7 @@ jobs: - tag: preprod-fr NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL: "https://preprod.api.werewolves-assistant.com" NUXT_PUBLIC_DEFAULT_LOCALE: "fr" + NUXT_PUBLIC_CONTACT_EMAIL: "antoine.zanardi@epitech.eu" NUXT_SITE_URL: "https://preprod.werewolves-assistant.com" NUXT_SITE_NAME: "Preprod Assistant Loups-Garous" NUXT_SITE_ENV: "development" @@ -26,6 +27,7 @@ jobs: - tag: preprod-en NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL: "https://preprod.api.werewolves-assistant.com" NUXT_PUBLIC_DEFAULT_LOCALE: "en" + NUXT_PUBLIC_CONTACT_EMAIL: "antoine.zanardi@epitech.eu" NUXT_SITE_URL: "https://preprod.werewolves-assistant.com" NUXT_SITE_NAME: "Preprod Werewolves Assistant" NUXT_SITE_ENV: "development" @@ -33,6 +35,7 @@ jobs: - tag: local-preprod-fr NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL: "http://localhost:9292" NUXT_PUBLIC_DEFAULT_LOCALE: "fr" + NUXT_PUBLIC_CONTACT_EMAIL: "antoine.zanardi@epitech.eu" NUXT_SITE_URL: "http://localhost:3001" NUXT_SITE_NAME: "Preprod Assistant Loups-Garous" NUXT_SITE_ENV: "development" @@ -40,6 +43,7 @@ jobs: - tag: local-preprod-en NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL: "http://localhost:9292" NUXT_PUBLIC_DEFAULT_LOCALE: "en" + NUXT_PUBLIC_CONTACT_EMAIL: "antoine.zanardi@epitech.eu" NUXT_SITE_URL: "http://localhost:3001" NUXT_SITE_NAME: "Preprod Werewolves Assistant" NUXT_SITE_ENV: "development" @@ -64,6 +68,7 @@ jobs: build-args: | NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL=${{ matrix.NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL }} NUXT_PUBLIC_DEFAULT_LOCALE=${{ matrix.NUXT_PUBLIC_DEFAULT_LOCALE }} + NUXT_PUBLIC_CONTACT_EMAIL=${{ matrix.NUXT_PUBLIC_CONTACT_EMAIL }} NUXT_SITE_URL=${{ matrix.NUXT_SITE_URL }} NUXT_SITE_NAME=${{ matrix.NUXT_SITE_NAME }} NUXT_SITE_ENV=${{ matrix.NUXT_SITE_ENV }} diff --git a/README.md b/README.md index 943d4731cb8..9e081ae1b7f 100644 --- a/README.md +++ b/README.md @@ -561,6 +561,7 @@ Environment variables are : |:-----------------------------------------------:|:----------------------------------------------------------------------:|:--------:|:-------------:|:----------------------------------------------:| | `NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL` | URL of the Werewolves Assistant API | ✅ | ❌ | Must be a valid URL | | `NUXT_PUBLIC_DEFAULT_LOCALE` | Locale used when starting the app | ❌ | `en` | Must be either `en` or `fr` | +| `NUXT_PUBLIC_CONTACT_EMAIL` | Contact email for the app | ✅ | ❌ | Must be a valid email address | | `SKIP_SCREENSHOTS_COMPARISON_TESTS` | In E2E tests, skip all screenshots comparisons, not used in production | ❌ | `false` | Must be either `true` or `false` | | `NUXT_SITE_URL` | Used for SEO, base URL for the site | ✅ | ❌ | Must be a valid URL | | `NUXT_SITE_NAME` | Used for SEO, name of the site (Used in titles) | ✅ | ❌ | Must be a valid string | diff --git a/app/components/pages/index/IndexFooter.vue b/app/components/pages/index/IndexFooter.vue index 9db7464c55b..89890e2cdc5 100644 --- a/app/components/pages/index/IndexFooter.vue +++ b/app/components/pages/index/IndexFooter.vue @@ -7,7 +7,7 @@ \ No newline at end of file diff --git a/config/vitest/vitest.unit-config.ts b/config/vitest/vitest.unit-config.ts index 1b7a6d203cc..7a3c25e6bbf 100644 --- a/config/vitest/vitest.unit-config.ts +++ b/config/vitest/vitest.unit-config.ts @@ -15,6 +15,7 @@ export default defineVitestConfig({ public: { defaultLocale: "en", werewolvesAssistantApi: { baseUrl: "http://127.0.0.1" }, + contactEmail: "john@doe.com", }, }, }, diff --git a/env/.env.example b/env/.env.example index 78737e5d10e..822ee39ba18 100644 --- a/env/.env.example +++ b/env/.env.example @@ -1,5 +1,6 @@ NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL="http://127.0.0.1:8080" NUXT_PUBLIC_DEFAULT_LOCALE="en" +NUXT_PUBLIC_CONTACT_EMAIL="john@doe.com" NUXT_SITE_URL="http://127.0.0.1:3000" NUXT_SITE_NAME="Werewolves Assistant" NUXT_SITE_ENV="development" diff --git a/nuxt.config.ts b/nuxt.config.ts index ae1e053ce1a..8be19f37f7c 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -241,6 +241,7 @@ export default defineNuxtConfig({ public: { defaultLocale: "en", werewolvesAssistantApi: { baseUrl: "" }, + contactEmail: "", }, }, schemaOrg: { @@ -255,7 +256,7 @@ export default defineNuxtConfig({ ], contactPoint: { type: "ContactPoint", - email: "antoine.zanardi@epitech.eu", + email: process.env.NUXT_PUBLIC_CONTACT_EMAIL, contactType: "Creator", }, }, diff --git a/tests/acceptance/features/home/features/home.feature b/tests/acceptance/features/home/features/home.feature index 914c44ed1ad..20214e7e37b 100644 --- a/tests/acceptance/features/home/features/home.feature +++ b/tests/acceptance/features/home/features/home.feature @@ -10,8 +10,8 @@ Feature: 🏠 Home Page And the link with name "What is it?" should be visible And the link with name "Contact the creator" should be visible And the link with name "Contact the creator" should have the following attributes - | name | value | - | href | mailto: antoine.zanardi@epitech.eu | + | name | value | + | href | mailto: john@doe.com | And the link with name "This project is open-source!" should be visible And the page should match or creates the missing snapshot with name "Home Page" diff --git a/tests/acceptance/features/support/hooks.ts b/tests/acceptance/features/support/hooks.ts index 76a7a4c926d..84933ba4b65 100644 --- a/tests/acceptance/features/support/hooks.ts +++ b/tests/acceptance/features/support/hooks.ts @@ -19,6 +19,7 @@ const { beforeEach, afterEach, afterAll, setup } = createTest({ env: { NUXT_PUBLIC_WEREWOLVES_ASSISTANT_API_BASE_URL: WEREWOLVES_ASSISTANT_SANDBOX_API_BASE_URL, NUXT_PUBLIC_DEFAULT_LOCALE: I18N_TEST_LOCALE, + NUXT_PUBLIC_CONTACT_EMAIL: "john@doe.com", NUXT_SITE_URL: "http://127.0.0.1:4000", NUXT_SITE_NAME: "Werewolves Assistant", NUXT_SITE_ENV: "test", @@ -37,6 +38,7 @@ const { beforeEach, afterEach, afterAll, setup } = createTest({ public: { defaultLocale: I18N_TEST_LOCALE, werewolvesAssistantApi: { baseUrl: WEREWOLVES_ASSISTANT_SANDBOX_API_BASE_URL }, + contactEmail: "john@doe.com", }, }, }, diff --git a/tests/stryker/incremental.json b/tests/stryker/incremental.json index 956891eacb6..8261c77ec7b 100644 --- a/tests/stryker/incremental.json +++ b/tests/stryker/incremental.json @@ -1819,15 +1819,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1949" + "1942" ], "coveredBy": [ - "1949", - "1950", - "1951", - "1952", - "1953", - "1954" + "1942", + "1943", + "1944", + "1945", + "1946", + "1947" ], "location": { "end": { @@ -1849,15 +1849,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1949" + "1942" ], "coveredBy": [ - "1949", - "1950", - "1951", - "1952", - "1953", - "1954" + "1942", + "1943", + "1944", + "1945", + "1946", + "1947" ], "location": { "end": { @@ -1879,15 +1879,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1949" + "1942" ], "coveredBy": [ - "1949", - "1950", - "1951", - "1952", - "1953", - "1954" + "1942", + "1943", + "1944", + "1945", + "1946", + "1947" ], "location": { "end": { @@ -13581,9 +13581,25 @@ "274" ], "coveredBy": [ + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", "265", + "266", "267", "268", + "269", "270", "271", "272", @@ -13596,6 +13612,7 @@ "279", "280", "281", + "282", "283" ], "location": { @@ -13621,9 +13638,25 @@ "268" ], "coveredBy": [ + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", "265", + "266", "267", "268", + "269", "270", "271", "272", @@ -13636,6 +13669,7 @@ "279", "280", "281", + "282", "283" ], "location": { @@ -13661,9 +13695,25 @@ "274" ], "coveredBy": [ + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", "265", + "266", "267", "268", + "269", "270", "271", "272", @@ -13676,6 +13726,7 @@ "279", "280", "281", + "282", "283" ], "location": { @@ -13701,9 +13752,25 @@ "268" ], "coveredBy": [ + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", "265", + "266", "267", "268", + "269", "270", "271", "272", @@ -13716,6 +13783,7 @@ "279", "280", "281", + "282", "283" ], "location": { @@ -13741,6 +13809,7 @@ "267" ], "coveredBy": [ + "258", "267", "268", "277", @@ -13769,6 +13838,7 @@ "268" ], "coveredBy": [ + "258", "267", "268", "277", @@ -33646,14 +33716,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1839" + "1842" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33675,14 +33745,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33704,14 +33774,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1839" + "1842" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33733,14 +33803,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1839" + "1842" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33762,14 +33832,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1839" + "1842" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33791,14 +33861,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33820,14 +33890,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1839" + "1842" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33849,14 +33919,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1839" + "1842" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33878,14 +33948,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1839" + "1842" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33907,14 +33977,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1839" + "1842" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -33936,10 +34006,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1843" + "1846" ], "location": { "end": { @@ -33961,10 +34031,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1843" + "1846" ], "location": { "end": { @@ -33986,14 +34056,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1841" + "1844" ], "coveredBy": [ - "1839", - "1840", - "1841", "1842", - "1843" + "1843", + "1844", + "1845", + "1846" ], "location": { "end": { @@ -37441,7 +37511,8 @@ ], "coveredBy": [ "289", - "291" + "291", + "297" ], "location": { "end": { @@ -37467,7 +37538,8 @@ ], "coveredBy": [ "289", - "291" + "291", + "297" ], "location": { "end": { @@ -37493,7 +37565,8 @@ ], "coveredBy": [ "289", - "291" + "291", + "297" ], "location": { "end": { @@ -37519,7 +37592,8 @@ ], "coveredBy": [ "289", - "291" + "291", + "297" ], "location": { "end": { @@ -37546,8 +37620,7 @@ "coveredBy": [ "288", "292", - "296", - "297" + "296" ], "location": { "end": { @@ -37574,8 +37647,7 @@ "coveredBy": [ "288", "292", - "296", - "297" + "296" ], "location": { "end": { @@ -37602,8 +37674,7 @@ "coveredBy": [ "288", "292", - "296", - "297" + "296" ], "location": { "end": { @@ -93793,7 +93864,7 @@ "language": "html", "mutants": [ { - "id": "2989", + "id": "2990", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -93825,7 +93896,7 @@ } }, { - "id": "2990", + "id": "2991", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -93857,7 +93928,7 @@ } }, { - "id": "2991", + "id": "2992", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -93889,7 +93960,7 @@ } }, { - "id": "2992", + "id": "2993", "mutatorName": "EqualityOperator", "replacement": "model.value !== true", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -93921,7 +93992,7 @@ } }, { - "id": "2993", + "id": "2994", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -93953,7 +94024,7 @@ } }, { - "id": "2994", + "id": "2995", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -93985,7 +94056,7 @@ } }, { - "id": "2995", + "id": "2996", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -94020,7 +94091,7 @@ "language": "html", "mutants": [ { - "id": "2996", + "id": "2997", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -94038,7 +94109,7 @@ } }, { - "id": "2997", + "id": "2998", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -94056,7 +94127,7 @@ } }, { - "id": "2998", + "id": "2999", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -94074,7 +94145,7 @@ } }, { - "id": "2999", + "id": "3000", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -94098,7 +94169,7 @@ "language": "html", "mutants": [ { - "id": "3000", + "id": "3001", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to be truthy", @@ -94123,7 +94194,7 @@ } }, { - "id": "3001", + "id": "3002", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected undefined to be truthy", @@ -94154,7 +94225,7 @@ "language": "html", "mutants": [ { - "id": "3002", + "id": "3003", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94180,7 +94251,7 @@ } }, { - "id": "3003", + "id": "3004", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94206,7 +94277,7 @@ } }, { - "id": "3004", + "id": "3005", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94232,7 +94303,7 @@ } }, { - "id": "3005", + "id": "3006", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94258,7 +94329,7 @@ } }, { - "id": "3006", + "id": "3007", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94284,7 +94355,7 @@ } }, { - "id": "3007", + "id": "3008", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94310,7 +94381,7 @@ } }, { - "id": "3008", + "id": "3009", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94336,7 +94407,7 @@ } }, { - "id": "3009", + "id": "3010", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94362,7 +94433,7 @@ } }, { - "id": "3010", + "id": "3011", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94388,7 +94459,7 @@ } }, { - "id": "3011", + "id": "3012", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Buy Me A Coffee Button Component > should match snapshot when rendered. 1` mismatched", @@ -94420,7 +94491,7 @@ "language": "html", "mutants": [ { - "id": "3012", + "id": "3013", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `App Component > should render component without shallow and match snapshot when rendered. 1` mismatched", @@ -94454,7 +94525,7 @@ } }, { - "id": "3013", + "id": "3014", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `App Component > should render component without shallow and match snapshot when rendered. 1` mismatched", @@ -94488,7 +94559,7 @@ } }, { - "id": "3014", + "id": "3015", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `GitHub Repository Button > should match snapshot when rendered. 1` mismatched", @@ -94522,7 +94593,7 @@ } }, { - "id": "3015", + "id": "3016", "mutatorName": "EqualityOperator", "replacement": "props.textButton === undefined", "statusReason": "Snapshot `App Component > should render component without shallow and match snapshot when rendered. 1` mismatched", @@ -94556,7 +94627,7 @@ } }, { - "id": "3016", + "id": "3017", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `GitHub Repository Button > should match snapshot when rendered. 1` mismatched", @@ -94583,7 +94654,7 @@ } }, { - "id": "3017", + "id": "3018", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `App Component > should render component without shallow and match snapshot when rendered. 1` mismatched", @@ -94621,7 +94692,7 @@ "language": "html", "mutants": [ { - "id": "3018", + "id": "3019", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Test timed out in 5000ms.\nIf this is a long-running test, pass a timeout value as the last argument or configure it globally with \"testTimeout\".", @@ -94645,7 +94716,7 @@ "1779", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -94673,7 +94744,7 @@ } }, { - "id": "3019", + "id": "3020", "mutatorName": "LogicalOperator", "replacement": "currentPlay?.source.players && []", "statusReason": "Test timed out in 5000ms.\nIf this is a long-running test, pass a timeout value as the last argument or configure it globally with \"testTimeout\".", @@ -94697,7 +94768,7 @@ "1779", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -94725,7 +94796,7 @@ } }, { - "id": "3020", + "id": "3021", "mutatorName": "OptionalChaining", "replacement": "currentPlay.source", "statusReason": "Test timed out in 5000ms.\nIf this is a long-running test, pass a timeout value as the last argument or configure it globally with \"testTimeout\".", @@ -94749,7 +94820,7 @@ "1779", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -94777,7 +94848,7 @@ } }, { - "id": "3021", + "id": "3022", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "expected [ 'Stryker was here' ] to strictly equal []", @@ -94797,7 +94868,7 @@ "1779", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -94831,7 +94902,7 @@ "language": "html", "mutants": [ { - "id": "3022", + "id": "3023", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Idiot Is Spared Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -94877,7 +94948,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -94906,7 +94977,7 @@ } }, { - "id": "3023", + "id": "3024", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be '125px' // Object.is equality", @@ -94931,7 +95002,7 @@ } }, { - "id": "3024", + "id": "3025", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Game Survivors Turn Starts Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -94977,7 +95048,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95006,7 +95077,7 @@ } }, { - "id": "3025", + "id": "3026", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Thief May Have Chosen Card Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -95052,7 +95123,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95081,7 +95152,7 @@ } }, { - "id": "3026", + "id": "3027", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'seer' to be 'cupid' // Object.is equality", @@ -95107,7 +95178,7 @@ } }, { - "id": "3027", + "id": "3028", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'seer' to be 'cupid' // Object.is equality", @@ -95133,7 +95204,7 @@ } }, { - "id": "3028", + "id": "3029", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected undefined to be 'seer' // Object.is equality", @@ -95159,7 +95230,7 @@ } }, { - "id": "3029", + "id": "3030", "mutatorName": "EqualityOperator", "replacement": "playerIndex.value !== props.players.length - 1", "statusReason": "expected 'seer' to be 'cupid' // Object.is equality", @@ -95185,7 +95256,7 @@ } }, { - "id": "3030", + "id": "3031", "mutatorName": "ArithmeticOperator", "replacement": "props.players.length + 1", "statusReason": "expected undefined to be 'seer' // Object.is equality", @@ -95211,7 +95282,7 @@ } }, { - "id": "3031", + "id": "3032", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to be 'seer' // Object.is equality", @@ -95236,7 +95307,7 @@ } }, { - "id": "3032", + "id": "3033", "mutatorName": "UpdateOperator", "replacement": "playerIndex.value--", "statusReason": "expected undefined to be 'cupid' // Object.is equality", @@ -95262,7 +95333,7 @@ } }, { - "id": "3033", + "id": "3034", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -95308,7 +95379,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95337,7 +95408,7 @@ } }, { - "id": "3034", + "id": "3035", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -95383,7 +95454,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95412,7 +95483,7 @@ } }, { - "id": "3035", + "id": "3036", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected \"setInterval\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st setInterval call:\n\n Array [\n [Function flipPlayerCard],\n 1500,\n ]\n\n\nNumber of calls: 1\n", @@ -95458,7 +95529,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95487,7 +95558,7 @@ } }, { - "id": "3036", + "id": "3037", "mutatorName": "EqualityOperator", "replacement": "props.players.length !== 0", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -95533,7 +95604,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95562,7 +95633,7 @@ } }, { - "id": "3037", + "id": "3038", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected \"setInterval\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st setInterval call:\n\n Array [\n [Function flipPlayerCard],\n 1500,\n ]\n\n\nNumber of calls: 1\n", @@ -95585,7 +95656,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95619,7 +95690,7 @@ "language": "html", "mutants": [ { - "id": "3038", + "id": "3039", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Test timed out in 5000ms.\nIf this is a long-running test, pass a timeout value as the last argument or configure it globally with \"testTimeout\".", @@ -95660,7 +95731,7 @@ } }, { - "id": "3039", + "id": "3040", "mutatorName": "LogicalOperator", "replacement": "props.players && []", "statusReason": "Snapshot `Game Seer Has Seen Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -95701,7 +95772,7 @@ } }, { - "id": "3040", + "id": "3041", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "expected [ 'Stryker was here' ] to strictly equal []", @@ -95732,7 +95803,7 @@ "language": "html", "mutants": [ { - "id": "3041", + "id": "3042", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Villager Villager Introduction Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -95777,7 +95848,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95807,7 +95878,7 @@ } }, { - "id": "3042", + "id": "3043", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to be '' // Object.is equality", @@ -95852,7 +95923,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95882,7 +95953,7 @@ } }, { - "id": "3043", + "id": "3044", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Werewolves Turn Starts Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -95927,7 +95998,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -95957,7 +96028,7 @@ } }, { - "id": "3044", + "id": "3045", "mutatorName": "EqualityOperator", "replacement": "makingGamePlayStatus.value === \"pending\"", "statusReason": "Snapshot `Game Phase Starts Event Component > should match snapshot without shallow rendering when rendered for night falling. 1` mismatched", @@ -96002,7 +96073,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96032,7 +96103,7 @@ } }, { - "id": "3045", + "id": "3046", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected undefined to be '' // Object.is equality", @@ -96077,7 +96148,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96107,7 +96178,7 @@ } }, { - "id": "3046", + "id": "3047", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Game Sheriff Promotion Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -96152,7 +96223,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96182,7 +96253,7 @@ } }, { - "id": "3047", + "id": "3048", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected { …(2) } to strictly equal { …(2) }", @@ -96227,7 +96298,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96257,7 +96328,7 @@ } }, { - "id": "3048", + "id": "3049", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Charmed Turn Starts Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -96302,7 +96373,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96332,7 +96403,7 @@ } }, { - "id": "3049", + "id": "3050", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Pied Piper Turn Starts Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -96377,7 +96448,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96407,7 +96478,7 @@ } }, { - "id": "3050", + "id": "3051", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected { …(2) } to strictly equal { …(2) }", @@ -96452,7 +96523,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96482,7 +96553,7 @@ } }, { - "id": "3051", + "id": "3052", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected { …(2) } to strictly equal { …(2) }", @@ -96527,7 +96598,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96557,7 +96628,7 @@ } }, { - "id": "3052", + "id": "3053", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected { …(2) } to strictly equal { …(2) }", @@ -96602,7 +96673,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96632,7 +96703,7 @@ } }, { - "id": "3053", + "id": "3054", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to be truthy", @@ -96660,7 +96731,7 @@ } }, { - "id": "3054", + "id": "3055", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected undefined to be truthy", @@ -96688,7 +96759,7 @@ } }, { - "id": "3055", + "id": "3056", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to be truthy", @@ -96715,7 +96786,7 @@ } }, { - "id": "3056", + "id": "3057", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ Array(3) ] to include 'animate__headShake'", @@ -96742,7 +96813,7 @@ } }, { - "id": "3057", + "id": "3058", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected undefined to be truthy", @@ -96787,7 +96858,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -96817,7 +96888,7 @@ } }, { - "id": "3058", + "id": "3059", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to be truthy", @@ -96845,7 +96916,7 @@ } }, { - "id": "3059", + "id": "3060", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to be truthy", @@ -96873,7 +96944,7 @@ } }, { - "id": "3060", + "id": "3061", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [ [] ] to be falsy", @@ -96901,7 +96972,7 @@ } }, { - "id": "3061", + "id": "3062", "mutatorName": "LogicalOperator", "replacement": "!isKeyPressed && !canGoToNextGameEventText.value", "statusReason": "expected [ [] ] to be falsy", @@ -96929,7 +97000,7 @@ } }, { - "id": "3062", + "id": "3063", "mutatorName": "BooleanLiteral", "replacement": "isKeyPressed", "statusReason": "expected undefined to be truthy", @@ -96957,7 +97028,7 @@ } }, { - "id": "3063", + "id": "3064", "mutatorName": "BooleanLiteral", "replacement": "canGoToNextGameEventText.value", "statusReason": "expected undefined to be truthy", @@ -96985,7 +97056,7 @@ } }, { - "id": "3064", + "id": "3065", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ [] ] to be falsy", @@ -97017,7 +97088,7 @@ "language": "html", "mutants": [ { - "id": "3065", + "id": "3066", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected '' to be undefined", @@ -97066,7 +97137,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97096,7 +97167,7 @@ } }, { - "id": "3066", + "id": "3067", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Wolf Hound Has Chosen Side Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -97145,7 +97216,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97175,7 +97246,7 @@ } }, { - "id": "3067", + "id": "3068", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected '' to be undefined", @@ -97224,7 +97295,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97254,7 +97325,7 @@ } }, { - "id": "3068", + "id": "3069", "mutatorName": "LogicalOperator", "replacement": "props.currentTextIndex > 0 || makingGamePlayStatus.value !== \"pending\"", "statusReason": "Snapshot `Game Wolf Hound Has Chosen Side Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -97303,7 +97374,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97333,7 +97404,7 @@ } }, { - "id": "3069", + "id": "3070", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Wolf Hound Has Chosen Side Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -97382,7 +97453,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97412,7 +97483,7 @@ } }, { - "id": "3070", + "id": "3071", "mutatorName": "EqualityOperator", "replacement": "props.currentTextIndex >= 0", "statusReason": "Snapshot `Game Wolf Hound Has Chosen Side Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -97461,7 +97532,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97491,7 +97562,7 @@ } }, { - "id": "3071", + "id": "3072", "mutatorName": "EqualityOperator", "replacement": "props.currentTextIndex <= 0", "statusReason": "Snapshot `Game Wolf Hound Has Chosen Side Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -97540,7 +97611,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97570,7 +97641,7 @@ } }, { - "id": "3072", + "id": "3073", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to be '' // Object.is equality", @@ -97599,7 +97670,7 @@ } }, { - "id": "3073", + "id": "3074", "mutatorName": "EqualityOperator", "replacement": "makingGamePlayStatus.value === \"pending\"", "statusReason": "expected undefined to be '' // Object.is equality", @@ -97628,7 +97699,7 @@ } }, { - "id": "3074", + "id": "3075", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected undefined to be '' // Object.is equality", @@ -97657,7 +97728,7 @@ } }, { - "id": "3075", + "id": "3076", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Game Event Previous Text Button Component > should match snapshot when rendered. 1` mismatched", @@ -97706,7 +97777,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97736,7 +97807,7 @@ } }, { - "id": "3076", + "id": "3077", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected { disabled: true, …(2) } to strictly equal { disabled: true, …(2) }", @@ -97785,7 +97856,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97815,7 +97886,7 @@ } }, { - "id": "3077", + "id": "3078", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Event Previous Text Button Component > should match snapshot when rendered. 1` mismatched", @@ -97864,7 +97935,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97894,7 +97965,7 @@ } }, { - "id": "3078", + "id": "3079", "mutatorName": "BooleanLiteral", "replacement": "canGoToPreviousGameEventText.value", "statusReason": "expected { disabled: false, …(2) } to strictly equal { disabled: true, …(2) }", @@ -97943,7 +98014,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -97973,7 +98044,7 @@ } }, { - "id": "3079", + "id": "3080", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Event Previous Text Button Component > should match snapshot when rendered. 1` mismatched", @@ -98022,7 +98093,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -98052,7 +98123,7 @@ } }, { - "id": "3080", + "id": "3081", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected { disabled: true, …(2) } to strictly equal { disabled: true, …(2) }", @@ -98101,7 +98172,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -98131,7 +98202,7 @@ } }, { - "id": "3081", + "id": "3082", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected { disabled: true, …(2) } to strictly equal { disabled: true, …(2) }", @@ -98180,7 +98251,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -98210,7 +98281,7 @@ } }, { - "id": "3082", + "id": "3083", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected { disabled: true, …(2) } to strictly equal { disabled: true, …(2) }", @@ -98259,7 +98330,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -98289,7 +98360,7 @@ } }, { - "id": "3083", + "id": "3084", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Target cannot be null or undefined.", @@ -98318,7 +98389,7 @@ } }, { - "id": "3084", + "id": "3085", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Target cannot be null or undefined.", @@ -98347,7 +98418,7 @@ } }, { - "id": "3085", + "id": "3086", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Target cannot be null or undefined.", @@ -98375,7 +98446,7 @@ } }, { - "id": "3086", + "id": "3087", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Anything,\n \"headShake\",\n], but it was called with RefImpl {\n \"__v_isRef\": true,\n \"__v_isShallow\": false,\n \"_rawValue\": \n \n ,\n \"_value\": \n \n ,\n \"dep\": Dep {\n \"activeLink\": undefined,\n \"computed\": undefined,\n \"key\": undefined,\n \"map\": undefined,\n \"sc\": 0,\n \"subs\": undefined,\n \"subsHead\": undefined,\n \"version\": 1,\n },\n}", @@ -98403,7 +98474,7 @@ } }, { - "id": "3087", + "id": "3088", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Target cannot be null or undefined.", @@ -98452,7 +98523,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -98482,7 +98553,7 @@ } }, { - "id": "3088", + "id": "3089", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Target cannot be null or undefined.", @@ -98510,7 +98581,7 @@ } }, { - "id": "3089", + "id": "3090", "mutatorName": "BooleanLiteral", "replacement": "isKeyPressed", "statusReason": "Target cannot be null or undefined.", @@ -98538,7 +98609,7 @@ } }, { - "id": "3090", + "id": "3091", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Target cannot be null or undefined.", @@ -98566,7 +98637,7 @@ } }, { - "id": "3091", + "id": "3092", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected \"spy\" to not be called at all, but actually been called 2 times\n\nReceived: \n\n 1st spy call:\n\n Array [\n RefImpl {\n \"__v_isRef\": true,\n \"__v_isShallow\": false,\n \"_rawValue\": \n \n ,\n \"_value\": \n \n ,\n \"dep\": Dep {\n \"activeLink\": undefined,\n \"computed\": undefined,\n \"key\": undefined,\n \"map\": undefined,\n \"sc\": 0,\n \"subs\": undefined,\n \"subsHead\": undefined,\n \"version\": 1,\n },\n },\n \"headShake\",\n ]\n\n 2nd spy call:\n\n Array [\n RefImpl {\n \"__v_isRef\": true,\n \"__v_isShallow\": false,\n \"_rawValue\": \n \n ,\n \"_value\": \n \n ,\n \"dep\": Dep {\n \"activeLink\": undefined,\n \"computed\": undefined,\n \"key\": undefined,\n \"map\": undefined,\n \"sc\": 0,\n \"subs\": undefined,\n \"subsHead\": undefined,\n \"version\": 1,\n },\n },\n \"headShake\",\n ]\n\n\nNumber of calls: 2\n", @@ -98594,7 +98665,7 @@ } }, { - "id": "3092", + "id": "3093", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected \"spy\" to not be called at all, but actually been called 2 times\n\nReceived: \n\n 1st spy call:\n\n Array [\n RefImpl {\n \"__v_isRef\": true,\n \"__v_isShallow\": false,\n \"_rawValue\": \n \n ,\n \"_value\": \n \n ,\n \"dep\": Dep {\n \"activeLink\": undefined,\n \"computed\": undefined,\n \"key\": undefined,\n \"map\": undefined,\n \"sc\": 0,\n \"subs\": undefined,\n \"subsHead\": undefined,\n \"version\": 1,\n },\n },\n \"headShake\",\n ]\n\n 2nd spy call:\n\n Array [\n RefImpl {\n \"__v_isRef\": true,\n \"__v_isShallow\": false,\n \"_rawValue\": \n \n ,\n \"_value\": \n \n ,\n \"dep\": Dep {\n \"activeLink\": undefined,\n \"computed\": undefined,\n \"key\": undefined,\n \"map\": undefined,\n \"sc\": 0,\n \"subs\": undefined,\n \"subsHead\": undefined,\n \"version\": 1,\n },\n },\n \"headShake\",\n ]\n\n\nNumber of calls: 2\n", @@ -98626,7 +98697,7 @@ "language": "html", "mutants": [ { - "id": "3093", + "id": "3094", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Fox May Have Sniffed Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -98672,7 +98743,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -98702,7 +98773,7 @@ } }, { - "id": "3094", + "id": "3095", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -98748,7 +98819,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -98778,7 +98849,7 @@ } }, { - "id": "3095", + "id": "3096", "mutatorName": "ArithmeticOperator", "replacement": "currentIndex.value - 1", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -98811,7 +98882,7 @@ } }, { - "id": "3096", + "id": "3097", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -98857,7 +98928,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -98887,7 +98958,7 @@ } }, { - "id": "3097", + "id": "3098", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'Day rises.' to be 'Game starts.' // Object.is equality", @@ -98920,7 +98991,7 @@ } }, { - "id": "3098", + "id": "3099", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -98953,7 +99024,7 @@ } }, { - "id": "3099", + "id": "3100", "mutatorName": "EqualityOperator", "replacement": "makingGamePlayStatus.value === \"pending\"", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -98986,7 +99057,7 @@ } }, { - "id": "3100", + "id": "3101", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected 'Day rises.' to be 'Game starts.' // Object.is equality", @@ -99019,7 +99090,7 @@ } }, { - "id": "3101", + "id": "3102", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'Night falls.' to be 'Day rises.' // Object.is equality", @@ -99045,7 +99116,7 @@ } }, { - "id": "3102", + "id": "3103", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'Night falls.' to be 'Day rises.' // Object.is equality", @@ -99071,7 +99142,7 @@ } }, { - "id": "3103", + "id": "3104", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected '' to be 'Game starts.' // Object.is equality", @@ -99097,7 +99168,7 @@ } }, { - "id": "3104", + "id": "3105", "mutatorName": "EqualityOperator", "replacement": "currentIndex.value !== 0", "statusReason": "expected 'Night falls.' to be 'Day rises.' // Object.is equality", @@ -99123,7 +99194,7 @@ } }, { - "id": "3105", + "id": "3106", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected '' to be 'Game starts.' // Object.is equality", @@ -99148,7 +99219,7 @@ } }, { - "id": "3106", + "id": "3107", "mutatorName": "UpdateOperator", "replacement": "currentIndex.value++", "statusReason": "expected '' to be 'Day rises.' // Object.is equality", @@ -99173,7 +99244,7 @@ } }, { - "id": "3107", + "id": "3108", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -99203,7 +99274,7 @@ } }, { - "id": "3108", + "id": "3109", "mutatorName": "BooleanLiteral", "replacement": "canGoToNextGameEventText.value", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -99233,7 +99304,7 @@ } }, { - "id": "3109", + "id": "3110", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -99263,7 +99334,7 @@ } }, { - "id": "3110", + "id": "3111", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'Day rises.' to be 'Game starts.' // Object.is equality", @@ -99293,7 +99364,7 @@ } }, { - "id": "3111", + "id": "3112", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'Day rises.' to be 'Game starts.' // Object.is equality", @@ -99318,7 +99389,7 @@ } }, { - "id": "3112", + "id": "3113", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -99347,7 +99418,7 @@ } }, { - "id": "3113", + "id": "3114", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -99376,7 +99447,7 @@ } }, { - "id": "3114", + "id": "3115", "mutatorName": "EqualityOperator", "replacement": "nextGameEventText.value !== undefined", "statusReason": "expected 'Game starts.' to be 'Day rises.' // Object.is equality", @@ -99405,7 +99476,7 @@ } }, { - "id": "3115", + "id": "3116", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -99431,7 +99502,7 @@ } }, { - "id": "3116", + "id": "3117", "mutatorName": "UpdateOperator", "replacement": "currentIndex.value--", "statusReason": "expected '' to be 'Day rises.' // Object.is equality", @@ -99458,7 +99529,7 @@ } }, { - "id": "3117", + "id": "3118", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Target cannot be null or undefined.", @@ -99485,7 +99556,7 @@ } }, { - "id": "3118", + "id": "3119", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Target cannot be null or undefined.", @@ -99518,7 +99589,7 @@ "language": "html", "mutants": [ { - "id": "3119", + "id": "3120", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to strictly equal [ [ 'Day rises.' ] ]", @@ -99544,7 +99615,7 @@ } }, { - "id": "3120", + "id": "3121", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to strictly equal [ [ 'Day rises.' ] ]", @@ -99570,7 +99641,7 @@ } }, { - "id": "3121", + "id": "3122", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [ [ undefined ] ] to be undefined", @@ -99596,7 +99667,7 @@ } }, { - "id": "3122", + "id": "3123", "mutatorName": "EqualityOperator", "replacement": "newGameEventText !== undefined", "statusReason": "expected undefined to strictly equal [ [ 'Day rises.' ] ]", @@ -99622,7 +99693,7 @@ } }, { - "id": "3123", + "id": "3124", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ [ undefined ] ] to be undefined", @@ -99647,7 +99718,7 @@ } }, { - "id": "3124", + "id": "3125", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected undefined to strictly equal [ [ 'Day rises.' ] ]", @@ -99678,7 +99749,7 @@ "language": "html", "mutants": [ { - "id": "3125", + "id": "3126", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -99696,7 +99767,7 @@ } }, { - "id": "3126", + "id": "3127", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -99720,7 +99791,7 @@ "language": "html", "mutants": [ { - "id": "3127", + "id": "3128", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Recipient Role Additional Cards Manager Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -99752,7 +99823,7 @@ } }, { - "id": "3128", + "id": "3129", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Recipient Role Additional Cards Manager Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -99790,7 +99861,7 @@ "language": "html", "mutants": [ { - "id": "3129", + "id": "3130", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Hook timed out in 10000ms.\nIf this is a long-running hook, pass a timeout value as the last argument or configure it globally with \"hookTimeout\".", @@ -99798,16 +99869,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1942" + "1948" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -99821,7 +99892,7 @@ } }, { - "id": "3130", + "id": "3131", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Hook timed out in 10000ms.\nIf this is a long-running hook, pass a timeout value as the last argument or configure it globally with \"hookTimeout\".", @@ -99829,16 +99900,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1942" + "1948" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -99852,7 +99923,7 @@ } }, { - "id": "3131", + "id": "3132", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected undefined to be 'moon' // Object.is equality", @@ -99860,16 +99931,16 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1943" + "1949" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -99883,7 +99954,7 @@ } }, { - "id": "3132", + "id": "3133", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'moon' // Object.is equality", @@ -99891,16 +99962,16 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1943" + "1949" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -99914,7 +99985,7 @@ } }, { - "id": "3133", + "id": "3134", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toContainValues(expected)\n\nExpected object to contain all values:\n Array [\n \"text-night\",\n]\nReceived:\n Array []", @@ -99922,16 +99993,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1946" + "1952" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -99945,7 +100016,7 @@ } }, { - "id": "3134", + "id": "3135", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Phase Icon Component > should match snapshot when rendered. 1` mismatched", @@ -99953,16 +100024,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1942" + "1948" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -99976,7 +100047,7 @@ } }, { - "id": "3135", + "id": "3136", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Game Phase Icon Component > should match snapshot when rendered. 1` mismatched", @@ -99984,16 +100055,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1942" + "1948" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -100007,7 +100078,7 @@ } }, { - "id": "3136", + "id": "3137", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Game Phase Icon Component > should match snapshot when rendered. 1` mismatched", @@ -100015,16 +100086,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1942" + "1948" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -100038,7 +100109,7 @@ } }, { - "id": "3137", + "id": "3138", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected undefined to be 'cloud-moon' // Object.is equality", @@ -100046,16 +100117,16 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1945" + "1951" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -100069,7 +100140,7 @@ } }, { - "id": "3138", + "id": "3139", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'cloud-moon' // Object.is equality", @@ -100077,16 +100148,16 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1945" + "1951" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -100100,7 +100171,7 @@ } }, { - "id": "3139", + "id": "3140", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toContainValues(expected)\n\nExpected object to contain all values:\n Array [\n \"text-twilight\",\n]\nReceived:\n Array []", @@ -100108,16 +100179,16 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1948" + "1954" ], "coveredBy": [ - "1942", - "1943", - "1944", - "1945", - "1946", - "1947", - "1948" + "1948", + "1949", + "1950", + "1951", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -100137,7 +100208,7 @@ "language": "typescript", "mutants": [ { - "id": "3140", + "id": "3141", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100156,7 +100227,7 @@ } }, { - "id": "3141", + "id": "3142", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100175,7 +100246,7 @@ } }, { - "id": "3142", + "id": "3143", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100194,7 +100265,7 @@ } }, { - "id": "3143", + "id": "3144", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100213,7 +100284,7 @@ } }, { - "id": "3144", + "id": "3145", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100232,7 +100303,7 @@ } }, { - "id": "3145", + "id": "3146", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100251,7 +100322,7 @@ } }, { - "id": "3146", + "id": "3147", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100270,7 +100341,7 @@ } }, { - "id": "3147", + "id": "3148", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100289,7 +100360,7 @@ } }, { - "id": "3148", + "id": "3149", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100308,7 +100379,7 @@ } }, { - "id": "3149", + "id": "3150", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100327,7 +100398,7 @@ } }, { - "id": "3150", + "id": "3151", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100346,7 +100417,7 @@ } }, { - "id": "3151", + "id": "3152", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100365,7 +100436,7 @@ } }, { - "id": "3152", + "id": "3153", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100384,7 +100455,7 @@ } }, { - "id": "3153", + "id": "3154", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100403,7 +100474,7 @@ } }, { - "id": "3154", + "id": "3155", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100422,7 +100493,7 @@ } }, { - "id": "3155", + "id": "3156", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100441,7 +100512,7 @@ } }, { - "id": "3156", + "id": "3157", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100460,7 +100531,7 @@ } }, { - "id": "3157", + "id": "3158", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100479,7 +100550,7 @@ } }, { - "id": "3158", + "id": "3159", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100498,7 +100569,7 @@ } }, { - "id": "3159", + "id": "3160", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100517,7 +100588,7 @@ } }, { - "id": "3160", + "id": "3161", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100536,7 +100607,7 @@ } }, { - "id": "3161", + "id": "3162", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100555,7 +100626,7 @@ } }, { - "id": "3162", + "id": "3163", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100574,7 +100645,7 @@ } }, { - "id": "3163", + "id": "3164", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100593,7 +100664,7 @@ } }, { - "id": "3164", + "id": "3165", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100612,7 +100683,7 @@ } }, { - "id": "3165", + "id": "3166", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100631,7 +100702,7 @@ } }, { - "id": "3166", + "id": "3167", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100650,7 +100721,7 @@ } }, { - "id": "3167", + "id": "3168", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100669,7 +100740,7 @@ } }, { - "id": "3168", + "id": "3169", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100688,7 +100759,7 @@ } }, { - "id": "3169", + "id": "3170", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100707,7 +100778,7 @@ } }, { - "id": "3170", + "id": "3171", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100726,7 +100797,7 @@ } }, { - "id": "3171", + "id": "3172", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100745,7 +100816,7 @@ } }, { - "id": "3172", + "id": "3173", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100764,7 +100835,7 @@ } }, { - "id": "3173", + "id": "3174", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100783,7 +100854,7 @@ } }, { - "id": "3174", + "id": "3175", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100802,7 +100873,7 @@ } }, { - "id": "3175", + "id": "3176", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100821,7 +100892,7 @@ } }, { - "id": "3176", + "id": "3177", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100840,7 +100911,7 @@ } }, { - "id": "3177", + "id": "3178", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100859,7 +100930,7 @@ } }, { - "id": "3178", + "id": "3179", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100878,7 +100949,7 @@ } }, { - "id": "3179", + "id": "3180", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100897,7 +100968,7 @@ } }, { - "id": "3180", + "id": "3181", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100916,7 +100987,7 @@ } }, { - "id": "3181", + "id": "3182", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100935,7 +101006,7 @@ } }, { - "id": "3182", + "id": "3183", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100954,7 +101025,7 @@ } }, { - "id": "3183", + "id": "3184", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100973,7 +101044,7 @@ } }, { - "id": "3184", + "id": "3185", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -100992,7 +101063,7 @@ } }, { - "id": "3185", + "id": "3186", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101011,7 +101082,7 @@ } }, { - "id": "3186", + "id": "3187", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101030,7 +101101,7 @@ } }, { - "id": "3187", + "id": "3188", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101049,7 +101120,7 @@ } }, { - "id": "3188", + "id": "3189", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101068,7 +101139,7 @@ } }, { - "id": "3189", + "id": "3190", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101087,7 +101158,7 @@ } }, { - "id": "3190", + "id": "3191", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101106,7 +101177,7 @@ } }, { - "id": "3191", + "id": "3192", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101125,7 +101196,7 @@ } }, { - "id": "3192", + "id": "3193", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101144,7 +101215,7 @@ } }, { - "id": "3193", + "id": "3194", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101163,7 +101234,7 @@ } }, { - "id": "3194", + "id": "3195", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101182,7 +101253,7 @@ } }, { - "id": "3195", + "id": "3196", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101201,7 +101272,7 @@ } }, { - "id": "3196", + "id": "3197", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101220,7 +101291,7 @@ } }, { - "id": "3197", + "id": "3198", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101239,7 +101310,7 @@ } }, { - "id": "3198", + "id": "3199", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101258,7 +101329,7 @@ } }, { - "id": "3199", + "id": "3200", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101277,7 +101348,7 @@ } }, { - "id": "3200", + "id": "3201", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101296,7 +101367,7 @@ } }, { - "id": "3201", + "id": "3202", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101315,7 +101386,7 @@ } }, { - "id": "3202", + "id": "3203", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101334,7 +101405,7 @@ } }, { - "id": "3203", + "id": "3204", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101353,7 +101424,7 @@ } }, { - "id": "3204", + "id": "3205", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101372,7 +101443,7 @@ } }, { - "id": "3205", + "id": "3206", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101391,7 +101462,7 @@ } }, { - "id": "3206", + "id": "3207", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101410,7 +101481,7 @@ } }, { - "id": "3207", + "id": "3208", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101429,7 +101500,7 @@ } }, { - "id": "3208", + "id": "3209", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101448,7 +101519,7 @@ } }, { - "id": "3209", + "id": "3210", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101467,7 +101538,7 @@ } }, { - "id": "3210", + "id": "3211", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101486,7 +101557,7 @@ } }, { - "id": "3211", + "id": "3212", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101505,7 +101576,7 @@ } }, { - "id": "3212", + "id": "3213", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101524,7 +101595,7 @@ } }, { - "id": "3213", + "id": "3214", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101543,7 +101614,7 @@ } }, { - "id": "3214", + "id": "3215", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101562,7 +101633,7 @@ } }, { - "id": "3215", + "id": "3216", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101581,7 +101652,7 @@ } }, { - "id": "3216", + "id": "3217", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101600,7 +101671,7 @@ } }, { - "id": "3217", + "id": "3218", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101619,7 +101690,7 @@ } }, { - "id": "3218", + "id": "3219", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101638,7 +101709,7 @@ } }, { - "id": "3219", + "id": "3220", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101657,7 +101728,7 @@ } }, { - "id": "3220", + "id": "3221", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101676,7 +101747,7 @@ } }, { - "id": "3221", + "id": "3222", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101695,7 +101766,7 @@ } }, { - "id": "3222", + "id": "3223", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101714,7 +101785,7 @@ } }, { - "id": "3223", + "id": "3224", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101733,7 +101804,7 @@ } }, { - "id": "3224", + "id": "3225", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101752,7 +101823,7 @@ } }, { - "id": "3225", + "id": "3226", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101771,7 +101842,7 @@ } }, { - "id": "3226", + "id": "3227", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101790,7 +101861,7 @@ } }, { - "id": "3227", + "id": "3228", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101809,7 +101880,7 @@ } }, { - "id": "3228", + "id": "3229", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101828,7 +101899,7 @@ } }, { - "id": "3229", + "id": "3230", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101847,7 +101918,7 @@ } }, { - "id": "3230", + "id": "3231", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101866,7 +101937,7 @@ } }, { - "id": "3231", + "id": "3232", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101885,7 +101956,7 @@ } }, { - "id": "3232", + "id": "3233", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101904,7 +101975,7 @@ } }, { - "id": "3233", + "id": "3234", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101923,7 +101994,7 @@ } }, { - "id": "3234", + "id": "3235", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101942,7 +102013,7 @@ } }, { - "id": "3235", + "id": "3236", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101961,7 +102032,7 @@ } }, { - "id": "3236", + "id": "3237", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101980,7 +102051,7 @@ } }, { - "id": "3237", + "id": "3238", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -101999,7 +102070,7 @@ } }, { - "id": "3238", + "id": "3239", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -102018,7 +102089,7 @@ } }, { - "id": "3239", + "id": "3240", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -102037,7 +102108,7 @@ } }, { - "id": "3240", + "id": "3241", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -102056,7 +102127,7 @@ } }, { - "id": "3241", + "id": "3242", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -102075,7 +102146,7 @@ } }, { - "id": "3242", + "id": "3243", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -102094,7 +102165,7 @@ } }, { - "id": "3243", + "id": "3244", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -102113,7 +102184,7 @@ } }, { - "id": "3244", + "id": "3245", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -102132,7 +102203,7 @@ } }, { - "id": "3245", + "id": "3246", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -102157,7 +102228,7 @@ "language": "html", "mutants": [ { - "id": "3246", + "id": "3247", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -102175,7 +102246,7 @@ } }, { - "id": "3247", + "id": "3248", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -102193,7 +102264,7 @@ } }, { - "id": "3248", + "id": "3249", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -102211,7 +102282,7 @@ } }, { - "id": "3249", + "id": "3250", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -102229,7 +102300,7 @@ } }, { - "id": "3250", + "id": "3251", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected undefined to be 'Select Player' // Object.is equality", @@ -102266,7 +102337,7 @@ } }, { - "id": "3251", + "id": "3252", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Player Card Component > should match snapshot when rendered. 1` mismatched", @@ -102303,7 +102374,7 @@ } }, { - "id": "3252", + "id": "3253", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Player Card Component > should match snapshot when rendered. 1` mismatched", @@ -102340,7 +102411,7 @@ } }, { - "id": "3253", + "id": "3254", "mutatorName": "BooleanLiteral", "replacement": "props.isDisabled", "statusReason": "Snapshot `Player Card Component > should match snapshot when rendered. 1` mismatched", @@ -102377,7 +102448,7 @@ } }, { - "id": "3254", + "id": "3255", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Player Card Component > should match snapshot when rendered. 1` mismatched", @@ -102414,7 +102485,7 @@ } }, { - "id": "3255", + "id": "3256", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Player Card Component > should match snapshot when rendered. 1` mismatched", @@ -102451,7 +102522,7 @@ } }, { - "id": "3256", + "id": "3257", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Player Card Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -102488,7 +102559,7 @@ } }, { - "id": "3257", + "id": "3258", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Target cannot be null or undefined.", @@ -102513,7 +102584,7 @@ } }, { - "id": "3258", + "id": "3259", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Target cannot be null or undefined.", @@ -102544,7 +102615,7 @@ "language": "html", "mutants": [ { - "id": "3259", + "id": "3260", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Players Horizontal List Component > should match snapshot when rendered. 1` mismatched", @@ -102572,7 +102643,7 @@ } }, { - "id": "3260", + "id": "3261", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be '50px' // Object.is equality", @@ -102597,7 +102668,7 @@ } }, { - "id": "3261", + "id": "3262", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Players Horizontal List Component > should match snapshot when rendered. 1` mismatched", @@ -102631,7 +102702,7 @@ "language": "typescript", "mutants": [ { - "id": "3262", + "id": "3263", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -102656,7 +102727,7 @@ "language": "html", "mutants": [ { - "id": "3263", + "id": "3264", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Overflow Tag Component > should match snapshot when rendered. 1` mismatched", @@ -102683,7 +102754,7 @@ } }, { - "id": "3264", + "id": "3265", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be falsy", @@ -102710,7 +102781,7 @@ } }, { - "id": "3265", + "id": "3266", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Overflow Tag Component > should match snapshot when rendered. 1` mismatched", @@ -102737,7 +102808,7 @@ } }, { - "id": "3266", + "id": "3267", "mutatorName": "EqualityOperator", "replacement": "props.entitiesCount >= props.maximumEntitiesDisplayed", "statusReason": "expected true to be falsy", @@ -102764,7 +102835,7 @@ } }, { - "id": "3267", + "id": "3268", "mutatorName": "EqualityOperator", "replacement": "props.entitiesCount <= props.maximumEntitiesDisplayed", "statusReason": "Snapshot `Overflow Tag Component > should match snapshot when rendered. 1` mismatched", @@ -102791,7 +102862,7 @@ } }, { - "id": "3268", + "id": "3269", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Overflow Tag Component > should match snapshot when rendered. 1` mismatched", @@ -102818,7 +102889,7 @@ } }, { - "id": "3269", + "id": "3270", "mutatorName": "ArithmeticOperator", "replacement": "props.entitiesCount + props.maximumEntitiesDisplayed", "statusReason": "Snapshot `Overflow Tag Component > should match snapshot when rendered. 1` mismatched", @@ -102845,7 +102916,7 @@ } }, { - "id": "3270", + "id": "3271", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Overflow Tag Component > should match snapshot when rendered. 1` mismatched", @@ -102872,7 +102943,7 @@ } }, { - "id": "3271", + "id": "3272", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Overflow Tag Component > should match snapshot when rendered. 1` mismatched", @@ -102905,7 +102976,7 @@ "language": "html", "mutants": [ { - "id": "3272", + "id": "3273", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Role Description Lines Component > should match snapshot when rendered. 1` mismatched", @@ -102932,7 +103003,7 @@ } }, { - "id": "3273", + "id": "3274", "mutatorName": "BooleanLiteral", "replacement": "roleDescriptionMessages", "statusReason": "Snapshot `Role Description Lines Component > should match snapshot when rendered. 1` mismatched", @@ -102959,7 +103030,7 @@ } }, { - "id": "3274", + "id": "3275", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Role Description Lines Component > should match snapshot when rendered. 1` mismatched", @@ -102986,7 +103057,7 @@ } }, { - "id": "3275", + "id": "3276", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Test timed out in 5000ms.\nIf this is a long-running test, pass a timeout value as the last argument or configure it globally with \"testTimeout\".", @@ -103013,7 +103084,7 @@ } }, { - "id": "3276", + "id": "3277", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Test timed out in 5000ms.\nIf this is a long-running test, pass a timeout value as the last argument or configure it globally with \"testTimeout\".", @@ -103038,7 +103109,7 @@ } }, { - "id": "3277", + "id": "3278", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "expected [ DOMWrapper{ …(2) } ] to have a length of +0 but got 1", @@ -103063,7 +103134,7 @@ } }, { - "id": "3278", + "id": "3279", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Role Description Lines Component > should match snapshot when rendered. 1` mismatched", @@ -103090,7 +103161,7 @@ } }, { - "id": "3279", + "id": "3280", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Role Description Lines Component > should match snapshot when rendered. 1` mismatched", @@ -103123,7 +103194,7 @@ "language": "html", "mutants": [ { - "id": "3280", + "id": "3281", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -103141,7 +103212,7 @@ } }, { - "id": "3281", + "id": "3282", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -103159,7 +103230,7 @@ } }, { - "id": "3282", + "id": "3283", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -103177,7 +103248,7 @@ } }, { - "id": "3283", + "id": "3284", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "Snapshot `Game Pied Piper Has Charmed Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -103226,7 +103297,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -103255,7 +103326,7 @@ } }, { - "id": "3284", + "id": "3285", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Game Fox May Have Sniffed Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -103304,7 +103375,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -103333,7 +103404,7 @@ } }, { - "id": "3285", + "id": "3286", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected 'werewolf' to be 'seer' // Object.is equality", @@ -103382,7 +103453,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -103411,7 +103482,7 @@ } }, { - "id": "3286", + "id": "3287", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'werewolf' to be 'seer' // Object.is equality", @@ -103439,7 +103510,7 @@ } }, { - "id": "3287", + "id": "3288", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'false' to be 'true' // Object.is equality", @@ -103467,7 +103538,7 @@ } }, { - "id": "3288", + "id": "3289", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'true' to be 'false' // Object.is equality", @@ -103495,7 +103566,7 @@ } }, { - "id": "3289", + "id": "3290", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'true' to be 'false' // Object.is equality", @@ -103521,7 +103592,7 @@ } }, { - "id": "3290", + "id": "3291", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected 'true' to be 'false' // Object.is equality", @@ -103547,7 +103618,7 @@ } }, { - "id": "3291", + "id": "3292", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expected 'werewolf' to be 'seer' // Object.is equality", @@ -103581,7 +103652,7 @@ "language": "html", "mutants": [ { - "id": "3292", + "id": "3293", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Game Scandalmonger Mark Is Active Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -103630,7 +103701,7 @@ "language": "html", "mutants": [ { - "id": "3293", + "id": "3294", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -103648,7 +103719,7 @@ } }, { - "id": "3294", + "id": "3295", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -103666,7 +103737,7 @@ } }, { - "id": "3295", + "id": "3296", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "We can't mutate defineProps macro as it is stated here: https://github.com/stryker-mutator/stryker-js/issues/3305.", @@ -103684,7 +103755,7 @@ } }, { - "id": "3296", + "id": "3297", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Recipient Role Additional Cards Multi Select Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -103761,7 +103832,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -103794,7 +103865,7 @@ } }, { - "id": "3297", + "id": "3298", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Player Card Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -103871,7 +103942,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -103904,7 +103975,7 @@ } }, { - "id": "3298", + "id": "3299", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Recipient Role Additional Cards Multi Select Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -103981,7 +104052,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -104014,7 +104085,7 @@ } }, { - "id": "3299", + "id": "3300", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Recipient Role Additional Cards Multi Select Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -104091,7 +104162,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -104124,7 +104195,7 @@ } }, { - "id": "3300", + "id": "3301", "mutatorName": "EqualityOperator", "replacement": "props.roleName !== undefined", "statusReason": "Snapshot `Recipient Role Additional Cards Manager Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -104201,7 +104272,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -104234,7 +104305,7 @@ } }, { - "id": "3301", + "id": "3302", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Player Card Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -104272,7 +104343,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -104305,7 +104376,7 @@ } }, { - "id": "3302", + "id": "3303", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'http://127.0.0.1/public/assets/images…' to be 'http://127.0.0.1/public/assets/images…' // Object.is equality", @@ -104391,7 +104462,7 @@ } }, { - "id": "3303", + "id": "3304", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Lobby Player Card Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -104477,7 +104548,7 @@ } }, { - "id": "3304", + "id": "3305", "mutatorName": "EqualityOperator", "replacement": "props.definition !== \"normal\"", "statusReason": "Snapshot `Recipient Role Additional Cards Multi Select Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -104563,7 +104634,7 @@ } }, { - "id": "3305", + "id": "3306", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Recipient Role Additional Cards Manager Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -104649,7 +104720,7 @@ } }, { - "id": "3306", + "id": "3307", "mutatorName": "StringLiteral", "replacement": "\"Stryker was here!\"", "statusReason": "Snapshot `Game Lobby Player Card Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -104733,7 +104804,7 @@ } }, { - "id": "3307", + "id": "3308", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Recipient Role Additional Cards Multi Select Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -104760,7 +104831,7 @@ } }, { - "id": "3308", + "id": "3309", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Recipient Role Additional Cards Manager Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -104846,7 +104917,7 @@ } }, { - "id": "3309", + "id": "3310", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Lobby Player Card Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -104923,7 +104994,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -104956,7 +105027,7 @@ } }, { - "id": "3310", + "id": "3311", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -105033,7 +105104,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -105066,7 +105137,7 @@ } }, { - "id": "3311", + "id": "3312", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Recipient Role Additional Cards Multi Select Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -105143,7 +105214,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -105176,7 +105247,7 @@ } }, { - "id": "3312", + "id": "3313", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -105253,7 +105324,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -105286,7 +105357,7 @@ } }, { - "id": "3313", + "id": "3314", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Recipient Role Additional Cards Manager Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -105363,7 +105434,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -105396,7 +105467,7 @@ } }, { - "id": "3314", + "id": "3315", "mutatorName": "EqualityOperator", "replacement": "props.alt === undefined", "statusReason": "Snapshot `Recipient Role Additional Cards Multi Select Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -105473,7 +105544,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -105506,7 +105577,7 @@ } }, { - "id": "3315", + "id": "3316", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Player Card Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -105545,7 +105616,7 @@ } }, { - "id": "3316", + "id": "3317", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Lobby Group Organizer Pick List Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -105609,7 +105680,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -105642,7 +105713,7 @@ } }, { - "id": "3317", + "id": "3318", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -105706,7 +105777,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -105739,7 +105810,7 @@ } }, { - "id": "3318", + "id": "3319", "mutatorName": "EqualityOperator", "replacement": "props.roleName === undefined", "statusReason": "Snapshot `Recipient Role Additional Cards Multi Select Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -105803,7 +105874,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -105836,7 +105907,7 @@ } }, { - "id": "3319", + "id": "3320", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Group Organizer Pick List Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -105908,7 +105979,7 @@ } }, { - "id": "3320", + "id": "3321", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Recipient Role Additional Cards Manager Component > should match snapshot when rendered without shallow. 1` mismatched", @@ -105980,7 +106051,7 @@ } }, { - "id": "3321", + "id": "3322", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Game Fox May Have Sniffed Event Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -106016,7 +106087,7 @@ "1794", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -106055,7 +106126,7 @@ "language": "html", "mutants": [ { - "id": "3322", + "id": "3323", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Hook timed out in 10000ms.\nIf this is a long-running hook, pass a timeout value as the last argument or configure it globally with \"hookTimeout\".", @@ -106084,7 +106155,7 @@ } }, { - "id": "3323", + "id": "3324", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Hook timed out in 10000ms.\nIf this is a long-running hook, pass a timeout value as the last argument or configure it globally with \"hookTimeout\".", @@ -106113,7 +106184,7 @@ } }, { - "id": "3324", + "id": "3325", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Role Side Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106142,7 +106213,7 @@ } }, { - "id": "3325", + "id": "3326", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Role Side Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106171,7 +106242,7 @@ } }, { - "id": "3326", + "id": "3327", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected undefined to be 'danger' // Object.is equality", @@ -106200,7 +106271,7 @@ } }, { - "id": "3327", + "id": "3328", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'danger' // Object.is equality", @@ -106229,7 +106300,7 @@ } }, { - "id": "3328", + "id": "3329", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Role Side Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106258,7 +106329,7 @@ } }, { - "id": "3329", + "id": "3330", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'components.RoleSideBadge.villagersSide' to be 'components.RoleSideBadge.werewolvesSi…' // Object.is equality", @@ -106287,7 +106358,7 @@ } }, { - "id": "3330", + "id": "3331", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Role Side Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106316,7 +106387,7 @@ } }, { - "id": "3331", + "id": "3332", "mutatorName": "EqualityOperator", "replacement": "props.roleSide !== \"villagers\"", "statusReason": "Snapshot `Role Side Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106345,7 +106416,7 @@ } }, { - "id": "3332", + "id": "3333", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Role Side Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106374,7 +106445,7 @@ } }, { - "id": "3333", + "id": "3334", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Role Side Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106403,7 +106474,7 @@ } }, { - "id": "3334", + "id": "3335", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Role Side Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106432,7 +106503,7 @@ } }, { - "id": "3335", + "id": "3336", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'components.RoleSideBadge.werewolvesSi…' // Object.is equality", @@ -106464,7 +106535,7 @@ "language": "html", "mutants": [ { - "id": "3336", + "id": "3337", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Hook timed out in 10000ms.\nIf this is a long-running hook, pass a timeout value as the last argument or configure it globally with \"hookTimeout\".", @@ -106495,7 +106566,7 @@ } }, { - "id": "3337", + "id": "3338", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Hook timed out in 10000ms.\nIf this is a long-running hook, pass a timeout value as the last argument or configure it globally with \"hookTimeout\".", @@ -106526,7 +106597,7 @@ } }, { - "id": "3338", + "id": "3339", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected undefined to be 'success' // Object.is equality", @@ -106557,7 +106628,7 @@ } }, { - "id": "3339", + "id": "3340", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'success' // Object.is equality", @@ -106588,7 +106659,7 @@ } }, { - "id": "3340", + "id": "3341", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Role Type Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106619,7 +106690,7 @@ } }, { - "id": "3341", + "id": "3342", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Role Type Badge Component > should match snapshot when rendered. 1` mismatched", @@ -106650,7 +106721,7 @@ } }, { - "id": "3342", + "id": "3343", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected undefined to be 'info' // Object.is equality", @@ -106681,7 +106752,7 @@ } }, { - "id": "3343", + "id": "3344", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'info' // Object.is equality", @@ -106712,7 +106783,7 @@ } }, { - "id": "3344", + "id": "3345", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected undefined to be 'warning' // Object.is equality", @@ -106743,7 +106814,7 @@ } }, { - "id": "3345", + "id": "3346", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'warning' // Object.is equality", @@ -106780,7 +106851,7 @@ "language": "typescript", "mutants": [ { - "id": "3346", + "id": "3347", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/animate-css/useAnimateCss.ts(28,27): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -106844,7 +106915,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -106880,7 +106951,7 @@ } }, { - "id": "3347", + "id": "3348", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected true to be falsy", @@ -106908,7 +106979,7 @@ } }, { - "id": "3348", + "id": "3349", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected true to be falsy", @@ -106936,7 +107007,7 @@ } }, { - "id": "3349", + "id": "3350", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected true to be falsy", @@ -106964,7 +107035,7 @@ } }, { - "id": "3350", + "id": "3351", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ 'svg-inline--fa', …(2) ] to include 'animate__headShake'", @@ -107004,7 +107075,7 @@ } }, { - "id": "3351", + "id": "3352", "mutatorName": "BooleanLiteral", "replacement": "HtmlElement", "statusReason": "app/composables/animate-css/useAnimateCss.ts(42,5): error TS18047: 'HtmlElement' is possibly 'null'.\napp/composables/animate-css/useAnimateCss.ts(45,7): error TS18047: 'HtmlElement' is possibly 'null'.\n", @@ -107041,7 +107112,7 @@ } }, { - "id": "3352", + "id": "3353", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/animate-css/useAnimateCss.ts(42,5): error TS18047: 'HtmlElement' is possibly 'null'.\napp/composables/animate-css/useAnimateCss.ts(45,7): error TS18047: 'HtmlElement' is possibly 'null'.\n", @@ -107078,7 +107149,7 @@ } }, { - "id": "3353", + "id": "3354", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/animate-css/useAnimateCss.ts(42,5): error TS18047: 'HtmlElement' is possibly 'null'.\napp/composables/animate-css/useAnimateCss.ts(45,7): error TS18047: 'HtmlElement' is possibly 'null'.\n", @@ -107115,7 +107186,7 @@ } }, { - "id": "3354", + "id": "3355", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/animate-css/useAnimateCss.ts(40,5): error TS18047: 'HtmlElement' is possibly 'null'.\napp/composables/animate-css/useAnimateCss.ts(43,7): error TS18047: 'HtmlElement' is possibly 'null'.\n", @@ -107138,7 +107209,7 @@ } }, { - "id": "3355", + "id": "3356", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected [ 'svg-inline--fa', …(3) ] to include 'animate__headShake'", @@ -107176,7 +107247,7 @@ } }, { - "id": "3356", + "id": "3357", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected false to be truthy", @@ -107214,7 +107285,7 @@ } }, { - "id": "3357", + "id": "3358", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected true to be falsy", @@ -107252,7 +107323,7 @@ } }, { - "id": "3358", + "id": "3359", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected true to be falsy", @@ -107290,7 +107361,7 @@ } }, { - "id": "3359", + "id": "3360", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected true to be falsy", @@ -107328,7 +107399,7 @@ } }, { - "id": "3360", + "id": "3361", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"animationend\",\n Any,\n Object {\n \"once\": true,\n },\n], but it was called with \"animationend\"", @@ -107366,7 +107437,7 @@ } }, { - "id": "3361", + "id": "3362", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"animationend\",\n Any,\n Object {\n \"once\": true,\n },\n], but it was called with \"animationend\"", @@ -107404,7 +107475,7 @@ } }, { - "id": "3362", + "id": "3363", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/animate-css/useAnimateCss.ts(48,3): error TS2739: Type '{}' is missing the following properties from type 'UseAnimateCss': handleAnimationEnd, animateElementOnce\n", @@ -107468,7 +107539,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -107510,7 +107581,7 @@ "language": "typescript", "mutants": [ { - "id": "3363", + "id": "3364", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/error/useWerewolvesAssistantApiError.ts(10,44): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -108880,7 +108951,7 @@ } }, { - "id": "3364", + "id": "3365", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -108906,7 +108977,7 @@ } }, { - "id": "3365", + "id": "3366", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"composables.useWerewolvesAssistantApiError.checkConsoleForMoreDetails\",\n \"summary\": \"composables.useWerewolvesAssistantApiError.statusCode.404\",\n },\n], but it was called with Object {}", @@ -108932,7 +109003,7 @@ } }, { - "id": "3366", + "id": "3367", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"composables.useWerewolvesAssistantApiError.checkConsoleForMoreDetails\",\n \"summary\": \"composables.useWerewolvesAssistantApiError.statusCode.404\",\n },\n], but it was called with Object {\n \"detail\": \"composables.useWerewolvesAssistantApiError.checkConsoleForMoreDetails\",\n \"summary\": \"\",\n}", @@ -108958,7 +109029,7 @@ } }, { - "id": "3367", + "id": "3368", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"composables.useWerewolvesAssistantApiError.checkConsoleForMoreDetails\",\n \"summary\": \"composables.useWerewolvesAssistantApiError.statusCode.404\",\n },\n], but it was called with Object {\n \"detail\": \"\",\n \"summary\": \"composables.useWerewolvesAssistantApiError.statusCode.404\",\n}", @@ -108984,7 +109055,7 @@ } }, { - "id": "3368", + "id": "3369", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/error/useWerewolvesAssistantApiError.ts(23,3): error TS2741: Property 'handleWerewolvesAssistantApiError' is missing in type '{}' but required in type 'UseWerewolvesAssistantApiError'.\n", @@ -110360,7 +110431,7 @@ "language": "typescript", "mutants": [ { - "id": "3369", + "id": "3370", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/create-game/create-game-additional-card/create-game-additional-card.dto.ts(14,83): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -110413,7 +110484,7 @@ "language": "typescript", "mutants": [ { - "id": "3370", + "id": "3371", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/create-game/create-game-player/create-game-player-role.dto.ts(10,75): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -110556,7 +110627,7 @@ "language": "typescript", "mutants": [ { - "id": "3371", + "id": "3372", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/create-game/create-game-player/create-game-player-side.dto.ts(13,75): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -110699,7 +110770,7 @@ "language": "typescript", "mutants": [ { - "id": "3372", + "id": "3373", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/create-game/create-game-player/create-game-player.dto.ts(22,67): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -110852,7 +110923,7 @@ "language": "typescript", "mutants": [ { - "id": "3373", + "id": "3374", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/composables/api/game/dto/create-game/create-game.dto.ts(12,44): error TS2322: Type 'string' is not assignable to type 'CreateGamePlayerDto'.\n", @@ -111458,7 +111529,7 @@ } }, { - "id": "3374", + "id": "3375", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/create-game/create-game.dto.ts(22,67): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112063,7 +112134,7 @@ } }, { - "id": "3375", + "id": "3376", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/create-game/create-game.dto.ts(26,20): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112093,7 +112164,7 @@ "language": "typescript", "mutants": [ { - "id": "3376", + "id": "3377", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/create-game-feedback/create-game-feedback.dto.ts(15,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112137,7 +112208,7 @@ "language": "typescript", "mutants": [ { - "id": "3377", + "id": "3378", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/make-game-play/make-game-play-target/make-game-play-target.dto.ts(13,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112179,7 +112250,7 @@ "language": "typescript", "mutants": [ { - "id": "3378", + "id": "3379", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/make-game-play/make-game-play-vote/make-game-play-vote.dto.ts(12,67): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112211,7 +112282,7 @@ "language": "typescript", "mutants": [ { - "id": "3379", + "id": "3380", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/dto/make-game-play/make-game-play.dto.ts(26,59): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112361,7 +112432,7 @@ "language": "typescript", "mutants": [ { - "id": "3380", + "id": "3381", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useFetchGameHistoryRecords.ts(8,40): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112394,9 +112465,9 @@ "1693", "1694", "1695", - "1844", - "1845", - "1846", + "1839", + "1840", + "1841", "2118", "2119" ], @@ -112412,7 +112483,7 @@ } }, { - "id": "3381", + "id": "3382", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useFetchGameHistoryRecords.ts(11,57): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112435,7 +112506,7 @@ } }, { - "id": "3382", + "id": "3383", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useFetchGameHistoryRecords.ts(11,57): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -112458,7 +112529,7 @@ } }, { - "id": "3383", + "id": "3384", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/gameId/history\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"\"", @@ -112484,7 +112555,7 @@ } }, { - "id": "3384", + "id": "3385", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/gameId/history\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"/games/gameId/history\"", @@ -112510,7 +112581,7 @@ } }, { - "id": "3385", + "id": "3386", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/gameId/history\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"/games/gameId/history\"", @@ -112536,7 +112607,7 @@ } }, { - "id": "3386", + "id": "3387", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useFetchGameHistoryRecords.ts(11,57): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -112558,7 +112629,7 @@ } }, { - "id": "3387", + "id": "3388", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useFetchGameHistoryRecords.ts(18,3): error TS2741: Property 'getGameHistoryRecords' is missing in type '{}' but required in type 'UseFetchGameHistory'.\n", @@ -112591,9 +112662,9 @@ "1693", "1694", "1695", - "1844", - "1845", - "1846", + "1839", + "1840", + "1841", "2118", "2119" ], @@ -112615,7 +112686,7 @@ "language": "typescript", "mutants": [ { - "id": "3388", + "id": "3389", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(7,34): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112677,7 +112748,7 @@ } }, { - "id": "3389", + "id": "3390", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(8,68): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -112739,7 +112810,7 @@ } }, { - "id": "3390", + "id": "3391", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'components.GameOverHistoryRecordActio…' to be 'components.GameOverHistoryRecordActio…' // Object.is equality", @@ -112804,7 +112875,7 @@ } }, { - "id": "3391", + "id": "3392", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected true to be falsy", @@ -112869,7 +112940,7 @@ } }, { - "id": "3392", + "id": "3393", "mutatorName": "LogicalOperator", "replacement": "(type === \"vote\" && !votes || type === \"target\" && !targets || type === \"request-another-vote\" && didJudgeRequestAnotherVote === undefined) && type === \"choose-card\" && !chosenCard", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(17,155): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"target\" | \"request-another-vote\"' and '\"choose-card\"' have no overlap.\n", @@ -112931,7 +113002,7 @@ } }, { - "id": "3393", + "id": "3394", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Over History Record Action Component > should match snapshot when rendered. 1` mismatched", @@ -112996,7 +113067,7 @@ } }, { - "id": "3394", + "id": "3395", "mutatorName": "LogicalOperator", "replacement": "(type === \"vote\" && !votes || type === \"target\" && !targets) && type === \"request-another-vote\" && didJudgeRequestAnotherVote === undefined", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(17,76): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"target\"' and '\"request-another-vote\"' have no overlap.\n", @@ -113058,7 +113129,7 @@ } }, { - "id": "3395", + "id": "3396", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Over History Record Action Component > should match snapshot when rendered. 1` mismatched", @@ -113123,7 +113194,7 @@ } }, { - "id": "3396", + "id": "3397", "mutatorName": "LogicalOperator", "replacement": "type === \"vote\" && !votes && type === \"target\" && !targets", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(17,41): error TS2367: This comparison appears to be unintentional because the types '\"vote\"' and '\"target\"' have no overlap.\n", @@ -113185,7 +113256,7 @@ } }, { - "id": "3397", + "id": "3398", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Over History Record Action Component > should match snapshot when rendered. 1` mismatched", @@ -113250,7 +113321,7 @@ } }, { - "id": "3398", + "id": "3399", "mutatorName": "LogicalOperator", "replacement": "type === \"vote\" || !votes", "statusReason": "expected 'components.GameOverHistoryRecordActio…' to be 'components.GameOverHistoryRecordActio…' // Object.is equality", @@ -113315,7 +113386,7 @@ } }, { - "id": "3399", + "id": "3400", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'components.GameOverHistoryRecordActio…' to be 'components.GameOverHistoryRecordActio…' // Object.is equality", @@ -113380,7 +113451,7 @@ } }, { - "id": "3400", + "id": "3401", "mutatorName": "EqualityOperator", "replacement": "type !== \"vote\"", "statusReason": "Snapshot `Game Over History Record Action Component > should match snapshot when rendered. 1` mismatched", @@ -113445,7 +113516,7 @@ } }, { - "id": "3401", + "id": "3402", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(17,12): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"no-action\" | \"target\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\"' and '\"\"' have no overlap.\n", @@ -113507,7 +113578,7 @@ } }, { - "id": "3402", + "id": "3403", "mutatorName": "BooleanLiteral", "replacement": "votes", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(17,5): error TS2322: Type 'boolean | GameHistoryRecordPlayVote[]' is not assignable to type 'boolean'.\n Type 'GameHistoryRecordPlayVote[]' is not assignable to type 'boolean'.\n", @@ -113566,7 +113637,7 @@ } }, { - "id": "3403", + "id": "3404", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -113627,7 +113698,7 @@ } }, { - "id": "3404", + "id": "3405", "mutatorName": "LogicalOperator", "replacement": "type === \"target\" || !targets", "statusReason": "expected 'components.GameOverHistoryRecordActio…' to be 'components.GameOverHistoryRecordActio…' // Object.is equality", @@ -113688,7 +113759,7 @@ } }, { - "id": "3405", + "id": "3406", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected '/svg/game/player/player-attribute/pow…' to be '/svg/misc/people.svg' // Object.is equality", @@ -113749,7 +113820,7 @@ } }, { - "id": "3406", + "id": "3407", "mutatorName": "EqualityOperator", "replacement": "type !== \"target\"", "statusReason": "expected '/svg/game/player/player-attribute/pow…' to be '/svg/misc/people.svg' // Object.is equality", @@ -113810,7 +113881,7 @@ } }, { - "id": "3407", + "id": "3408", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(18,7): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"no-action\" | \"target\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\"' and '\"\"' have no overlap.\n", @@ -113868,7 +113939,7 @@ } }, { - "id": "3408", + "id": "3409", "mutatorName": "BooleanLiteral", "replacement": "targets", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(17,5): error TS2322: Type 'boolean | GameHistoryRecordPlayTarget[]' is not assignable to type 'boolean'.\n Type 'GameHistoryRecordPlayTarget[]' is not assignable to type 'boolean'.\n", @@ -113916,7 +113987,7 @@ } }, { - "id": "3409", + "id": "3410", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -113976,7 +114047,7 @@ } }, { - "id": "3410", + "id": "3411", "mutatorName": "LogicalOperator", "replacement": "type === \"request-another-vote\" || didJudgeRequestAnotherVote === undefined", "statusReason": "expected 'components.GameOverHistoryRecordActio…' to be 'components.GameOverHistoryRecordActio…' // Object.is equality", @@ -114036,7 +114107,7 @@ } }, { - "id": "3411", + "id": "3412", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'components.GameOverHistoryRecordActio…' to be 'components.GameOverHistoryRecordActio…' // Object.is equality", @@ -114096,7 +114167,7 @@ } }, { - "id": "3412", + "id": "3413", "mutatorName": "EqualityOperator", "replacement": "type !== \"request-another-vote\"", "statusReason": "Snapshot `Game Over History Record Component > should match snapshot when rendered. 1` mismatched", @@ -114156,7 +114227,7 @@ } }, { - "id": "3413", + "id": "3414", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(19,7): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"no-action\" | \"target\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\"' and '\"\"' have no overlap.\n", @@ -114213,7 +114284,7 @@ } }, { - "id": "3414", + "id": "3415", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -114239,7 +114310,7 @@ } }, { - "id": "3415", + "id": "3416", "mutatorName": "EqualityOperator", "replacement": "didJudgeRequestAnotherVote !== undefined", "statusReason": "expected false to be true // Object.is equality", @@ -114265,7 +114336,7 @@ } }, { - "id": "3416", + "id": "3417", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -114324,7 +114395,7 @@ } }, { - "id": "3417", + "id": "3418", "mutatorName": "LogicalOperator", "replacement": "type === \"choose-card\" || !chosenCard", "statusReason": "expected true to be false // Object.is equality", @@ -114383,7 +114454,7 @@ } }, { - "id": "3418", + "id": "3419", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -114442,7 +114513,7 @@ } }, { - "id": "3419", + "id": "3420", "mutatorName": "EqualityOperator", "replacement": "type !== \"choose-card\"", "statusReason": "expected false to be true // Object.is equality", @@ -114501,7 +114572,7 @@ } }, { - "id": "3420", + "id": "3421", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(20,7): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"no-action\" | \"target\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\"' and '\"\"' have no overlap.\n", @@ -114557,7 +114628,7 @@ } }, { - "id": "3421", + "id": "3422", "mutatorName": "BooleanLiteral", "replacement": "chosenCard", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(17,5): error TS2322: Type 'boolean | GameAdditionalCard | undefined' is not assignable to type 'boolean'.\n Type 'undefined' is not assignable to type 'boolean'.\n", @@ -114581,7 +114652,7 @@ } }, { - "id": "3422", + "id": "3423", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useGameHistoryRecord.ts(22,3): error TS2741: Property 'didSourceSkipped' is missing in type '{}' but required in type 'UseGameHistoryRecord'.\n", @@ -114649,7 +114720,7 @@ "language": "typescript", "mutants": [ { - "id": "3423", + "id": "3424", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(15,58): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -114679,7 +114750,7 @@ } }, { - "id": "3424", + "id": "3425", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(16,33): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'GameHistoryRecord | null'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -114709,7 +114780,7 @@ } }, { - "id": "3425", + "id": "3426", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(18,50): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'Player[]'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -114737,7 +114808,7 @@ } }, { - "id": "3426", + "id": "3427", "mutatorName": "BooleanLiteral", "replacement": "lastGameHistoryRecord.value?.play.targets", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(22,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(22,12): error TS18048: 'lastGameHistoryRecord.value.play.targets' is possibly 'undefined'.\n", @@ -114765,7 +114836,7 @@ } }, { - "id": "3427", + "id": "3428", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(22,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(22,12): error TS18048: 'lastGameHistoryRecord.value.play.targets' is possibly 'undefined'.\n", @@ -114793,7 +114864,7 @@ } }, { - "id": "3428", + "id": "3429", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(22,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(22,12): error TS18048: 'lastGameHistoryRecord.value.play.targets' is possibly 'undefined'.\n", @@ -114821,7 +114892,7 @@ } }, { - "id": "3429", + "id": "3430", "mutatorName": "OptionalChaining", "replacement": "lastGameHistoryRecord.value.play", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(19,10): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(22,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\n", @@ -114849,7 +114920,7 @@ } }, { - "id": "3430", + "id": "3431", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(20,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(20,12): error TS18048: 'lastGameHistoryRecord.value.play.targets' is possibly 'undefined'.\n", @@ -114871,7 +114942,7 @@ } }, { - "id": "3431", + "id": "3432", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(18,50): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => string[] | Player[]' is not assignable to parameter of type 'ComputedGetter'.\n Type 'string[] | Player[]' is not assignable to type 'Player[]'.\n Type 'string[]' is not assignable to type 'Player[]'.\n Type 'string' is not assignable to type 'Player'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => string[] | Player[]' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -114893,7 +114964,7 @@ } }, { - "id": "3432", + "id": "3433", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(18,50): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => undefined[]' is not assignable to parameter of type 'ComputedGetter'.\n Type 'undefined[]' is not assignable to type 'Player[]'.\n Type 'undefined' is not assignable to type 'Player'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined[]' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -114920,7 +114991,7 @@ } }, { - "id": "3433", + "id": "3434", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(25,161): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -114943,7 +115014,7 @@ } }, { - "id": "3434", + "id": "3435", "mutatorName": "BooleanLiteral", "replacement": "lastGameHistoryRecord.value?.playerAttributeAlterations", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(29,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(29,12): error TS18048: 'lastGameHistoryRecord.value.playerAttributeAlterations' is possibly 'undefined'.\n", @@ -114966,7 +115037,7 @@ } }, { - "id": "3435", + "id": "3436", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(29,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(29,12): error TS18048: 'lastGameHistoryRecord.value.playerAttributeAlterations' is possibly 'undefined'.\n", @@ -114989,7 +115060,7 @@ } }, { - "id": "3436", + "id": "3437", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(29,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(29,12): error TS18048: 'lastGameHistoryRecord.value.playerAttributeAlterations' is possibly 'undefined'.\n", @@ -115012,7 +115083,7 @@ } }, { - "id": "3437", + "id": "3438", "mutatorName": "OptionalChaining", "replacement": "lastGameHistoryRecord.value.playerAttributeAlterations", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(26,10): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(29,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\n", @@ -115035,7 +115106,7 @@ } }, { - "id": "3438", + "id": "3439", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(27,12): error TS18047: 'lastGameHistoryRecord.value' is possibly 'null'.\napp/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(27,12): error TS18048: 'lastGameHistoryRecord.value.playerAttributeAlterations' is possibly 'undefined'.\n", @@ -115057,7 +115128,7 @@ } }, { - "id": "3439", + "id": "3440", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -115082,7 +115153,7 @@ } }, { - "id": "3440", + "id": "3441", "mutatorName": "MethodExpression", "replacement": "lastGameHistoryRecord.value.playerAttributeAlterations.every(playerAttributeAlteration => playerAttributeAlteration.name === attributeName && playerAttributeAlteration.source === source && playerAttributeAlteration.status === status)", "statusReason": "expected false to be true // Object.is equality", @@ -115108,7 +115179,7 @@ } }, { - "id": "3441", + "id": "3442", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected false to be true // Object.is equality", @@ -115134,7 +115205,7 @@ } }, { - "id": "3442", + "id": "3443", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -115160,7 +115231,7 @@ } }, { - "id": "3443", + "id": "3444", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -115186,7 +115257,7 @@ } }, { - "id": "3444", + "id": "3445", "mutatorName": "LogicalOperator", "replacement": "playerAttributeAlteration.name === attributeName && playerAttributeAlteration.source === source || playerAttributeAlteration.status === status", "statusReason": "expected true to be false // Object.is equality", @@ -115212,7 +115283,7 @@ } }, { - "id": "3445", + "id": "3446", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -115238,7 +115309,7 @@ } }, { - "id": "3446", + "id": "3447", "mutatorName": "LogicalOperator", "replacement": "playerAttributeAlteration.name === attributeName || playerAttributeAlteration.source === source", "statusReason": "expected true to be false // Object.is equality", @@ -115264,7 +115335,7 @@ } }, { - "id": "3447", + "id": "3448", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -115290,7 +115361,7 @@ } }, { - "id": "3448", + "id": "3449", "mutatorName": "EqualityOperator", "replacement": "playerAttributeAlteration.name !== attributeName", "statusReason": "expected false to be true // Object.is equality", @@ -115316,7 +115387,7 @@ } }, { - "id": "3449", + "id": "3450", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -115342,7 +115413,7 @@ } }, { - "id": "3450", + "id": "3451", "mutatorName": "EqualityOperator", "replacement": "playerAttributeAlteration.source !== source", "statusReason": "expected false to be true // Object.is equality", @@ -115368,7 +115439,7 @@ } }, { - "id": "3451", + "id": "3452", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -115394,7 +115465,7 @@ } }, { - "id": "3452", + "id": "3453", "mutatorName": "EqualityOperator", "replacement": "playerAttributeAlteration.status !== status", "statusReason": "expected false to be true // Object.is equality", @@ -115420,7 +115491,7 @@ } }, { - "id": "3453", + "id": "3454", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-history-record/useGameLastHistoryRecord.ts(33,3): error TS2739: Type '{}' is missing the following properties from type 'UseGameLastHistoryRecord': lastTargetedPlayers, doesHavePlayerAttributeAlteration\n", @@ -115456,7 +115527,7 @@ "language": "typescript", "mutants": [ { - "id": "3454", + "id": "3455", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(19,62): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -115751,7 +115822,7 @@ } }, { - "id": "3455", + "id": "3456", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(24,62): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'string'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -116016,7 +116087,7 @@ } }, { - "id": "3456", + "id": "3457", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Roles Tab Sheriff Election Component > should match snapshot when rendered. 1` mismatched", @@ -116284,7 +116355,7 @@ } }, { - "id": "3457", + "id": "3458", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -116552,7 +116623,7 @@ } }, { - "id": "3458", + "id": "3459", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Options Hub Roles Tab Sheriff Election Component > should match snapshot when rendered. 1` mismatched", @@ -116820,7 +116891,7 @@ } }, { - "id": "3459", + "id": "3460", "mutatorName": "MethodExpression", "replacement": "phaseLabel.toUpperCase()", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -117088,7 +117159,7 @@ } }, { - "id": "3460", + "id": "3461", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(33,56): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'string'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -117353,7 +117424,7 @@ } }, { - "id": "3461", + "id": "3462", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Changed Game Options List Component > should match snapshot when rendered. 1` mismatched", @@ -117621,7 +117692,7 @@ } }, { - "id": "3462", + "id": "3463", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -117889,7 +117960,7 @@ } }, { - "id": "3463", + "id": "3464", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type 'undefined' is not assignable to type 'SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -118184,7 +118255,7 @@ } }, { - "id": "3464", + "id": "3465", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is missing the following properties from type 'SchemaObject': composition, votes, roles\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => {}' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -118449,7 +118520,7 @@ } }, { - "id": "3465", + "id": "3466", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: {}; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; sheriff: { isEnabled: string; electedAt: { ...; }; hasDoubledVote: string; mustSettleTieInVotes: string; }; ... 20 more ...; actor: {...' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -118714,7 +118785,7 @@ } }, { - "id": "3466", + "id": "3467", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Changed Game Options List Component > should match snapshot when rendered. 1` mismatched", @@ -118982,7 +119053,7 @@ } }, { - "id": "3467", + "id": "3468", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: {}; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; sheriff: { isEnabled: string; electedAt: { ...; }; hasDoubledVote: string; mustSettleTieInVotes: string; }; ... 20 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -119247,7 +119318,7 @@ } }, { - "id": "3468", + "id": "3469", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -119515,7 +119586,7 @@ } }, { - "id": "3469", + "id": "3470", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: {}; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -119780,7 +119851,7 @@ } }, { - "id": "3470", + "id": "3471", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -120048,7 +120119,7 @@ } }, { - "id": "3471", + "id": "3472", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -120316,7 +120387,7 @@ } }, { - "id": "3472", + "id": "3473", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: {}; sheriff: { isEnabled: string; electedAt: { ...; }; hasDoubledVote: string; mustSettleTieInVotes: string; }; ... 20 more ...; actor: { ...; }...' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -120581,7 +120652,7 @@ } }, { - "id": "3473", + "id": "3474", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -120849,7 +120920,7 @@ } }, { - "id": "3474", + "id": "3475", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -121114,7 +121185,7 @@ } }, { - "id": "3475", + "id": "3476", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -121382,7 +121453,7 @@ } }, { - "id": "3476", + "id": "3477", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -121647,7 +121718,7 @@ } }, { - "id": "3477", + "id": "3478", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -121915,7 +121986,7 @@ } }, { - "id": "3478", + "id": "3479", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -122183,7 +122254,7 @@ } }, { - "id": "3479", + "id": "3480", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -122448,7 +122519,7 @@ } }, { - "id": "3480", + "id": "3481", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -122716,7 +122787,7 @@ } }, { - "id": "3481", + "id": "3482", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -122981,7 +123052,7 @@ } }, { - "id": "3482", + "id": "3483", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -123249,7 +123320,7 @@ } }, { - "id": "3483", + "id": "3484", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Options Hub Roles Tab White Werewolf Component > should match snapshot when rendered. 1` mismatched", @@ -123517,7 +123588,7 @@ } }, { - "id": "3484", + "id": "3485", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -123782,7 +123853,7 @@ } }, { - "id": "3485", + "id": "3486", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Roles Tab Seer Component > should match snapshot when rendered. 1` mismatched", @@ -124050,7 +124121,7 @@ } }, { - "id": "3486", + "id": "3487", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -124318,7 +124389,7 @@ } }, { - "id": "3487", + "id": "3488", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -124583,7 +124654,7 @@ } }, { - "id": "3488", + "id": "3489", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -124848,7 +124919,7 @@ } }, { - "id": "3489", + "id": "3490", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -125116,7 +125187,7 @@ } }, { - "id": "3490", + "id": "3491", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -125384,7 +125455,7 @@ } }, { - "id": "3491", + "id": "3492", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -125649,7 +125720,7 @@ } }, { - "id": "3492", + "id": "3493", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -125917,7 +125988,7 @@ } }, { - "id": "3493", + "id": "3494", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -126182,7 +126253,7 @@ } }, { - "id": "3494", + "id": "3495", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -126450,7 +126521,7 @@ } }, { - "id": "3495", + "id": "3496", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -126715,7 +126786,7 @@ } }, { - "id": "3496", + "id": "3497", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -126983,7 +127054,7 @@ } }, { - "id": "3497", + "id": "3498", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -127251,7 +127322,7 @@ } }, { - "id": "3498", + "id": "3499", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -127519,7 +127590,7 @@ } }, { - "id": "3499", + "id": "3500", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -127784,7 +127855,7 @@ } }, { - "id": "3500", + "id": "3501", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -128052,7 +128123,7 @@ } }, { - "id": "3501", + "id": "3502", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -128317,7 +128388,7 @@ } }, { - "id": "3502", + "id": "3503", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -128585,7 +128656,7 @@ } }, { - "id": "3503", + "id": "3504", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -128853,7 +128924,7 @@ } }, { - "id": "3504", + "id": "3505", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -129118,7 +129189,7 @@ } }, { - "id": "3505", + "id": "3506", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -129386,7 +129457,7 @@ } }, { - "id": "3506", + "id": "3507", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -129654,7 +129725,7 @@ } }, { - "id": "3507", + "id": "3508", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -129919,7 +129990,7 @@ } }, { - "id": "3508", + "id": "3509", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -130187,7 +130258,7 @@ } }, { - "id": "3509", + "id": "3510", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -130452,7 +130523,7 @@ } }, { - "id": "3510", + "id": "3511", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -130720,7 +130791,7 @@ } }, { - "id": "3511", + "id": "3512", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -130985,7 +131056,7 @@ } }, { - "id": "3512", + "id": "3513", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -131253,7 +131324,7 @@ } }, { - "id": "3513", + "id": "3514", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -131521,7 +131592,7 @@ } }, { - "id": "3514", + "id": "3515", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -131786,7 +131857,7 @@ } }, { - "id": "3515", + "id": "3516", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -132054,7 +132125,7 @@ } }, { - "id": "3516", + "id": "3517", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -132319,7 +132390,7 @@ } }, { - "id": "3517", + "id": "3518", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -132587,7 +132658,7 @@ } }, { - "id": "3518", + "id": "3519", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -132855,7 +132926,7 @@ } }, { - "id": "3519", + "id": "3520", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -133120,7 +133191,7 @@ } }, { - "id": "3520", + "id": "3521", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -133388,7 +133459,7 @@ } }, { - "id": "3521", + "id": "3522", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -133656,7 +133727,7 @@ } }, { - "id": "3522", + "id": "3523", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -133921,7 +133992,7 @@ } }, { - "id": "3523", + "id": "3524", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -134189,7 +134260,7 @@ } }, { - "id": "3524", + "id": "3525", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -134457,7 +134528,7 @@ } }, { - "id": "3525", + "id": "3526", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -134725,7 +134796,7 @@ } }, { - "id": "3526", + "id": "3527", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -134993,7 +135064,7 @@ } }, { - "id": "3527", + "id": "3528", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -135258,7 +135329,7 @@ } }, { - "id": "3528", + "id": "3529", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -135526,7 +135597,7 @@ } }, { - "id": "3529", + "id": "3530", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -135794,7 +135865,7 @@ } }, { - "id": "3530", + "id": "3531", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -136059,7 +136130,7 @@ } }, { - "id": "3531", + "id": "3532", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -136327,7 +136398,7 @@ } }, { - "id": "3532", + "id": "3533", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: { ...; }; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -136592,7 +136663,7 @@ } }, { - "id": "3533", + "id": "3534", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -136860,7 +136931,7 @@ } }, { - "id": "3534", + "id": "3535", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(39,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Type '{}' is not assignable to type 'string | SchemaObject'.\n Overload 2 of 2, '(options: WritableComputedOptions, SchemaObject>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { composition: { isHidden: string; }; votes: { canBeSkipped: string; duration: string; }; roles: { areRevealedOnDeath: string; doSkipCallIfNoTarget: string; werewolf: { canEatEachOther: string; }; ... 21 more ...; actor: {}; }; }' is not assignable to parameter of type 'WritableComputedOptions, SchemaObject>'.\n", @@ -137125,7 +137196,7 @@ } }, { - "id": "3535", + "id": "3536", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -137393,7 +137464,7 @@ } }, { - "id": "3536", + "id": "3537", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(103,54): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'string[]'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -137471,7 +137542,7 @@ } }, { - "id": "3537", + "id": "3538", "mutatorName": "MethodExpression", "replacement": "gameOptionsKeys", "statusReason": "expected [ 'game-options-changed', …(1) ] to strictly equal [ 'players-ready' ]", @@ -137552,7 +137623,7 @@ } }, { - "id": "3538", + "id": "3539", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [] to strictly equal [ …(2) ]", @@ -137633,7 +137704,7 @@ } }, { - "id": "3539", + "id": "3540", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ 'game-options-changed', …(1) ] to strictly equal [ 'players-ready' ]", @@ -137714,7 +137785,7 @@ } }, { - "id": "3540", + "id": "3541", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Changed Game Options List Component > should match snapshot when rendered. 1` mismatched", @@ -137795,7 +137866,7 @@ } }, { - "id": "3541", + "id": "3542", "mutatorName": "EqualityOperator", "replacement": "value === defaultValue", "statusReason": "expected [ …(38) ] to strictly equal []", @@ -137876,7 +137947,7 @@ } }, { - "id": "3542", + "id": "3543", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "expected [ 'players-ready' ] to strictly equal [ 'game-options-changed', …(1) ]", @@ -137957,7 +138028,7 @@ } }, { - "id": "3543", + "id": "3544", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(103,54): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => undefined[]' is not assignable to parameter of type 'ComputedGetter'.\n Type 'undefined[]' is not assignable to type 'string[]'.\n Type 'undefined' is not assignable to type 'string'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined[]' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -138035,7 +138106,7 @@ } }, { - "id": "3544", + "id": "3545", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(115,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -138297,7 +138368,7 @@ } }, { - "id": "3545", + "id": "3546", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(119,62): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -138323,7 +138394,7 @@ } }, { - "id": "3546", + "id": "3547", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected undefined to be 'votes.canBeSkipped' // Object.is equality", @@ -138352,7 +138423,7 @@ } }, { - "id": "3547", + "id": "3548", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'composition.isHidden' to be 'votes.canBeSkipped' // Object.is equality", @@ -138381,7 +138452,7 @@ } }, { - "id": "3548", + "id": "3549", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected undefined to be 'votes.canBeSkipped' // Object.is equality", @@ -138410,7 +138481,7 @@ } }, { - "id": "3549", + "id": "3550", "mutatorName": "EqualityOperator", "replacement": "get(gameOptionsTexts.value, key) !== gameOptionText", "statusReason": "expected \"spy\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st spy call:\n\n Array [\n \"composition.isHidden\",\n ]\n\n\nNumber of calls: 1\n", @@ -138439,7 +138510,7 @@ } }, { - "id": "3550", + "id": "3551", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-options/useGameOptionsTexts.ts(125,3): error TS2739: Type '{}' is missing the following properties from type 'UseGameOptionsTexts': gameOptionsTexts, changedGameOptionsTexts, getGameOptionText, getGameOptionKeyFromText\n", @@ -138740,7 +138811,7 @@ "language": "typescript", "mutants": [ { - "id": "3551", + "id": "3552", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-phase/useGamePhase.ts(7,26): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -138767,7 +138838,7 @@ } }, { - "id": "3552", + "id": "3553", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-phase/useGamePhase.ts(10,74): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -138794,7 +138865,7 @@ } }, { - "id": "3553", + "id": "3554", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Playground Header Phase > should match snapshot when rendered. 1` mismatched", @@ -138824,7 +138895,7 @@ } }, { - "id": "3554", + "id": "3555", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Playground Header Phase > should match snapshot when rendered. 1` mismatched", @@ -138854,7 +138925,7 @@ } }, { - "id": "3555", + "id": "3556", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'shared.game.phase.twilight 3' to be 'shared.game.phase.twilight' // Object.is equality", @@ -138884,7 +138955,7 @@ } }, { - "id": "3556", + "id": "3557", "mutatorName": "EqualityOperator", "replacement": "phase !== \"twilight\"", "statusReason": "Snapshot `Game Playground Header Phase > should match snapshot when rendered. 1` mismatched", @@ -138914,7 +138985,7 @@ } }, { - "id": "3557", + "id": "3558", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-phase/useGamePhase.ts(13,9): error TS2367: This comparison appears to be unintentional because the types '\"day\" | \"night\" | \"twilight\"' and '\"\"' have no overlap.\n", @@ -138941,7 +139012,7 @@ } }, { - "id": "3558", + "id": "3559", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'shared.game.phase.twilight 3' to be 'shared.game.phase.twilight' // Object.is equality", @@ -138966,7 +139037,7 @@ } }, { - "id": "3559", + "id": "3560", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Playground Header Phase > should match snapshot when rendered. 1` mismatched", @@ -138995,7 +139066,7 @@ } }, { - "id": "3560", + "id": "3561", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-phase/useGamePhase.ts(18,3): error TS2741: Property 'getGamePhaseWithTurnText' is missing in type '{}' but required in type 'UseGamePhase'.\n", @@ -139028,7 +139099,7 @@ "language": "typescript", "mutants": [ { - "id": "3561", + "id": "3562", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(18,52): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -139154,7 +139225,7 @@ } }, { - "id": "3562", + "id": "3563", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(19,23): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'GamePlay | null'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -139280,7 +139351,7 @@ } }, { - "id": "3563", + "id": "3564", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [] to strictly equal [ _GameAdditionalCard{ …(4) } ]", @@ -139409,7 +139480,7 @@ } }, { - "id": "3564", + "id": "3565", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(21,23): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'GameOptions'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -139535,7 +139606,7 @@ } }, { - "id": "3565", + "id": "3566", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(23,58): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -139565,7 +139636,7 @@ } }, { - "id": "3566", + "id": "3567", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(25,89): error TS2345: Argument of type '\"\"' is not assignable to parameter of type '\"eat\" | \"look\" | \"charm\" | \"give-life-potion\" | \"give-death-potion\" | \"shoot\" | \"protect\" | \"mark\" | \"vote\" | \"choose-as-model\" | \"choose-as-sheriff\" | \"sniff\" | \"ban-voting\" | ... 4 more ... | \"bury\"'.\n", @@ -139595,7 +139666,7 @@ } }, { - "id": "3567", + "id": "3568", "mutatorName": "OptionalChaining", "replacement": "currentPlay.value.action", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(26,31): error TS18047: 'currentPlay.value' is possibly 'null'.\n", @@ -139625,7 +139696,7 @@ } }, { - "id": "3568", + "id": "3569", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -139658,7 +139729,7 @@ } }, { - "id": "3569", + "id": "3570", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -139691,7 +139762,7 @@ } }, { - "id": "3570", + "id": "3571", "mutatorName": "LogicalOperator", "replacement": "currentGameAction === \"bury-dead-bodies\" || !stealRoleEligibleTargets.length", "statusReason": "expected true to be false // Object.is equality", @@ -139724,7 +139795,7 @@ } }, { - "id": "3571", + "id": "3572", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -139757,7 +139828,7 @@ } }, { - "id": "3572", + "id": "3573", "mutatorName": "EqualityOperator", "replacement": "currentGameAction !== \"bury-dead-bodies\"", "statusReason": "expected true to be false // Object.is equality", @@ -139790,7 +139861,7 @@ } }, { - "id": "3573", + "id": "3574", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(27,72): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\" | \"eat\" | \"look\" | \"charm\" | \"shoot\" | \"protect\" | \"mark\" | \"sniff\" | \"ban-voting\" | \"infect\" | ... 6 more ... | undefined' and '\"\"' have no overlap.\n", @@ -139820,7 +139891,7 @@ } }, { - "id": "3574", + "id": "3575", "mutatorName": "BooleanLiteral", "replacement": "stealRoleEligibleTargets.length", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(23,58): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => number | boolean' is not assignable to parameter of type 'ComputedGetter'.\n Type 'number | boolean' is not assignable to type 'boolean'.\n Type 'number' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => number | boolean' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -139846,7 +139917,7 @@ } }, { - "id": "3575", + "id": "3576", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -139879,7 +139950,7 @@ } }, { - "id": "3576", + "id": "3577", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -139912,7 +139983,7 @@ } }, { - "id": "3577", + "id": "3578", "mutatorName": "LogicalOperator", "replacement": "currentGameAction === \"choose-side\" || isWolfHoundSideRandomlyChosen", "statusReason": "expected true to be false // Object.is equality", @@ -139945,7 +140016,7 @@ } }, { - "id": "3578", + "id": "3579", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -139978,7 +140049,7 @@ } }, { - "id": "3579", + "id": "3580", "mutatorName": "EqualityOperator", "replacement": "currentGameAction !== \"choose-side\"", "statusReason": "expected true to be false // Object.is equality", @@ -140011,7 +140082,7 @@ } }, { - "id": "3580", + "id": "3581", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(28,60): error TS2367: This comparison appears to be unintentional because the types '\"eat\" | \"look\" | \"charm\" | \"shoot\" | \"protect\" | \"mark\" | \"vote\" | \"sniff\" | \"ban-voting\" | \"infect\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\" | ... 6 more ... | undefined' and '\"\"' have no overlap.\n", @@ -140041,7 +140112,7 @@ } }, { - "id": "3581", + "id": "3582", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -140074,7 +140145,7 @@ } }, { - "id": "3582", + "id": "3583", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -140107,7 +140178,7 @@ } }, { - "id": "3583", + "id": "3584", "mutatorName": "LogicalOperator", "replacement": "isCurrentActionBuryDeadBodiesAndNoStealRoleEligibleTargets && isCurrentActionChooseSideAndSideRandomlyChosen", "statusReason": "expected false to be true // Object.is equality", @@ -140140,7 +140211,7 @@ } }, { - "id": "3584", + "id": "3585", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(33,78): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter<\"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\" | undefined>, debugOptions?: DebuggerOptions | undefined): ComputedRef<...>', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter<\"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\" | undefined>'.\n Type 'void' is not assignable to type '\"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\" | undefined'.\n Overload 2 of 2, '(options: WritableComputedOptions<\"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\" | undefined, \"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\" | undefined>, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions<\"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\" | undefined, \"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\" | undefined>'.\n", @@ -140206,7 +140277,7 @@ } }, { - "id": "3585", + "id": "3586", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "expected 'components.CurrentPlayQuestion.whichP…' to be 'components.CurrentPlayQuestion.whichP…' // Object.is equality", @@ -140275,7 +140346,7 @@ } }, { - "id": "3586", + "id": "3587", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(35,7): error TS2322: Type '\"\"' is not assignable to type '\"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\"'.\n", @@ -140341,7 +140412,7 @@ } }, { - "id": "3587", + "id": "3588", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(36,7): error TS2322: Type '\"\"' is not assignable to type '\"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\"'.\n", @@ -140407,7 +140478,7 @@ } }, { - "id": "3588", + "id": "3589", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(37,7): error TS2322: Type '\"\"' is not assignable to type '\"stuttering-judge-request\" | \"previous-votes-were-in-ties\" | \"angel-presence\"'.\n", @@ -140473,7 +140544,7 @@ } }, { - "id": "3589", + "id": "3590", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected 'components.CurrentPlayQuestion.whichP…' to be 'components.CurrentPlayQuestion.whichP…' // Object.is equality", @@ -140542,7 +140613,7 @@ } }, { - "id": "3590", + "id": "3591", "mutatorName": "OptionalChaining", "replacement": "currentPlay.value?.causes.includes", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(40,57): error TS18048: 'currentPlay.value.causes' is possibly 'undefined'.\n", @@ -140608,7 +140679,7 @@ } }, { - "id": "3591", + "id": "3592", "mutatorName": "OptionalChaining", "replacement": "currentPlay.value.causes", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(40,57): error TS18047: 'currentPlay.value' is possibly 'null'.\n", @@ -140674,7 +140745,7 @@ } }, { - "id": "3592", + "id": "3593", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(43,104): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -140747,7 +140818,7 @@ } }, { - "id": "3593", + "id": "3594", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(47,25): error TS18047: 'currentPlay.value' is possibly 'null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(47,25): error TS18048: 'currentPlay.value.source.interactions' is possibly 'undefined'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(51,12): error TS18048: 'interaction' is possibly 'undefined'.\n", @@ -140820,7 +140891,7 @@ } }, { - "id": "3594", + "id": "3595", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(47,25): error TS18047: 'currentPlay.value' is possibly 'null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(47,25): error TS18048: 'currentPlay.value.source.interactions' is possibly 'undefined'.\n", @@ -140893,7 +140964,7 @@ } }, { - "id": "3595", + "id": "3596", "mutatorName": "EqualityOperator", "replacement": "currentPlay.value?.source.interactions !== undefined", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(47,25): error TS18047: 'currentPlay.value' is possibly 'null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(47,25): error TS18048: 'currentPlay.value.source.interactions' is possibly 'undefined'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(47,71): error TS7031: Binding element 'type' implicitly has an 'any' type.\n", @@ -140966,7 +141037,7 @@ } }, { - "id": "3596", + "id": "3597", "mutatorName": "OptionalChaining", "replacement": "currentPlay.value.source", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(44,9): error TS18047: 'currentPlay.value' is possibly 'null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(47,25): error TS18047: 'currentPlay.value' is possibly 'null'.\n", @@ -141039,7 +141110,7 @@ } }, { - "id": "3597", + "id": "3598", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(45,25): error TS18047: 'currentPlay.value' is possibly 'null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(45,25): error TS18048: 'currentPlay.value.source.interactions' is possibly 'undefined'.\n", @@ -141081,7 +141152,7 @@ } }, { - "id": "3598", + "id": "3599", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(45,15): error TS2322: Type 'string' is not assignable to type 'Player'.\n", @@ -141123,7 +141194,7 @@ } }, { - "id": "3599", + "id": "3600", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Witch Use Potions Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -141186,7 +141257,7 @@ } }, { - "id": "3600", + "id": "3601", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Witch Use Potions Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -141248,7 +141319,7 @@ } }, { - "id": "3601", + "id": "3602", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Use Potions Playground Component > should match snapshot when rendered. 1` mismatched", @@ -141310,7 +141381,7 @@ } }, { - "id": "3602", + "id": "3603", "mutatorName": "EqualityOperator", "replacement": "type !== interactionType", "statusReason": "Snapshot `Witch Use Potions Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -141372,7 +141443,7 @@ } }, { - "id": "3603", + "id": "3604", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(51,12): error TS18048: 'interaction' is possibly 'undefined'.\n", @@ -141432,7 +141503,7 @@ } }, { - "id": "3604", + "id": "3605", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(51,12): error TS18048: 'interaction' is possibly 'undefined'.\n", @@ -141492,7 +141563,7 @@ } }, { - "id": "3605", + "id": "3606", "mutatorName": "EqualityOperator", "replacement": "interaction !== undefined", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(51,12): error TS18048: 'interaction' is possibly 'undefined'.\n", @@ -141552,7 +141623,7 @@ } }, { - "id": "3606", + "id": "3607", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(49,12): error TS18048: 'interaction' is possibly 'undefined'.\n", @@ -141593,7 +141664,7 @@ } }, { - "id": "3607", + "id": "3608", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(49,15): error TS2322: Type 'string' is not assignable to type 'Player'.\n", @@ -141634,7 +141705,7 @@ } }, { - "id": "3608", + "id": "3609", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(54,67): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -141665,7 +141736,7 @@ } }, { - "id": "3609", + "id": "3610", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(58,13): error TS2339: Property 'source' does not exist on type 'GamePlay | null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(60,12): error TS18048: 'additionalCards.value' is possibly 'undefined'.\n", @@ -141696,7 +141767,7 @@ } }, { - "id": "3610", + "id": "3611", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(58,13): error TS2339: Property 'source' does not exist on type 'GamePlay | null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(60,12): error TS18048: 'additionalCards.value' is possibly 'undefined'.\n", @@ -141727,7 +141798,7 @@ } }, { - "id": "3611", + "id": "3612", "mutatorName": "LogicalOperator", "replacement": "currentPlay.value?.action !== \"choose-card\" && additionalCards.value === undefined", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(58,13): error TS2339: Property 'source' does not exist on type 'GamePlay | null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(60,12): error TS18048: 'additionalCards.value' is possibly 'undefined'.\n", @@ -141758,7 +141829,7 @@ } }, { - "id": "3612", + "id": "3613", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(58,13): error TS2339: Property 'source' does not exist on type 'GamePlay | null'.\n", @@ -141789,7 +141860,7 @@ } }, { - "id": "3613", + "id": "3614", "mutatorName": "EqualityOperator", "replacement": "currentPlay.value?.action === \"choose-card\"", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(58,13): error TS2339: Property 'source' does not exist on type 'GamePlay | null'.\n", @@ -141820,7 +141891,7 @@ } }, { - "id": "3614", + "id": "3615", "mutatorName": "OptionalChaining", "replacement": "currentPlay.value.action", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(55,9): error TS18047: 'currentPlay.value' is possibly 'null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(58,13): error TS2339: Property 'source' does not exist on type 'GamePlay | null'.\n", @@ -141851,7 +141922,7 @@ } }, { - "id": "3615", + "id": "3616", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(55,9): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\" | \"eat\" | \"look\" | \"charm\" | \"shoot\" | \"protect\" | \"mark\" | \"sniff\" | \"ban-voting\" | \"infect\" | ... 6 more ... | undefined' and '\"\"' have no overlap.\n", @@ -141882,7 +141953,7 @@ } }, { - "id": "3616", + "id": "3617", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(60,12): error TS18048: 'additionalCards.value' is possibly 'undefined'.\n", @@ -141910,7 +141981,7 @@ } }, { - "id": "3617", + "id": "3618", "mutatorName": "EqualityOperator", "replacement": "additionalCards.value !== undefined", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(60,12): error TS18048: 'additionalCards.value' is possibly 'undefined'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(60,44): error TS7031: Binding element 'recipient' implicitly has an 'any' type.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(60,55): error TS7031: Binding element 'isUsed' implicitly has an 'any' type.\n", @@ -141938,7 +142009,7 @@ } }, { - "id": "3618", + "id": "3619", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(56,13): error TS2339: Property 'source' does not exist on type 'GamePlay | null'.\napp/composables/api/game/game-play/useCurrentGamePlay.ts(58,12): error TS18048: 'additionalCards.value' is possibly 'undefined'.\n", @@ -141962,7 +142033,7 @@ } }, { - "id": "3619", + "id": "3620", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(56,15): error TS2322: Type 'string' is not assignable to type 'GameAdditionalCard'.\n", @@ -141986,7 +142057,7 @@ } }, { - "id": "3620", + "id": "3621", "mutatorName": "MethodExpression", "replacement": "additionalCards.value", "statusReason": "expected [ _GameAdditionalCard{ …(4) }, …(3) ] to strictly equal [ _GameAdditionalCard{ …(4) } ]", @@ -142017,7 +142088,7 @@ } }, { - "id": "3621", + "id": "3622", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [] to strictly equal [ _GameAdditionalCard{ …(4) } ]", @@ -142048,7 +142119,7 @@ } }, { - "id": "3622", + "id": "3623", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ _GameAdditionalCard{ …(4) }, …(3) ] to strictly equal [ _GameAdditionalCard{ …(4) } ]", @@ -142079,7 +142150,7 @@ } }, { - "id": "3623", + "id": "3624", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [] to strictly equal [ _GameAdditionalCard{ …(4) } ]", @@ -142110,7 +142181,7 @@ } }, { - "id": "3624", + "id": "3625", "mutatorName": "LogicalOperator", "replacement": "recipient === source.name || !isUsed", "statusReason": "expected [ _GameAdditionalCard{ …(4) }, …(2) ] to strictly equal [ _GameAdditionalCard{ …(4) } ]", @@ -142141,7 +142212,7 @@ } }, { - "id": "3625", + "id": "3626", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ _GameAdditionalCard{ …(4) }, …(1) ] to strictly equal [ _GameAdditionalCard{ …(4) } ]", @@ -142172,7 +142243,7 @@ } }, { - "id": "3626", + "id": "3627", "mutatorName": "EqualityOperator", "replacement": "recipient !== source.name", "statusReason": "expected [ _GameAdditionalCard{ …(4) } ] to strictly equal [ _GameAdditionalCard{ …(4) } ]", @@ -142203,7 +142274,7 @@ } }, { - "id": "3627", + "id": "3628", "mutatorName": "BooleanLiteral", "replacement": "isUsed", "statusReason": "expected [ _GameAdditionalCard{ …(4) } ] to strictly equal [ _GameAdditionalCard{ …(4) } ]", @@ -142234,7 +142305,7 @@ } }, { - "id": "3628", + "id": "3629", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/game-play/useCurrentGamePlay.ts(62,3): error TS2739: Type '{}' is missing the following properties from type 'UseCurrentGamePlay': mustCurrentGamePlayBeSkipped, priorityCauseInCurrentGamePlay, getEligibleTargetsWithInteractionInCurrentGamePlay, getEligibleAdditionalCardsToChooseInCurrentGamePlay\n", @@ -142366,7 +142437,7 @@ "language": "typescript", "mutants": [ { - "id": "3629", + "id": "3630", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/player/usePlayers.ts(7,24): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -142414,7 +142485,7 @@ } }, { - "id": "3630", + "id": "3631", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/player/usePlayers.ts(10,52): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -142451,7 +142522,7 @@ } }, { - "id": "3631", + "id": "3632", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/player/usePlayers.ts(11,5): error TS2322: Type 'Player' is not assignable to type 'string'.\napp/composables/api/game/player/usePlayers.ts(11,35): error TS2345: Argument of type '(acc: string, player: Player, index: number) => void' is not assignable to parameter of type '(previousValue: string, currentValue: Player, currentIndex: number, array: Player[]) => string'.\n Type 'void' is not assignable to type 'string'.\n", @@ -142483,7 +142554,7 @@ } }, { - "id": "3632", + "id": "3633", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Sheriff Turn Starts Event Component > should match snapshot when rendered. 1` mismatched", @@ -142518,7 +142589,7 @@ } }, { - "id": "3633", + "id": "3634", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142553,7 +142624,7 @@ } }, { - "id": "3634", + "id": "3635", "mutatorName": "EqualityOperator", "replacement": "index !== 0", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142588,7 +142659,7 @@ } }, { - "id": "3635", + "id": "3636", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142623,7 +142694,7 @@ } }, { - "id": "3636", + "id": "3637", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'player-1 shared.and player-2 shared.a…' to be 'player-1, player-2 shared.and player-3' // Object.is equality", @@ -142658,7 +142729,7 @@ } }, { - "id": "3637", + "id": "3638", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142693,7 +142764,7 @@ } }, { - "id": "3638", + "id": "3639", "mutatorName": "EqualityOperator", "replacement": "index !== players.length - 1", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142728,7 +142799,7 @@ } }, { - "id": "3639", + "id": "3640", "mutatorName": "ArithmeticOperator", "replacement": "players.length + 1", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142763,7 +142834,7 @@ } }, { - "id": "3640", + "id": "3641", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142798,7 +142869,7 @@ } }, { - "id": "3641", + "id": "3642", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142833,7 +142904,7 @@ } }, { - "id": "3642", + "id": "3643", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142868,7 +142939,7 @@ } }, { - "id": "3643", + "id": "3644", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected ' shared.and player-3' to be 'player-1, player-2 shared.and player-3' // Object.is equality", @@ -142893,7 +142964,7 @@ } }, { - "id": "3644", + "id": "3645", "mutatorName": "StringLiteral", "replacement": "\"Stryker was here!\"", "statusReason": "expected 'components.GamePiedPiperHasCharmedEve…' to be 'components.GamePiedPiperHasCharmedEve…' // Object.is equality", @@ -142933,7 +143004,7 @@ } }, { - "id": "3645", + "id": "3646", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/player/usePlayers.ts(21,3): error TS2741: Property 'getPlayersNamesText' is missing in type '{}' but required in type 'UsePlayers'.\n", @@ -142987,7 +143058,7 @@ "language": "typescript", "mutants": [ { - "id": "3646", + "id": "3647", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-additional-card/game-additional-card.class.ts(20,65): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143028,7 +143099,7 @@ "language": "typescript", "mutants": [ { - "id": "3647", + "id": "3648", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-event/game-event.class.ts(14,47): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143124,7 +143195,7 @@ "language": "typescript", "mutants": [ { - "id": "3648", + "id": "3649", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-feedback/game-feedback.class.ts(24,53): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143155,7 +143226,7 @@ "language": "typescript", "mutants": [ { - "id": "3649", + "id": "3650", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-history-record/game-history-record-play/game-history-record-play-source/game-history-record-play-source.class.ts(20,83): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143223,7 +143294,7 @@ "language": "typescript", "mutants": [ { - "id": "3650", + "id": "3651", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-history-record/game-history-record-play/game-history-record-play-target/game-history-record-play-target.class.ts(15,83): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143263,7 +143334,7 @@ "language": "typescript", "mutants": [ { - "id": "3651", + "id": "3652", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-history-record/game-history-record-play/game-history-record-play-vote/game-history-record-play-vote.class.ts(15,79): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143292,7 +143363,7 @@ "language": "typescript", "mutants": [ { - "id": "3652", + "id": "3653", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-history-record/game-history-record-play/game-history-record-play-voting/game-history-record-play-voting.class.ts(15,83): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143323,7 +143394,7 @@ "language": "typescript", "mutants": [ { - "id": "3653", + "id": "3654", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-history-record/game-history-record-play/game-history-record-play.class.ts(48,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143390,7 +143461,7 @@ "language": "typescript", "mutants": [ { - "id": "3654", + "id": "3655", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-history-record/game-history-record-player-attribute-alteration/game-history-record-player-attribute-alteration.class.ts(21,113): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143419,7 +143490,7 @@ "language": "typescript", "mutants": [ { - "id": "3655", + "id": "3656", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-history-record/game-history-record.class.ts(49,63): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -143485,7 +143556,7 @@ "language": "typescript", "mutants": [ { - "id": "3656", + "id": "3657", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/composition-game-options/composition-game-options.class.ts(9,73): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -144043,7 +144114,7 @@ "language": "typescript", "mutants": [ { - "id": "3657", + "id": "3658", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/game-options.class.ts(22,63): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -144600,7 +144671,7 @@ "language": "typescript", "mutants": [ { - "id": "3658", + "id": "3659", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/actor-game-options/actor-game-options.class.ts(9,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -145158,7 +145229,7 @@ "language": "typescript", "mutants": [ { - "id": "3659", + "id": "3660", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/bear-tamer-game-options/bear-tamer-game-options.class.ts(9,69): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -145716,7 +145787,7 @@ "language": "typescript", "mutants": [ { - "id": "3660", + "id": "3661", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/big-bad-wolf-options/big-bad-wolf-options.class.ts(9,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -146274,7 +146345,7 @@ "language": "typescript", "mutants": [ { - "id": "3661", + "id": "3662", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/cupid-game-options/cupid-game-options.class.ts(14,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -146832,7 +146903,7 @@ "language": "typescript", "mutants": [ { - "id": "3662", + "id": "3663", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/cupid-game-options/cupid-lovers-game-options/cupid-lovers-game-options.class.ts(9,73): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -147391,7 +147462,7 @@ "language": "typescript", "mutants": [ { - "id": "3663", + "id": "3664", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/defender-game-options/defender-game-options.class.ts(9,67): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -147949,7 +148020,7 @@ "language": "typescript", "mutants": [ { - "id": "3664", + "id": "3665", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/elder-game-options/elder-game-options.class.ts(12,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -148507,7 +148578,7 @@ "language": "typescript", "mutants": [ { - "id": "3665", + "id": "3666", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/fox-game-options/fox-game-options.class.ts(9,57): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -149065,7 +149136,7 @@ "language": "typescript", "mutants": [ { - "id": "3666", + "id": "3667", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/idiot-game-options/idiot-game-options.class.ts(9,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -149623,7 +149694,7 @@ "language": "typescript", "mutants": [ { - "id": "3667", + "id": "3668", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/little-girl-game-options/little-girl-game-options.class.ts(9,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -150181,7 +150252,7 @@ "language": "typescript", "mutants": [ { - "id": "3668", + "id": "3669", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/pied-piper-game-options/pied-piper-game-options.class.ts(15,69): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -150739,7 +150810,7 @@ "language": "typescript", "mutants": [ { - "id": "3669", + "id": "3670", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/prejudiced-manipulator-game-options/prejudiced-manipulator-game-options.class.ts(9,93): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -151296,7 +151367,7 @@ "language": "typescript", "mutants": [ { - "id": "3670", + "id": "3671", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/roles-game-options.class.ts(127,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -151853,7 +151924,7 @@ "language": "typescript", "mutants": [ { - "id": "3671", + "id": "3672", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/scandalmonger-game-options/scandalmongonger-game-options.class.ts(9,77): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -152411,7 +152482,7 @@ "language": "typescript", "mutants": [ { - "id": "3672", + "id": "3673", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/seer-game-options/seer-game-options.class.ts(12,59): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -152969,7 +153040,7 @@ "language": "typescript", "mutants": [ { - "id": "3673", + "id": "3674", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/sheriff-game-options/sheriff-election-game-options/sheriff-election-game-options.class.ts(13,81): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -153528,7 +153599,7 @@ "language": "typescript", "mutants": [ { - "id": "3674", + "id": "3675", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/sheriff-game-options/sheriff-game-options.class.ts(20,65): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -154086,7 +154157,7 @@ "language": "typescript", "mutants": [ { - "id": "3675", + "id": "3676", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/stuttering-judge-game-options/stuttering-judge-game-options.class.ts(9,81): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -154644,7 +154715,7 @@ "language": "typescript", "mutants": [ { - "id": "3676", + "id": "3677", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/thief-game-options/thief-game-options.class.ts(12,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -155202,7 +155273,7 @@ "language": "typescript", "mutants": [ { - "id": "3677", + "id": "3678", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/three-brothers-game-options/three-brothers-game-options.class.ts(9,77): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -155760,7 +155831,7 @@ "language": "typescript", "mutants": [ { - "id": "3678", + "id": "3679", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/two-sisters-game-options/two-sisters-game-options.class.ts(9,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -156318,7 +156389,7 @@ "language": "typescript", "mutants": [ { - "id": "3679", + "id": "3680", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/werewolf-game-options/werewolf-game-options.class.ts(9,67): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -156876,7 +156947,7 @@ "language": "typescript", "mutants": [ { - "id": "3680", + "id": "3681", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/white-werewolf-options/white-werewolf-game-options.class.ts(9,77): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -157434,7 +157505,7 @@ "language": "typescript", "mutants": [ { - "id": "3681", + "id": "3682", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/wild-child-game-options/wild-child-game-options.class.ts(9,69): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -157992,7 +158063,7 @@ "language": "typescript", "mutants": [ { - "id": "3682", + "id": "3683", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/witch-game-options/witch-game-options.class.ts(9,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -158550,7 +158621,7 @@ "language": "typescript", "mutants": [ { - "id": "3683", + "id": "3684", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/roles-game-options/wolf-hound-game-options/wolf-hound-game-options.class.ts(12,69): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -159108,7 +159179,7 @@ "language": "typescript", "mutants": [ { - "id": "3684", + "id": "3685", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-options/votes-game-options/votes-game-options.class.ts(12,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -159666,7 +159737,7 @@ "language": "typescript", "mutants": [ { - "id": "3685", + "id": "3686", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-phase/game-phase.class.ts(13,47): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160035,7 +160106,7 @@ "language": "typescript", "mutants": [ { - "id": "3686", + "id": "3687", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-play/game-play-source/game-play-source-interaction/game-play-source-interaction-boundaries/game-play-source-interaction-boundaries.class.ts(12,99): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160063,7 +160134,7 @@ "language": "typescript", "mutants": [ { - "id": "3687", + "id": "3688", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-play/game-play-source/game-play-source-interaction/game-play-source-interaction.class.ts(25,79): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160091,7 +160162,7 @@ "language": "typescript", "mutants": [ { - "id": "3688", + "id": "3689", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-play/game-play-source/game-play-source.class.ts(20,57): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160243,7 +160314,7 @@ "language": "typescript", "mutants": [ { - "id": "3689", + "id": "3690", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-play/game-play.class.ts(27,45): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160394,7 +160465,7 @@ "language": "typescript", "mutants": [ { - "id": "3690", + "id": "3691", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game-victory/game-victory.class.ts(14,51): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160424,7 +160495,7 @@ "language": "typescript", "mutants": [ { - "id": "3691", + "id": "3692", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game.class.ts(78,49): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160752,7 +160823,7 @@ } }, { - "id": "3692", + "id": "3693", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/game.class.ts(82,20): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160780,7 +160851,7 @@ "language": "typescript", "mutants": [ { - "id": "3693", + "id": "3694", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/players/player-attribute/player-attribute-activation/player-attribute-activation.class.ts(13,79): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160809,7 +160880,7 @@ "language": "typescript", "mutants": [ { - "id": "3694", + "id": "3695", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/players/player-attribute/player-attribute.class.ts(25,59): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160840,7 +160911,7 @@ "language": "typescript", "mutants": [ { - "id": "3695", + "id": "3696", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/players/player-role/player-role.class.ts(16,52): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160905,7 +160976,7 @@ "language": "typescript", "mutants": [ { - "id": "3696", + "id": "3697", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/players/player-side/player-side.class.ts(13,52): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -160966,7 +161037,7 @@ "language": "typescript", "mutants": [ { - "id": "3697", + "id": "3698", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/types/players/player.class.ts(33,41): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -161074,7 +161145,7 @@ "language": "typescript", "mutants": [ { - "id": "3698", + "id": "3699", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(30,73): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -161190,7 +161261,7 @@ } }, { - "id": "3699", + "id": "3700", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(36,35): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -161306,7 +161377,7 @@ } }, { - "id": "3700", + "id": "3701", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -161379,7 +161450,7 @@ } }, { - "id": "3701", + "id": "3702", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -161452,7 +161523,7 @@ } }, { - "id": "3702", + "id": "3703", "mutatorName": "EqualityOperator", "replacement": "createGameDto.value.players.length > MIN_PLAYERS_IN_GAME", "statusReason": "expected 'components.GameLobbyRandomComposition…' to be undefined", @@ -161525,7 +161596,7 @@ } }, { - "id": "3703", + "id": "3704", "mutatorName": "EqualityOperator", "replacement": "createGameDto.value.players.length < MIN_PLAYERS_IN_GAME", "statusReason": "expected true to be false // Object.is equality", @@ -161598,7 +161669,7 @@ } }, { - "id": "3704", + "id": "3705", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(38,26): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -161714,7 +161785,7 @@ } }, { - "id": "3705", + "id": "3706", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players.some(player => player.role.name !== undefined)", "statusReason": "expected true to be false // Object.is equality", @@ -161764,7 +161835,7 @@ } }, { - "id": "3706", + "id": "3707", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected false to be true // Object.is equality", @@ -161814,7 +161885,7 @@ } }, { - "id": "3707", + "id": "3708", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -161856,7 +161927,7 @@ } }, { - "id": "3708", + "id": "3709", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -161898,7 +161969,7 @@ } }, { - "id": "3709", + "id": "3710", "mutatorName": "EqualityOperator", "replacement": "player.role.name === undefined", "statusReason": "expected 'composables.useCreateGameDtoValidatio…' to be undefined", @@ -161940,7 +162011,7 @@ } }, { - "id": "3710", + "id": "3711", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(40,43): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -162056,7 +162127,7 @@ } }, { - "id": "3711", + "id": "3712", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players.every(player => player.side.current === \"villagers\")", "statusReason": "expected 'composables.useCreateGameDtoValidatio…' to be undefined", @@ -162105,7 +162176,7 @@ } }, { - "id": "3712", + "id": "3713", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected false to be true // Object.is equality", @@ -162154,7 +162225,7 @@ } }, { - "id": "3713", + "id": "3714", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -162195,7 +162266,7 @@ } }, { - "id": "3714", + "id": "3715", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'composables.useCreateGameDtoValidatio…' to be undefined", @@ -162236,7 +162307,7 @@ } }, { - "id": "3715", + "id": "3716", "mutatorName": "EqualityOperator", "replacement": "player.side.current !== \"villagers\"", "statusReason": "expected true to be false // Object.is equality", @@ -162277,7 +162348,7 @@ } }, { - "id": "3716", + "id": "3717", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(40,110): error TS2367: This comparison appears to be unintentional because the types '\"villagers\" | \"werewolves\" | undefined' and '\"\"' have no overlap.\n", @@ -162315,7 +162386,7 @@ } }, { - "id": "3717", + "id": "3718", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(42,43): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -162431,7 +162502,7 @@ } }, { - "id": "3718", + "id": "3719", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players.every(player => player.side.current === \"werewolves\")", "statusReason": "expected false to be true // Object.is equality", @@ -162479,7 +162550,7 @@ } }, { - "id": "3719", + "id": "3720", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected false to be true // Object.is equality", @@ -162527,7 +162598,7 @@ } }, { - "id": "3720", + "id": "3721", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -162567,7 +162638,7 @@ } }, { - "id": "3721", + "id": "3722", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'composables.useCreateGameDtoValidatio…' to be undefined", @@ -162607,7 +162678,7 @@ } }, { - "id": "3722", + "id": "3723", "mutatorName": "EqualityOperator", "replacement": "player.side.current !== \"werewolves\"", "statusReason": "expected true to be false // Object.is equality", @@ -162647,7 +162718,7 @@ } }, { - "id": "3723", + "id": "3724", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(42,110): error TS2367: This comparison appears to be unintentional because the types '\"villagers\" | \"werewolves\" | undefined' and '\"\"' have no overlap.\n", @@ -162684,7 +162755,7 @@ } }, { - "id": "3724", + "id": "3725", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(44,59): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -162711,7 +162782,7 @@ } }, { - "id": "3725", + "id": "3726", "mutatorName": "BooleanLiteral", "replacement": "roles.value", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(48,37): error TS18047: 'roles.value' is possibly 'null'.\napp/composables/api/game/useCreateGameDtoValidation.ts(48,57): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(50,42): error TS7006: Parameter 'role' implicitly has an 'any' type.\n", @@ -162738,7 +162809,7 @@ } }, { - "id": "3726", + "id": "3727", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(48,37): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -162765,7 +162836,7 @@ } }, { - "id": "3727", + "id": "3728", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(48,37): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -162792,7 +162863,7 @@ } }, { - "id": "3728", + "id": "3729", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(46,37): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -162814,7 +162885,7 @@ } }, { - "id": "3729", + "id": "3730", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -162839,7 +162910,7 @@ } }, { - "id": "3730", + "id": "3731", "mutatorName": "MethodExpression", "replacement": "roles.value", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(50,88): error TS2345: Argument of type '{ name: \"werewolf\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | \"villager\" | \"villager-villager\" | \"seer\" | \"cupid\" | \"witch\" | \"hunter\" | \"little-girl\" | \"defender\" | ... 17 more ... | \"devoted-servant\"; ... 6 more ...; recommendedMinPlayers?: number | undefined; }' is not assignable to parameter of type 'RoleWithMinInGame'.\n Type '{ name: \"werewolf\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | \"villager\" | \"villager-villager\" | \"seer\" | \"cupid\" | \"witch\" | \"hunter\" | \"little-girl\" | \"defender\" | ... 17 more ... | \"devoted-servant\"; ... 6 more ...; recommendedMinPlayers?: number | undefined; }' is not assignable to type '{ minInGame: number; }'.\n Types of property 'minInGame' are incompatible.\n Type 'number | undefined' is not assignable to type 'number'.\n Type 'undefined' is not assignable to type 'number'.\n", @@ -162865,7 +162936,7 @@ } }, { - "id": "3731", + "id": "3732", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(50,88): error TS2345: Argument of type '{ name: \"werewolf\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | \"villager\" | \"villager-villager\" | \"seer\" | \"cupid\" | \"witch\" | \"hunter\" | \"little-girl\" | \"defender\" | ... 17 more ... | \"devoted-servant\"; ... 6 more ...; recommendedMinPlayers?: number | undefined; }' is not assignable to parameter of type 'RoleWithMinInGame'.\n Type '{ name: \"werewolf\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | \"villager\" | \"villager-villager\" | \"seer\" | \"cupid\" | \"witch\" | \"hunter\" | \"little-girl\" | \"defender\" | ... 17 more ... | \"devoted-servant\"; ... 6 more ...; recommendedMinPlayers?: number | undefined; }' is not assignable to type '{ minInGame: number; }'.\n Types of property 'minInGame' are incompatible.\n Type 'number | undefined' is not assignable to type 'number'.\n Type 'undefined' is not assignable to type 'number'.\n", @@ -162891,7 +162962,7 @@ } }, { - "id": "3732", + "id": "3733", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected false to be true // Object.is equality", @@ -162920,7 +162991,7 @@ } }, { - "id": "3733", + "id": "3734", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected true to be false // Object.is equality", @@ -162949,7 +163020,7 @@ } }, { - "id": "3734", + "id": "3735", "mutatorName": "EqualityOperator", "replacement": "role.minInGame === undefined", "statusReason": "expected false to be true // Object.is equality", @@ -162978,7 +163049,7 @@ } }, { - "id": "3735", + "id": "3736", "mutatorName": "MethodExpression", "replacement": "rolesWithMinimumPlayers.some(role => isRolePresentAndMinimumPlayersReached(role))", "statusReason": "expected true to be false // Object.is equality", @@ -163007,7 +163078,7 @@ } }, { - "id": "3736", + "id": "3737", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected false to be true // Object.is equality", @@ -163036,7 +163107,7 @@ } }, { - "id": "3737", + "id": "3738", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(53,77): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -163080,7 +163151,7 @@ } }, { - "id": "3738", + "id": "3739", "mutatorName": "BooleanLiteral", "replacement": "roles.value", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(57,18): error TS18047: 'roles.value' is possibly 'null'.\napp/composables/api/game/useCreateGameDtoValidation.ts(57,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\n", @@ -163124,7 +163195,7 @@ } }, { - "id": "3739", + "id": "3740", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(57,18): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -163168,7 +163239,7 @@ } }, { - "id": "3740", + "id": "3741", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(57,18): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -163212,7 +163283,7 @@ } }, { - "id": "3741", + "id": "3742", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(55,18): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -163252,7 +163323,7 @@ } }, { - "id": "3742", + "id": "3743", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -163295,7 +163366,7 @@ } }, { - "id": "3743", + "id": "3744", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(62,80): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -163339,7 +163410,7 @@ } }, { - "id": "3744", + "id": "3745", "mutatorName": "BooleanLiteral", "replacement": "roles.value", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(66,18): error TS18047: 'roles.value' is possibly 'null'.\napp/composables/api/game/useCreateGameDtoValidation.ts(66,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\n", @@ -163383,7 +163454,7 @@ } }, { - "id": "3745", + "id": "3746", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(66,18): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -163427,7 +163498,7 @@ } }, { - "id": "3746", + "id": "3747", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(66,18): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -163471,7 +163542,7 @@ } }, { - "id": "3747", + "id": "3748", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(64,18): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -163511,7 +163582,7 @@ } }, { - "id": "3748", + "id": "3749", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -163554,7 +163625,7 @@ } }, { - "id": "3749", + "id": "3750", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(71,68): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -163614,7 +163685,7 @@ } }, { - "id": "3750", + "id": "3751", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players.every(player => player.role.name === \"thief\")", "statusReason": "expected 'components.RecipientRoleAdditionalCar…' to be 'components.RecipientRoleAdditionalCar…' // Object.is equality", @@ -163677,7 +163748,7 @@ } }, { - "id": "3751", + "id": "3752", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected 'check-circle' to be 'exclamation-circle' // Object.is equality", @@ -163740,7 +163811,7 @@ } }, { - "id": "3752", + "id": "3753", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected false to be true // Object.is equality", @@ -163795,7 +163866,7 @@ } }, { - "id": "3753", + "id": "3754", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'check-circle' to be 'exclamation-circle' // Object.is equality", @@ -163850,7 +163921,7 @@ } }, { - "id": "3754", + "id": "3755", "mutatorName": "EqualityOperator", "replacement": "player.role.name !== \"thief\"", "statusReason": "expected 'check-circle' to be 'exclamation-circle' // Object.is equality", @@ -163905,7 +163976,7 @@ } }, { - "id": "3755", + "id": "3756", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(72,71): error TS2367: This comparison appears to be unintentional because the types '\"werewolf\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | \"villager\" | \"villager-villager\" | \"seer\" | \"cupid\" | \"witch\" | \"hunter\" | \"little-girl\" | \"defender\" | ... 18 more ... | undefined' and '\"\"' have no overlap.\n", @@ -163957,7 +164028,7 @@ } }, { - "id": "3756", + "id": "3757", "mutatorName": "BooleanLiteral", "replacement": "isThiefPresent", "statusReason": "expected 'check-circle' to be 'exclamation-circle' // Object.is equality", @@ -164020,7 +164091,7 @@ } }, { - "id": "3757", + "id": "3758", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'check-circle' to be 'exclamation-circle' // Object.is equality", @@ -164083,7 +164154,7 @@ } }, { - "id": "3758", + "id": "3759", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -164146,7 +164217,7 @@ } }, { - "id": "3759", + "id": "3760", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected false to be true // Object.is equality", @@ -164193,7 +164264,7 @@ } }, { - "id": "3760", + "id": "3761", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -164240,7 +164311,7 @@ } }, { - "id": "3761", + "id": "3762", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -164283,7 +164354,7 @@ } }, { - "id": "3762", + "id": "3763", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -164326,7 +164397,7 @@ } }, { - "id": "3763", + "id": "3764", "mutatorName": "EqualityOperator", "replacement": "createGameDto.value.additionalCards?.some(card => card.recipient === \"thief\") !== true", "statusReason": "expected false to be true // Object.is equality", @@ -164369,7 +164440,7 @@ } }, { - "id": "3764", + "id": "3765", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.additionalCards?.every(card => card.recipient === \"thief\")", "statusReason": "expected false to be true // Object.is equality", @@ -164412,7 +164483,7 @@ } }, { - "id": "3765", + "id": "3766", "mutatorName": "OptionalChaining", "replacement": "createGameDto.value.additionalCards.some", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(76,12): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -164452,7 +164523,7 @@ } }, { - "id": "3766", + "id": "3767", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Recipient Role Additional Cards Disclaimer Component > should match snapshot when rendered. 1` mismatched", @@ -164489,7 +164560,7 @@ } }, { - "id": "3767", + "id": "3768", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -164526,7 +164597,7 @@ } }, { - "id": "3768", + "id": "3769", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -164563,7 +164634,7 @@ } }, { - "id": "3769", + "id": "3770", "mutatorName": "EqualityOperator", "replacement": "card.recipient !== \"thief\"", "statusReason": "expected true to be false // Object.is equality", @@ -164600,7 +164671,7 @@ } }, { - "id": "3770", + "id": "3771", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(76,62): error TS2367: This comparison appears to be unintentional because the types '\"thief\" | \"actor\"' and '\"\"' have no overlap.\n", @@ -164634,7 +164705,7 @@ } }, { - "id": "3771", + "id": "3772", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expected true to be falsy", @@ -164677,7 +164748,7 @@ } }, { - "id": "3772", + "id": "3773", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(79,68): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -164738,7 +164809,7 @@ } }, { - "id": "3773", + "id": "3774", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players.every(player => player.role.name === \"actor\")", "statusReason": "expected 'check-circle' to be 'exclamation-circle' // Object.is equality", @@ -164802,7 +164873,7 @@ } }, { - "id": "3774", + "id": "3775", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected true to be false // Object.is equality", @@ -164866,7 +164937,7 @@ } }, { - "id": "3775", + "id": "3776", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected false to be true // Object.is equality", @@ -164922,7 +164993,7 @@ } }, { - "id": "3776", + "id": "3777", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected true to be false // Object.is equality", @@ -164978,7 +165049,7 @@ } }, { - "id": "3777", + "id": "3778", "mutatorName": "EqualityOperator", "replacement": "player.role.name !== \"actor\"", "statusReason": "expected false to be true // Object.is equality", @@ -165034,7 +165105,7 @@ } }, { - "id": "3778", + "id": "3779", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(80,71): error TS2367: This comparison appears to be unintentional because the types '\"werewolf\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | \"villager\" | \"villager-villager\" | \"seer\" | \"cupid\" | \"witch\" | \"hunter\" | \"little-girl\" | \"defender\" | ... 18 more ... | undefined' and '\"\"' have no overlap.\n", @@ -165087,7 +165158,7 @@ } }, { - "id": "3779", + "id": "3780", "mutatorName": "BooleanLiteral", "replacement": "isActorPresent", "statusReason": "expected 'check-circle' to be 'exclamation-circle' // Object.is equality", @@ -165151,7 +165222,7 @@ } }, { - "id": "3780", + "id": "3781", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -165215,7 +165286,7 @@ } }, { - "id": "3781", + "id": "3782", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -165279,7 +165350,7 @@ } }, { - "id": "3782", + "id": "3783", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected false to be true // Object.is equality", @@ -165338,7 +165409,7 @@ } }, { - "id": "3783", + "id": "3784", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -165397,7 +165468,7 @@ } }, { - "id": "3784", + "id": "3785", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'check-circle' to be 'exclamation-circle' // Object.is equality", @@ -165430,7 +165501,7 @@ } }, { - "id": "3785", + "id": "3786", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -165463,7 +165534,7 @@ } }, { - "id": "3786", + "id": "3787", "mutatorName": "EqualityOperator", "replacement": "createGameDto.value.additionalCards?.some(card => card.recipient === \"actor\") !== true", "statusReason": "expected false to be true // Object.is equality", @@ -165496,7 +165567,7 @@ } }, { - "id": "3787", + "id": "3788", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.additionalCards?.every(card => card.recipient === \"actor\")", "statusReason": "expected false to be true // Object.is equality", @@ -165529,7 +165600,7 @@ } }, { - "id": "3788", + "id": "3789", "mutatorName": "OptionalChaining", "replacement": "createGameDto.value.additionalCards.some", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(84,12): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -165559,7 +165630,7 @@ } }, { - "id": "3789", + "id": "3790", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected false to be true // Object.is equality", @@ -165591,7 +165662,7 @@ } }, { - "id": "3790", + "id": "3791", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -165623,7 +165694,7 @@ } }, { - "id": "3791", + "id": "3792", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -165655,7 +165726,7 @@ } }, { - "id": "3792", + "id": "3793", "mutatorName": "EqualityOperator", "replacement": "card.recipient !== \"actor\"", "statusReason": "expected true to be false // Object.is equality", @@ -165687,7 +165758,7 @@ } }, { - "id": "3793", + "id": "3794", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(84,62): error TS2367: This comparison appears to be unintentional because the types '\"thief\" | \"actor\"' and '\"\"' have no overlap.\n", @@ -165716,7 +165787,7 @@ } }, { - "id": "3794", + "id": "3795", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -165749,7 +165820,7 @@ } }, { - "id": "3795", + "id": "3796", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(87,65): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -165865,7 +165936,7 @@ } }, { - "id": "3796", + "id": "3797", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -165897,7 +165968,7 @@ } }, { - "id": "3797", + "id": "3798", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -165929,7 +166000,7 @@ } }, { - "id": "3798", + "id": "3799", "mutatorName": "LogicalOperator", "replacement": "areAdditionalCardsSetForActorIfPresent.value || areAdditionalCardsSetForThiefIfPresent.value", "statusReason": "expected true to be false // Object.is equality", @@ -165961,7 +166032,7 @@ } }, { - "id": "3799", + "id": "3800", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(90,81): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -166013,7 +166084,7 @@ } }, { - "id": "3800", + "id": "3801", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players.every(player => player.role.name === \"prejudiced-manipulator\")", "statusReason": "expected true to be false // Object.is equality", @@ -166068,7 +166139,7 @@ } }, { - "id": "3801", + "id": "3802", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected true to be false // Object.is equality", @@ -166123,7 +166194,7 @@ } }, { - "id": "3802", + "id": "3803", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected false to be true // Object.is equality", @@ -166170,7 +166241,7 @@ } }, { - "id": "3803", + "id": "3804", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Lobby Group Organizer Disclaimer Component > should match snapshot when rendered. 1` mismatched", @@ -166217,7 +166288,7 @@ } }, { - "id": "3804", + "id": "3805", "mutatorName": "EqualityOperator", "replacement": "player.role.name !== \"prejudiced-manipulator\"", "statusReason": "expected [ 'me-3', 'text-success' ] to include 'text-error'", @@ -166264,7 +166335,7 @@ } }, { - "id": "3805", + "id": "3806", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(91,87): error TS2367: This comparison appears to be unintentional because the types '\"werewolf\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | \"villager\" | \"villager-villager\" | \"seer\" | \"cupid\" | \"witch\" | \"hunter\" | \"little-girl\" | \"defender\" | ... 18 more ... | undefined' and '\"\"' have no overlap.\n", @@ -166308,7 +166379,7 @@ } }, { - "id": "3806", + "id": "3807", "mutatorName": "BooleanLiteral", "replacement": "isPrejudicedManipulatorPresent", "statusReason": "expected false to be true // Object.is equality", @@ -166363,7 +166434,7 @@ } }, { - "id": "3807", + "id": "3808", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -166418,7 +166489,7 @@ } }, { - "id": "3808", + "id": "3809", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -166473,7 +166544,7 @@ } }, { - "id": "3809", + "id": "3810", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected false to be true // Object.is equality", @@ -166520,7 +166591,7 @@ } }, { - "id": "3810", + "id": "3811", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -166567,7 +166638,7 @@ } }, { - "id": "3811", + "id": "3812", "mutatorName": "MethodExpression", "replacement": "Object.values(groups).some(group => group.length >= MIN_PLAYERS_IN_GROUP)", "statusReason": "expected true to be false // Object.is equality", @@ -166602,7 +166673,7 @@ } }, { - "id": "3812", + "id": "3813", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected false to be true // Object.is equality", @@ -166637,7 +166708,7 @@ } }, { - "id": "3813", + "id": "3814", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -166665,7 +166736,7 @@ } }, { - "id": "3814", + "id": "3815", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -166693,7 +166764,7 @@ } }, { - "id": "3815", + "id": "3816", "mutatorName": "EqualityOperator", "replacement": "group.length > MIN_PLAYERS_IN_GROUP", "statusReason": "expected false to be true // Object.is equality", @@ -166721,7 +166792,7 @@ } }, { - "id": "3816", + "id": "3817", "mutatorName": "EqualityOperator", "replacement": "group.length < MIN_PLAYERS_IN_GROUP", "statusReason": "expected false to be true // Object.is equality", @@ -166749,7 +166820,7 @@ } }, { - "id": "3817", + "id": "3818", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -166784,7 +166855,7 @@ } }, { - "id": "3818", + "id": "3819", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -166818,43 +166889,43 @@ } } }, - { - "id": "3819", - "mutatorName": "LogicalOperator", - "replacement": "Object.keys(groups).length >= minimumGroups || areAllGroupsMinimumPlayersReached", - "statusReason": "expected true to be false // Object.is equality", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "77" - ], - "coveredBy": [ - "76", - "77", - "86", - "1067", - "1068", - "1069", - "1761", - "1762", - "1763", - "1764", - "1765" - ], - "location": { - "end": { - "column": 92, - "line": 100 - }, - "start": { - "column": 12, - "line": 100 - } - } - }, { "id": "3820", + "mutatorName": "LogicalOperator", + "replacement": "Object.keys(groups).length >= minimumGroups || areAllGroupsMinimumPlayersReached", + "statusReason": "expected true to be false // Object.is equality", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "77" + ], + "coveredBy": [ + "76", + "77", + "86", + "1067", + "1068", + "1069", + "1761", + "1762", + "1763", + "1764", + "1765" + ], + "location": { + "end": { + "column": 92, + "line": 100 + }, + "start": { + "column": 12, + "line": 100 + } + } + }, + { + "id": "3821", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -166889,7 +166960,7 @@ } }, { - "id": "3821", + "id": "3822", "mutatorName": "EqualityOperator", "replacement": "Object.keys(groups).length > minimumGroups", "statusReason": "expected false to be true // Object.is equality", @@ -166924,7 +166995,7 @@ } }, { - "id": "3822", + "id": "3823", "mutatorName": "EqualityOperator", "replacement": "Object.keys(groups).length < minimumGroups", "statusReason": "expected false to be true // Object.is equality", @@ -166959,7 +167030,7 @@ } }, { - "id": "3823", + "id": "3824", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(103,25): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -167075,7 +167146,7 @@ } }, { - "id": "3824", + "id": "3825", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -167125,7 +167196,7 @@ } }, { - "id": "3825", + "id": "3826", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -167175,7 +167246,7 @@ } }, { - "id": "3826", + "id": "3827", "mutatorName": "LogicalOperator", "replacement": "isMinimumPlayersReached.value && areAllRolesSet.value && doesContainOneVillagerSidedRole.value && doesContainOneWerewolfSidedRole.value && areRolesMinimumPlayersReached.value && areAdditionalCardsSetForThiefIfPresent.value && areAdditionalCardsSetForActorIfPresent.value || arePlayerGroupsSetForPrejudicedManipulatorIfPresent.value", "statusReason": "expected true to be false // Object.is equality", @@ -167225,7 +167296,7 @@ } }, { - "id": "3827", + "id": "3828", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -167275,7 +167346,7 @@ } }, { - "id": "3828", + "id": "3829", "mutatorName": "LogicalOperator", "replacement": "isMinimumPlayersReached.value && areAllRolesSet.value && doesContainOneVillagerSidedRole.value && doesContainOneWerewolfSidedRole.value && areRolesMinimumPlayersReached.value && areAdditionalCardsSetForThiefIfPresent.value || areAdditionalCardsSetForActorIfPresent.value", "statusReason": "expected true to be false // Object.is equality", @@ -167325,7 +167396,7 @@ } }, { - "id": "3829", + "id": "3830", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -167375,7 +167446,7 @@ } }, { - "id": "3830", + "id": "3831", "mutatorName": "LogicalOperator", "replacement": "isMinimumPlayersReached.value && areAllRolesSet.value && doesContainOneVillagerSidedRole.value && doesContainOneWerewolfSidedRole.value && areRolesMinimumPlayersReached.value || areAdditionalCardsSetForThiefIfPresent.value", "statusReason": "expected true to be false // Object.is equality", @@ -167425,7 +167496,7 @@ } }, { - "id": "3831", + "id": "3832", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -167475,7 +167546,7 @@ } }, { - "id": "3832", + "id": "3833", "mutatorName": "LogicalOperator", "replacement": "isMinimumPlayersReached.value && areAllRolesSet.value && doesContainOneVillagerSidedRole.value && doesContainOneWerewolfSidedRole.value || areRolesMinimumPlayersReached.value", "statusReason": "expected true to be false // Object.is equality", @@ -167525,7 +167596,7 @@ } }, { - "id": "3833", + "id": "3834", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -167575,7 +167646,7 @@ } }, { - "id": "3834", + "id": "3835", "mutatorName": "LogicalOperator", "replacement": "isMinimumPlayersReached.value && areAllRolesSet.value && doesContainOneVillagerSidedRole.value || doesContainOneWerewolfSidedRole.value", "statusReason": "expected true to be false // Object.is equality", @@ -167625,7 +167696,7 @@ } }, { - "id": "3835", + "id": "3836", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -167675,7 +167746,7 @@ } }, { - "id": "3836", + "id": "3837", "mutatorName": "LogicalOperator", "replacement": "isMinimumPlayersReached.value && areAllRolesSet.value || doesContainOneVillagerSidedRole.value", "statusReason": "expected true to be false // Object.is equality", @@ -167725,7 +167796,7 @@ } }, { - "id": "3837", + "id": "3838", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -167775,7 +167846,7 @@ } }, { - "id": "3838", + "id": "3839", "mutatorName": "LogicalOperator", "replacement": "isMinimumPlayersReached.value || areAllRolesSet.value", "statusReason": "expected true to be false // Object.is equality", @@ -167825,7 +167896,7 @@ } }, { - "id": "3839", + "id": "3840", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(112,59): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'string[]'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -167866,7 +167937,7 @@ } }, { - "id": "3840", + "id": "3841", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected [] to include 'composables.useCreateGameDtoValidatio…'", @@ -167910,7 +167981,7 @@ } }, { - "id": "3841", + "id": "3842", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ '' ] to include 'composables.useCreateGameDtoValidatio…'", @@ -167954,7 +168025,7 @@ } }, { - "id": "3842", + "id": "3843", "mutatorName": "BooleanLiteral", "replacement": "isMinimumPlayersReached.value", "statusReason": "expected [] to include 'composables.useCreateGameDtoValidatio…'", @@ -167998,7 +168069,7 @@ } }, { - "id": "3843", + "id": "3844", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ '', …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168042,7 +168113,7 @@ } }, { - "id": "3844", + "id": "3845", "mutatorName": "BooleanLiteral", "replacement": "areAllRolesSet.value", "statusReason": "expected [ …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168086,7 +168157,7 @@ } }, { - "id": "3845", + "id": "3846", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ '' ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168130,7 +168201,7 @@ } }, { - "id": "3846", + "id": "3847", "mutatorName": "BooleanLiteral", "replacement": "doesContainOneVillagerSidedRole.value", "statusReason": "expected [] to include 'composables.useCreateGameDtoValidatio…'", @@ -168174,7 +168245,7 @@ } }, { - "id": "3847", + "id": "3848", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ '' ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168218,7 +168289,7 @@ } }, { - "id": "3848", + "id": "3849", "mutatorName": "BooleanLiteral", "replacement": "doesContainOneWerewolfSidedRole.value", "statusReason": "expected [] to include 'composables.useCreateGameDtoValidatio…'", @@ -168262,7 +168333,7 @@ } }, { - "id": "3849", + "id": "3850", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ …(3) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168306,7 +168377,7 @@ } }, { - "id": "3850", + "id": "3851", "mutatorName": "BooleanLiteral", "replacement": "isTwoSistersRolePresentAndMinimumPlayersReached.value", "statusReason": "expected [ …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168350,7 +168421,7 @@ } }, { - "id": "3851", + "id": "3852", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ …(3) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168394,7 +168465,7 @@ } }, { - "id": "3852", + "id": "3853", "mutatorName": "BooleanLiteral", "replacement": "isThreeBrothersRolePresentAndMinimumPlayersReached.value", "statusReason": "expected [ …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168438,7 +168509,7 @@ } }, { - "id": "3853", + "id": "3854", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ …(3) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168482,7 +168553,7 @@ } }, { - "id": "3854", + "id": "3855", "mutatorName": "BooleanLiteral", "replacement": "areAdditionalCardsSetForThiefIfPresent.value", "statusReason": "expected [ …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168526,7 +168597,7 @@ } }, { - "id": "3855", + "id": "3856", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ …(3) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168570,7 +168641,7 @@ } }, { - "id": "3856", + "id": "3857", "mutatorName": "BooleanLiteral", "replacement": "areAdditionalCardsSetForActorIfPresent.value", "statusReason": "expected [ …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168614,7 +168685,7 @@ } }, { - "id": "3857", + "id": "3858", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ …(3) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168658,7 +168729,7 @@ } }, { - "id": "3858", + "id": "3859", "mutatorName": "BooleanLiteral", "replacement": "arePlayerGroupsSetForPrejudicedManipulatorIfPresent.value", "statusReason": "expected [ …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168702,7 +168773,7 @@ } }, { - "id": "3859", + "id": "3860", "mutatorName": "MethodExpression", "replacement": "Object.keys(errors)", "statusReason": "expected [ …(9) ] to strictly equal []", @@ -168746,7 +168817,7 @@ } }, { - "id": "3860", + "id": "3861", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [] to include 'composables.useCreateGameDtoValidatio…'", @@ -168790,7 +168861,7 @@ } }, { - "id": "3861", + "id": "3862", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(128,76): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -168839,7 +168910,7 @@ } }, { - "id": "3862", + "id": "3863", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players", "statusReason": "expected [ …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168891,7 +168962,7 @@ } }, { - "id": "3863", + "id": "3864", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected true to be false // Object.is equality", @@ -168943,7 +169014,7 @@ } }, { - "id": "3864", + "id": "3865", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ …(2) ] to include 'composables.useCreateGameDtoValidatio…'", @@ -168989,7 +169060,7 @@ } }, { - "id": "3865", + "id": "3866", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected true to be false // Object.is equality", @@ -169035,7 +169106,7 @@ } }, { - "id": "3866", + "id": "3867", "mutatorName": "EqualityOperator", "replacement": "player.role.name !== role.name", "statusReason": "expected true to be false // Object.is equality", @@ -169081,7 +169152,7 @@ } }, { - "id": "3867", + "id": "3868", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -169133,7 +169204,7 @@ } }, { - "id": "3868", + "id": "3869", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -169185,7 +169256,7 @@ } }, { - "id": "3869", + "id": "3870", "mutatorName": "LogicalOperator", "replacement": "playersWithRoleCount === 0 && playersWithRoleCount >= role.minInGame", "statusReason": "expected false to be true // Object.is equality", @@ -169237,7 +169308,7 @@ } }, { - "id": "3870", + "id": "3871", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -169289,7 +169360,7 @@ } }, { - "id": "3871", + "id": "3872", "mutatorName": "EqualityOperator", "replacement": "playersWithRoleCount !== 0", "statusReason": "expected false to be true // Object.is equality", @@ -169341,7 +169412,7 @@ } }, { - "id": "3872", + "id": "3873", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -169374,7 +169445,7 @@ } }, { - "id": "3873", + "id": "3874", "mutatorName": "EqualityOperator", "replacement": "playersWithRoleCount > role.minInGame", "statusReason": "expected false to be true // Object.is equality", @@ -169407,7 +169478,7 @@ } }, { - "id": "3874", + "id": "3875", "mutatorName": "EqualityOperator", "replacement": "playersWithRoleCount < role.minInGame", "statusReason": "expected false to be true // Object.is equality", @@ -169440,7 +169511,7 @@ } }, { - "id": "3875", + "id": "3876", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(134,3): error TS2740: Type '{}' is missing the following properties from type 'UseCreateGameDtoValidation': isMinimumPlayersReached, areAllRolesSet, doesContainOneVillagerSidedRole, doesContainOneWerewolfSidedRole, and 10 more.\n", @@ -169562,7 +169633,7 @@ "language": "typescript", "mutants": [ { - "id": "3876", + "id": "3877", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(15,27): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -170230,11 +170301,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -170310,7 +170381,7 @@ } }, { - "id": "3877", + "id": "3878", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(18,60): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -170333,7 +170404,7 @@ } }, { - "id": "3878", + "id": "3879", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(18,60): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -170356,7 +170427,7 @@ } }, { - "id": "3879", + "id": "3880", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games\",\n Object {\n \"body\": \"{\"players\":[],\"options\":{\"composition\":{\"isHidden\":true},\"votes\":{\"canBeSkipped\":true,\"duration\":492},\"roles\":{\"doSkipCallIfNoTarget\":true,\"areRevealedOnDeath\":true,\"sheriff\":{\"isEnabled\":true,\"electedAt\":{\"turn\":756846683070177,\"phaseName\":\"twilight\"},\"hasDoubledVote\":true,\"mustSettleTieInVotes\":true},\"werewolf\":{\"canEatEachOther\":false},\"bigBadWolf\":{\"isPowerlessIfWerewolfDies\":false},\"whiteWerewolf\":{\"wakingUpInterval\":1},\"seer\":{\"isTalkative\":false,\"canSeeRoles\":false},\"cupid\":{\"lovers\":{\"doRevealRoleToEachOther\":false},\"mustWinWithLovers\":false},\"littleGirl\":{\"isProtectedByDefender\":false},\"defender\":{\"canProtectTwice\":false},\"elder\":{\"livesCountAgainstWerewolves\":4,\"doesTakeHisRevenge\":false},\"idiot\":{\"doesDieOnElderDeath\":true},\"twoSisters\":{\"wakingUpInterval\":5},\"threeBrothers\":{\"wakingUpInterval\":4},\"fox\":{\"isPowerlessIfMissesWerewolf\":false},\"bearTamer\":{\"doesGrowlOnWerewolvesSide\":true},\"stutteringJudge\":{\"voteRequestsCount\":4},\"wildChild\":{\"isTransformationRevealed\":true},\"wolfHound\":{\"isChosenSideRevealed\":false,\"isSideRandomlyChosen\":true},\"thief\":{\"mustChooseBetweenWerewolves\":true,\"isChosenCardRevealed\":false},\"piedPiper\":{\"charmedPeopleCountPerNight\":4,\"isPowerlessOnWerewolvesSide\":true,\"areCharmedPeopleRevealed\":false},\"scandalmonger\":{\"markPenalty\":1},\"witch\":{\"doesKnowWerewolvesTargets\":false},\"prejudicedManipulator\":{\"isPowerlessOnWerewolvesSide\":false},\"actor\":{\"isPowerlessOnWerewolvesSide\":true}}}}\",\n \"method\": \"POST\",\n },\n], but it was called with \"\"", @@ -170382,7 +170453,7 @@ } }, { - "id": "3880", + "id": "3881", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games\",\n Object {\n \"body\": \"{\"players\":[],\"options\":{\"composition\":{\"isHidden\":false},\"votes\":{\"canBeSkipped\":true,\"duration\":420},\"roles\":{\"doSkipCallIfNoTarget\":true,\"areRevealedOnDeath\":true,\"sheriff\":{\"isEnabled\":false,\"electedAt\":{\"turn\":2936676274768691,\"phaseName\":\"twilight\"},\"hasDoubledVote\":true,\"mustSettleTieInVotes\":false},\"werewolf\":{\"canEatEachOther\":true},\"bigBadWolf\":{\"isPowerlessIfWerewolfDies\":true},\"whiteWerewolf\":{\"wakingUpInterval\":2},\"seer\":{\"isTalkative\":true,\"canSeeRoles\":false},\"cupid\":{\"lovers\":{\"doRevealRoleToEachOther\":true},\"mustWinWithLovers\":true},\"littleGirl\":{\"isProtectedByDefender\":true},\"defender\":{\"canProtectTwice\":true},\"elder\":{\"livesCountAgainstWerewolves\":5,\"doesTakeHisRevenge\":true},\"idiot\":{\"doesDieOnElderDeath\":true},\"twoSisters\":{\"wakingUpInterval\":2},\"threeBrothers\":{\"wakingUpInterval\":4},\"fox\":{\"isPowerlessIfMissesWerewolf\":true},\"bearTamer\":{\"doesGrowlOnWerewolvesSide\":true},\"stutteringJudge\":{\"voteRequestsCount\":4},\"wildChild\":{\"isTransformationRevealed\":true},\"wolfHound\":{\"isChosenSideRevealed\":true,\"isSideRandomlyChosen\":false},\"thief\":{\"mustChooseBetweenWerewolves\":false,\"isChosenCardRevealed\":true},\"piedPiper\":{\"charmedPeopleCountPerNight\":2,\"isPowerlessOnWerewolvesSide\":true,\"areCharmedPeopleRevealed\":false},\"scandalmonger\":{\"markPenalty\":1},\"witch\":{\"doesKnowWerewolvesTargets\":false},\"prejudicedManipulator\":{\"isPowerlessOnWerewolvesSide\":false},\"actor\":{\"isPowerlessOnWerewolvesSide\":false}}}}\",\n \"method\": \"POST\",\n },\n], but it was called with \"/games\"", @@ -170408,7 +170479,7 @@ } }, { - "id": "3881", + "id": "3882", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games\",\n Object {\n \"body\": \"{\"players\":[],\"options\":{\"composition\":{\"isHidden\":true},\"votes\":{\"canBeSkipped\":true,\"duration\":529},\"roles\":{\"doSkipCallIfNoTarget\":false,\"areRevealedOnDeath\":true,\"sheriff\":{\"isEnabled\":false,\"electedAt\":{\"turn\":3894466569195703,\"phaseName\":\"twilight\"},\"hasDoubledVote\":false,\"mustSettleTieInVotes\":false},\"werewolf\":{\"canEatEachOther\":false},\"bigBadWolf\":{\"isPowerlessIfWerewolfDies\":true},\"whiteWerewolf\":{\"wakingUpInterval\":3},\"seer\":{\"isTalkative\":true,\"canSeeRoles\":false},\"cupid\":{\"lovers\":{\"doRevealRoleToEachOther\":false},\"mustWinWithLovers\":true},\"littleGirl\":{\"isProtectedByDefender\":true},\"defender\":{\"canProtectTwice\":false},\"elder\":{\"livesCountAgainstWerewolves\":2,\"doesTakeHisRevenge\":true},\"idiot\":{\"doesDieOnElderDeath\":false},\"twoSisters\":{\"wakingUpInterval\":3},\"threeBrothers\":{\"wakingUpInterval\":1},\"fox\":{\"isPowerlessIfMissesWerewolf\":false},\"bearTamer\":{\"doesGrowlOnWerewolvesSide\":true},\"stutteringJudge\":{\"voteRequestsCount\":2},\"wildChild\":{\"isTransformationRevealed\":true},\"wolfHound\":{\"isChosenSideRevealed\":true,\"isSideRandomlyChosen\":true},\"thief\":{\"mustChooseBetweenWerewolves\":false,\"isChosenCardRevealed\":false},\"piedPiper\":{\"charmedPeopleCountPerNight\":4,\"isPowerlessOnWerewolvesSide\":false,\"areCharmedPeopleRevealed\":true},\"scandalmonger\":{\"markPenalty\":5},\"witch\":{\"doesKnowWerewolvesTargets\":false},\"prejudicedManipulator\":{\"isPowerlessOnWerewolvesSide\":false},\"actor\":{\"isPowerlessOnWerewolvesSide\":false}}}}\",\n \"method\": \"POST\",\n },\n], but it was called with \"/games\"", @@ -170434,7 +170505,7 @@ } }, { - "id": "3882", + "id": "3883", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(18,60): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -170456,7 +170527,7 @@ } }, { - "id": "3883", + "id": "3884", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(29,43): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -170479,7 +170550,7 @@ } }, { - "id": "3884", + "id": "3885", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(29,43): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -170502,7 +170573,7 @@ } }, { - "id": "3885", + "id": "3886", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"\"", @@ -170528,7 +170599,7 @@ } }, { - "id": "3886", + "id": "3887", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"/games/game-id\"", @@ -170554,7 +170625,7 @@ } }, { - "id": "3887", + "id": "3888", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"/games/game-id\"", @@ -170580,7 +170651,7 @@ } }, { - "id": "3888", + "id": "3889", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(29,43): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -170602,7 +170673,7 @@ } }, { - "id": "3889", + "id": "3890", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(37,46): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -170625,7 +170696,7 @@ } }, { - "id": "3890", + "id": "3891", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(37,46): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -170648,7 +170719,7 @@ } }, { - "id": "3891", + "id": "3892", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id\",\n Object {\n \"method\": \"DELETE\",\n },\n], but it was called with \"\"", @@ -170674,7 +170745,7 @@ } }, { - "id": "3892", + "id": "3893", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id\",\n Object {\n \"method\": \"DELETE\",\n },\n], but it was called with \"/games/game-id\"", @@ -170700,7 +170771,7 @@ } }, { - "id": "3893", + "id": "3894", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id\",\n Object {\n \"method\": \"DELETE\",\n },\n], but it was called with \"/games/game-id\"", @@ -170726,7 +170797,7 @@ } }, { - "id": "3894", + "id": "3895", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(37,46): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -170748,7 +170819,7 @@ } }, { - "id": "3895", + "id": "3896", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(45,82): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -170771,7 +170842,7 @@ } }, { - "id": "3896", + "id": "3897", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(45,82): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -170794,7 +170865,7 @@ } }, { - "id": "3897", + "id": "3898", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id/play\",\n Object {\n \"body\": \"{}\",\n \"method\": \"POST\",\n },\n], but it was called with \"\"", @@ -170820,7 +170891,7 @@ } }, { - "id": "3898", + "id": "3899", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id/play\",\n Object {\n \"body\": \"{}\",\n \"method\": \"POST\",\n },\n], but it was called with \"/games/game-id/play\"", @@ -170846,7 +170917,7 @@ } }, { - "id": "3899", + "id": "3900", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id/play\",\n Object {\n \"body\": \"{}\",\n \"method\": \"POST\",\n },\n], but it was called with \"/games/game-id/play\"", @@ -170872,7 +170943,7 @@ } }, { - "id": "3900", + "id": "3901", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(45,82): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -170894,7 +170965,7 @@ } }, { - "id": "3901", + "id": "3902", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(56,100): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -170917,7 +170988,7 @@ } }, { - "id": "3902", + "id": "3903", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(56,100): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -170940,7 +171011,7 @@ } }, { - "id": "3903", + "id": "3904", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id/feedback\",\n Object {\n \"body\": \"{\"score\":1,\"hasEncounteredError\":false}\",\n \"method\": \"POST\",\n },\n], but it was called with \"\"", @@ -170966,7 +171037,7 @@ } }, { - "id": "3904", + "id": "3905", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id/feedback\",\n Object {\n \"body\": \"{\"score\":5,\"hasEncounteredError\":false}\",\n \"method\": \"POST\",\n },\n], but it was called with \"/games/game-id/feedback\"", @@ -170992,7 +171063,7 @@ } }, { - "id": "3905", + "id": "3906", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/game-id/feedback\",\n Object {\n \"body\": \"{\"score\":5,\"hasEncounteredError\":true}\",\n \"method\": \"POST\",\n },\n], but it was called with \"/games/game-id/feedback\"", @@ -171018,7 +171089,7 @@ } }, { - "id": "3906", + "id": "3907", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(56,100): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -171040,7 +171111,7 @@ } }, { - "id": "3907", + "id": "3908", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchGames.ts(66,3): error TS2739: Type '{}' is missing the following properties from type 'UseFetchGames': createGame, getGame, cancelGame, makeGamePlay, createGameFeedback\n", @@ -171708,11 +171779,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -171794,7 +171865,7 @@ "language": "typescript", "mutants": [ { - "id": "3908", + "id": "3909", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchRandomGameComposition.ts(18,43): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -171816,7 +171887,7 @@ } }, { - "id": "3909", + "id": "3910", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchRandomGameComposition.ts(21,84): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -171838,7 +171909,7 @@ } }, { - "id": "3910", + "id": "3911", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/random-composition?stringifiedQuery\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"\"", @@ -171863,7 +171934,7 @@ } }, { - "id": "3911", + "id": "3912", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/random-composition?stringifiedQuery\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"/games/random-composition?stringifiedQuery\"", @@ -171888,7 +171959,7 @@ } }, { - "id": "3912", + "id": "3913", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/games/random-composition?stringifiedQuery\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"/games/random-composition?stringifiedQuery\"", @@ -171913,7 +171984,7 @@ } }, { - "id": "3913", + "id": "3914", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/useFetchRandomGameComposition.ts(26,3): error TS2741: Property 'fetchRandomGameComposition' is missing in type '{}' but required in type 'UseFetchRandomGameComposition'.\n", @@ -171941,7 +172012,7 @@ "language": "typescript", "mutants": [ { - "id": "3914", + "id": "3915", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useGamePlayers.ts(12,43): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -171966,7 +172037,7 @@ } }, { - "id": "3915", + "id": "3916", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected undefined to strictly equal _Player{ …(7) }", @@ -171994,7 +172065,7 @@ } }, { - "id": "3916", + "id": "3917", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected undefined to strictly equal _Player{ …(7) }", @@ -172020,7 +172091,7 @@ } }, { - "id": "3917", + "id": "3918", "mutatorName": "MethodExpression", "replacement": "attributes.every(({\n name\n}) => name === \"sheriff\")", "statusReason": "expected _Player{ …(7) } to strictly equal _Player{ …(7) }", @@ -172046,7 +172117,7 @@ } }, { - "id": "3918", + "id": "3919", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected undefined to strictly equal _Player{ …(7) }", @@ -172072,7 +172143,7 @@ } }, { - "id": "3919", + "id": "3920", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected _Player{ …(7) } to be undefined", @@ -172098,7 +172169,7 @@ } }, { - "id": "3920", + "id": "3921", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected undefined to strictly equal _Player{ …(7) }", @@ -172124,7 +172195,7 @@ } }, { - "id": "3921", + "id": "3922", "mutatorName": "EqualityOperator", "replacement": "name !== \"sheriff\"", "statusReason": "expected _Player{ …(7) } to strictly equal _Player{ …(7) }", @@ -172150,7 +172221,7 @@ } }, { - "id": "3922", + "id": "3923", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useGamePlayers.ts(13,137): error TS2367: This comparison appears to be unintentional because the types '\"sheriff\" | \"seen\" | \"eaten\" | \"drank-life-potion\" | \"drank-death-potion\" | \"protected\" | \"scandalmonger-marked\" | \"in-love\" | \"worshiped\" | \"powerless\" | \"cant-vote\" | \"charmed\" | \"contaminated\" | \"stolen-role\" | \"acting\"' and '\"\"' have no overlap.\n", @@ -172173,7 +172244,7 @@ } }, { - "id": "3923", + "id": "3924", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useGamePlayers.ts(15,55): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -172196,7 +172267,7 @@ } }, { - "id": "3924", + "id": "3925", "mutatorName": "MethodExpression", "replacement": "game.value.players", "statusReason": "expected [ _Player{ …(7) }, …(3) ] to strictly equal [ _Player{ …(7) }, _Player{ …(7) } ]", @@ -172222,7 +172293,7 @@ } }, { - "id": "3925", + "id": "3926", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [] to strictly equal [ _Player{ …(7) }, _Player{ …(7) } ]", @@ -172248,7 +172319,7 @@ } }, { - "id": "3926", + "id": "3927", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ _Player{ …(7) }, …(3) ] to strictly equal [ _Player{ …(7) }, _Player{ …(7) } ]", @@ -172274,7 +172345,7 @@ } }, { - "id": "3927", + "id": "3928", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [] to strictly equal [ _Player{ …(7) }, _Player{ …(7) } ]", @@ -172300,7 +172371,7 @@ } }, { - "id": "3928", + "id": "3929", "mutatorName": "EqualityOperator", "replacement": "player.role.current !== role", "statusReason": "expected [ _Player{ …(7) }, _Player{ …(7) } ] to strictly equal [ _Player{ …(7) }, _Player{ …(7) } ]", @@ -172326,7 +172397,7 @@ } }, { - "id": "3929", + "id": "3930", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/useGamePlayers.ts(18,3): error TS2739: Type '{}' is missing the following properties from type 'UseGamePlayers': sheriffInPlayers, getPlayersWithCurrentRole\n", @@ -172357,7 +172428,7 @@ "language": "typescript", "mutants": [ { - "id": "3930", + "id": "3931", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useGameSource.ts(11,31): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -172385,7 +172456,7 @@ } }, { - "id": "3931", + "id": "3932", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useGameSource.ts(15,83): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -172413,7 +172484,7 @@ } }, { - "id": "3932", + "id": "3933", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Over History Record Source Component > should match snapshot when rendered. 1` mismatched", @@ -172444,7 +172515,7 @@ } }, { - "id": "3933", + "id": "3934", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'shared.role.definiteName.sheriff, 1' to be 'shared.game.player.attribute.definite…' // Object.is equality", @@ -172475,7 +172546,7 @@ } }, { - "id": "3934", + "id": "3935", "mutatorName": "EqualityOperator", "replacement": "gameSource !== \"sheriff\"", "statusReason": "Snapshot `Game Over History Record Source Component > should match snapshot when rendered. 1` mismatched", @@ -172506,7 +172577,7 @@ } }, { - "id": "3935", + "id": "3936", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useGameSource.ts(16,9): error TS2367: This comparison appears to be unintentional because the types '\"werewolf\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | \"villager\" | \"villager-villager\" | \"seer\" | \"cupid\" | \"witch\" | \"hunter\" | \"little-girl\" | \"defender\" | ... 23 more ... | \"lovers\"' and '\"\"' have no overlap.\n", @@ -172534,7 +172605,7 @@ } }, { - "id": "3936", + "id": "3937", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 'shared.role.definiteName.sheriff, 1' to be 'shared.game.player.attribute.definite…' // Object.is equality", @@ -172559,7 +172630,7 @@ } }, { - "id": "3937", + "id": "3938", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected ', 1' to be 'shared.game.player.attribute.definite…' // Object.is equality", @@ -172584,7 +172655,7 @@ } }, { - "id": "3938", + "id": "3939", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'shared.game.player.group.definiteName…' to be 'shared.role.definiteName.werewolf, 1' // Object.is equality", @@ -172615,7 +172686,7 @@ } }, { - "id": "3939", + "id": "3940", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Over History Record Source Component > should match snapshot when rendered. 1` mismatched", @@ -172646,7 +172717,7 @@ } }, { - "id": "3940", + "id": "3941", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Game Over History Record Source Component > should match snapshot when rendered. 1` mismatched", @@ -172676,7 +172747,7 @@ } }, { - "id": "3941", + "id": "3942", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "Snapshot `Game Over History Record Source Component > should match snapshot when rendered. 1` mismatched", @@ -172706,7 +172777,7 @@ } }, { - "id": "3942", + "id": "3943", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/useGameSource.ts(24,3): error TS2741: Property 'getDefiniteGameSourceNameLabel' is missing in type '{}' but required in type 'UseGameSourceName'.\n", @@ -172740,7 +172811,7 @@ "language": "typescript", "mutants": [ { - "id": "3943", + "id": "3944", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(15,96): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -172799,7 +172870,7 @@ } }, { - "id": "3944", + "id": "3945", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(16,63): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -172834,7 +172905,7 @@ } }, { - "id": "3945", + "id": "3946", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(20,29): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(26,12): error TS18048: 'votes' is possibly 'undefined'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(26,28): error TS18048: 'voteInteraction' is possibly 'undefined'.\n", @@ -172869,7 +172940,7 @@ } }, { - "id": "3946", + "id": "3947", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(20,29): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(26,12): error TS18048: 'votes' is possibly 'undefined'.\n", @@ -172904,7 +172975,7 @@ } }, { - "id": "3947", + "id": "3948", "mutatorName": "LogicalOperator", "replacement": "game.value.currentPlay?.type !== \"vote\" && makeGamePlayDto.value.votes === undefined", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(20,29): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(26,12): error TS18048: 'votes' is possibly 'undefined'.\n", @@ -172939,7 +173010,7 @@ } }, { - "id": "3948", + "id": "3949", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(20,29): error TS18047: 'game.value.currentPlay' is possibly 'null'.\n", @@ -172974,7 +173045,7 @@ } }, { - "id": "3949", + "id": "3950", "mutatorName": "EqualityOperator", "replacement": "game.value.currentPlay?.type === \"vote\"", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(20,29): error TS18047: 'game.value.currentPlay' is possibly 'null'.\n", @@ -173009,7 +173080,7 @@ } }, { - "id": "3950", + "id": "3951", "mutatorName": "OptionalChaining", "replacement": "game.value.currentPlay.type", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(17,9): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(20,29): error TS18047: 'game.value.currentPlay' is possibly 'null'.\n", @@ -173044,7 +173115,7 @@ } }, { - "id": "3951", + "id": "3952", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(17,9): error TS2367: This comparison appears to be unintentional because the types '\"no-action\" | \"vote\" | \"target\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\" | undefined' and '\"\"' have no overlap.\n", @@ -173078,8 +173149,62 @@ } } }, + { + "id": "3953", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(26,12): error TS18048: 'votes' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "229", + "230", + "231", + "232", + "233", + "249" + ], + "location": { + "end": { + "column": 93, + "line": 17 + }, + "start": { + "column": 52, + "line": 17 + } + } + }, { "id": "3954", + "mutatorName": "EqualityOperator", + "replacement": "makeGamePlayDto.value.votes !== undefined", + "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(26,12): error TS18048: 'votes' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "229", + "230", + "231", + "232", + "233", + "249" + ], + "location": { + "end": { + "column": 93, + "line": 17 + }, + "start": { + "column": 52, + "line": 17 + } + } + }, + { + "id": "3955", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(18,29): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(24,12): error TS18048: 'votes' is possibly 'undefined'.\n", @@ -173110,7 +173235,7 @@ } }, { - "id": "3955", + "id": "3956", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -173144,7 +173269,7 @@ } }, { - "id": "3956", + "id": "3957", "mutatorName": "OptionalChaining", "replacement": "game.value.currentPlay.source.interactions[0]", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(20,29): error TS18048: 'game.value.currentPlay.source.interactions' is possibly 'undefined'.\n", @@ -173170,7 +173295,7 @@ } }, { - "id": "3957", + "id": "3958", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(26,12): error TS18048: 'votes' is possibly 'undefined'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(26,28): error TS18048: 'voteInteraction' is possibly 'undefined'.\n", @@ -173196,7 +173321,7 @@ } }, { - "id": "3958", + "id": "3959", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(26,28): error TS18048: 'voteInteraction' is possibly 'undefined'.\n", @@ -173222,7 +173347,7 @@ } }, { - "id": "3959", + "id": "3960", "mutatorName": "EqualityOperator", "replacement": "voteInteraction !== undefined", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(26,28): error TS18048: 'voteInteraction' is possibly 'undefined'.\n", @@ -173248,7 +173373,7 @@ } }, { - "id": "3960", + "id": "3961", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(24,28): error TS18048: 'voteInteraction' is possibly 'undefined'.\n", @@ -173270,7 +173395,7 @@ } }, { - "id": "3961", + "id": "3962", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -173295,7 +173420,7 @@ } }, { - "id": "3962", + "id": "3963", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -173323,7 +173448,7 @@ } }, { - "id": "3963", + "id": "3964", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -173351,7 +173476,7 @@ } }, { - "id": "3964", + "id": "3965", "mutatorName": "EqualityOperator", "replacement": "votes.length > voteInteraction.boundaries.min", "statusReason": "expected false to be true // Object.is equality", @@ -173379,7 +173504,7 @@ } }, { - "id": "3965", + "id": "3966", "mutatorName": "EqualityOperator", "replacement": "votes.length < voteInteraction.boundaries.min", "statusReason": "expected true to be false // Object.is equality", @@ -173407,7 +173532,7 @@ } }, { - "id": "3966", + "id": "3967", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(29,65): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -173442,7 +173567,7 @@ } }, { - "id": "3967", + "id": "3968", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(34,31): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(40,30): error TS18048: 'targetInteraction' is possibly 'undefined'.\n", @@ -173477,7 +173602,7 @@ } }, { - "id": "3968", + "id": "3969", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(34,31): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\n", @@ -173512,7 +173637,7 @@ } }, { - "id": "3969", + "id": "3970", "mutatorName": "LogicalOperator", "replacement": "game.value.currentPlay?.type !== \"target\" && makeGamePlayDto.value.targets === undefined", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(34,31): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\n", @@ -173547,7 +173672,7 @@ } }, { - "id": "3970", + "id": "3971", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(34,31): error TS18047: 'game.value.currentPlay' is possibly 'null'.\n", @@ -173582,7 +173707,7 @@ } }, { - "id": "3971", + "id": "3972", "mutatorName": "EqualityOperator", "replacement": "game.value.currentPlay?.type === \"target\"", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(34,31): error TS18047: 'game.value.currentPlay' is possibly 'null'.\n", @@ -173617,7 +173742,7 @@ } }, { - "id": "3972", + "id": "3973", "mutatorName": "OptionalChaining", "replacement": "game.value.currentPlay.type", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(30,9): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(34,31): error TS18047: 'game.value.currentPlay' is possibly 'null'.\n", @@ -173652,7 +173777,7 @@ } }, { - "id": "3973", + "id": "3974", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(30,9): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"no-action\" | \"target\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\" | undefined' and '\"\"' have no overlap.\n", @@ -173687,7 +173812,7 @@ } }, { - "id": "3974", + "id": "3975", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\n", @@ -173714,7 +173839,7 @@ } }, { - "id": "3975", + "id": "3976", "mutatorName": "EqualityOperator", "replacement": "makeGamePlayDto.value.targets !== undefined", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\n", @@ -173741,7 +173866,7 @@ } }, { - "id": "3976", + "id": "3977", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(32,31): error TS18047: 'game.value.currentPlay' is possibly 'null'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(38,12): error TS18048: 'targets' is possibly 'undefined'.\n", @@ -173772,7 +173897,7 @@ } }, { - "id": "3977", + "id": "3978", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "Snapshot `Game Playground Footer Make Play Button Component > should match snapshot when rendered. 1` mismatched", @@ -173806,7 +173931,7 @@ } }, { - "id": "3978", + "id": "3979", "mutatorName": "OptionalChaining", "replacement": "game.value.currentPlay.source.interactions[0]", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(34,31): error TS18048: 'game.value.currentPlay.source.interactions' is possibly 'undefined'.\n", @@ -173832,7 +173957,7 @@ } }, { - "id": "3979", + "id": "3980", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\napp/composables/api/game/useMakeGamePlayDtoValidation.ts(40,30): error TS18048: 'targetInteraction' is possibly 'undefined'.\n", @@ -173858,7 +173983,7 @@ } }, { - "id": "3980", + "id": "3981", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(40,30): error TS18048: 'targetInteraction' is possibly 'undefined'.\n", @@ -173884,7 +174009,7 @@ } }, { - "id": "3981", + "id": "3982", "mutatorName": "EqualityOperator", "replacement": "targetInteraction !== undefined", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(40,30): error TS18048: 'targetInteraction' is possibly 'undefined'.\n", @@ -173910,7 +174035,7 @@ } }, { - "id": "3982", + "id": "3983", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(38,30): error TS18048: 'targetInteraction' is possibly 'undefined'.\n", @@ -173932,7 +174057,7 @@ } }, { - "id": "3983", + "id": "3984", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -173957,7 +174082,7 @@ } }, { - "id": "3984", + "id": "3985", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -173985,7 +174110,7 @@ } }, { - "id": "3985", + "id": "3986", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -174013,7 +174138,7 @@ } }, { - "id": "3986", + "id": "3987", "mutatorName": "EqualityOperator", "replacement": "targets.length > targetInteraction.boundaries.min", "statusReason": "expected false to be true // Object.is equality", @@ -174041,7 +174166,7 @@ } }, { - "id": "3987", + "id": "3988", "mutatorName": "EqualityOperator", "replacement": "targets.length < targetInteraction.boundaries.min", "statusReason": "expected true to be false // Object.is equality", @@ -174069,7 +174194,7 @@ } }, { - "id": "3988", + "id": "3989", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(43,51): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -174128,7 +174253,7 @@ } }, { - "id": "3989", + "id": "3990", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Playground Footer Make Play Button Component > should match snapshot when rendered. 1` mismatched", @@ -174163,7 +174288,7 @@ } }, { - "id": "3990", + "id": "3991", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -174198,7 +174323,7 @@ } }, { - "id": "3991", + "id": "3992", "mutatorName": "LogicalOperator", "replacement": "game.value.currentPlay?.type === \"choose-card\" || makeGamePlayDto.value.chosenCardId !== undefined", "statusReason": "expected true to be false // Object.is equality", @@ -174233,7 +174358,7 @@ } }, { - "id": "3992", + "id": "3993", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -174268,7 +174393,7 @@ } }, { - "id": "3993", + "id": "3994", "mutatorName": "EqualityOperator", "replacement": "game.value.currentPlay?.type !== \"choose-card\"", "statusReason": "expected true to be false // Object.is equality", @@ -174303,7 +174428,7 @@ } }, { - "id": "3994", + "id": "3995", "mutatorName": "OptionalChaining", "replacement": "game.value.currentPlay.type", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(43,75): error TS18047: 'game.value.currentPlay' is possibly 'null'.\n", @@ -174335,7 +174460,7 @@ } }, { - "id": "3995", + "id": "3996", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(43,75): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"no-action\" | \"target\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\" | undefined' and '\"\"' have no overlap.\n", @@ -174367,7 +174492,7 @@ } }, { - "id": "3996", + "id": "3997", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -174381,8 +174506,8 @@ "241", "242", "249", - "589", - "590" + "585", + "586" ], "location": { "end": { @@ -174396,7 +174521,7 @@ } }, { - "id": "3997", + "id": "3998", "mutatorName": "EqualityOperator", "replacement": "makeGamePlayDto.value.chosenCardId === undefined", "statusReason": "expected true to be false // Object.is equality", @@ -174410,8 +174535,8 @@ "241", "242", "249", - "589", - "590" + "585", + "586" ], "location": { "end": { @@ -174425,7 +174550,7 @@ } }, { - "id": "3998", + "id": "3999", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(45,51): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -174484,7 +174609,7 @@ } }, { - "id": "3999", + "id": "4000", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -174519,7 +174644,7 @@ } }, { - "id": "4000", + "id": "4001", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -174554,7 +174679,7 @@ } }, { - "id": "4001", + "id": "4002", "mutatorName": "LogicalOperator", "replacement": "game.value.currentPlay?.type === \"choose-side\" || makeGamePlayDto.value.chosenSide !== undefined", "statusReason": "expected true to be false // Object.is equality", @@ -174589,7 +174714,7 @@ } }, { - "id": "4002", + "id": "4003", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -174624,7 +174749,7 @@ } }, { - "id": "4003", + "id": "4004", "mutatorName": "EqualityOperator", "replacement": "game.value.currentPlay?.type !== \"choose-side\"", "statusReason": "expected true to be false // Object.is equality", @@ -174659,7 +174784,7 @@ } }, { - "id": "4004", + "id": "4005", "mutatorName": "OptionalChaining", "replacement": "game.value.currentPlay.type", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(45,75): error TS18047: 'game.value.currentPlay' is possibly 'null'.\n", @@ -174691,7 +174816,7 @@ } }, { - "id": "4005", + "id": "4006", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(45,75): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"no-action\" | \"target\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\" | undefined' and '\"\"' have no overlap.\n", @@ -174723,7 +174848,7 @@ } }, { - "id": "4006", + "id": "4007", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -174737,7 +174862,9 @@ "244", "245", "249", - "250" + "250", + "589", + "590" ], "location": { "end": { @@ -174751,7 +174878,7 @@ } }, { - "id": "4007", + "id": "4008", "mutatorName": "EqualityOperator", "replacement": "makeGamePlayDto.value.chosenSide === undefined", "statusReason": "expected true to be false // Object.is equality", @@ -174765,7 +174892,9 @@ "244", "245", "249", - "250" + "250", + "589", + "590" ], "location": { "end": { @@ -174779,7 +174908,7 @@ } }, { - "id": "4008", + "id": "4009", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(47,35): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -174838,7 +174967,7 @@ } }, { - "id": "4009", + "id": "4010", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be falsy", @@ -174882,7 +175011,7 @@ } }, { - "id": "4010", + "id": "4011", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be truthy", @@ -174926,7 +175055,7 @@ } }, { - "id": "4011", + "id": "4012", "mutatorName": "EqualityOperator", "replacement": "game.value.currentPlay?.canBeSkipped !== true", "statusReason": "expected true to be falsy", @@ -174970,7 +175099,7 @@ } }, { - "id": "4012", + "id": "4013", "mutatorName": "OptionalChaining", "replacement": "game.value.currentPlay.canBeSkipped", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(47,59): error TS18047: 'game.value.currentPlay' is possibly 'null'.\n", @@ -175011,7 +175140,7 @@ } }, { - "id": "4013", + "id": "4014", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expected true to be falsy", @@ -175055,7 +175184,7 @@ } }, { - "id": "4014", + "id": "4015", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(49,27): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -175114,7 +175243,7 @@ } }, { - "id": "4015", + "id": "4016", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Playground Footer Make Play Button Component > should match snapshot when rendered. 1` mismatched", @@ -175156,7 +175285,7 @@ } }, { - "id": "4016", + "id": "4017", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'true' to be 'false' // Object.is equality", @@ -175198,7 +175327,7 @@ } }, { - "id": "4017", + "id": "4018", "mutatorName": "LogicalOperator", "replacement": "(canCurrentPlayBeSkipped.value || isCurrentGamePlayVoteTypeAndValid.value || isCurrentGamePlayTargetTypeAndValid.value || isCurrentGamePlayChooseCardTypeAndValid.value) && isCurrentGamePlayChooseSideTypeAndValid.value", "statusReason": "expected false to be true // Object.is equality", @@ -175240,7 +175369,7 @@ } }, { - "id": "4018", + "id": "4019", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'true' to be 'false' // Object.is equality", @@ -175282,7 +175411,7 @@ } }, { - "id": "4019", + "id": "4020", "mutatorName": "LogicalOperator", "replacement": "(canCurrentPlayBeSkipped.value || isCurrentGamePlayVoteTypeAndValid.value || isCurrentGamePlayTargetTypeAndValid.value) && isCurrentGamePlayChooseCardTypeAndValid.value", "statusReason": "expected false to be true // Object.is equality", @@ -175324,7 +175453,7 @@ } }, { - "id": "4020", + "id": "4021", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'true' to be 'false' // Object.is equality", @@ -175366,7 +175495,7 @@ } }, { - "id": "4021", + "id": "4022", "mutatorName": "LogicalOperator", "replacement": "(canCurrentPlayBeSkipped.value || isCurrentGamePlayVoteTypeAndValid.value) && isCurrentGamePlayTargetTypeAndValid.value", "statusReason": "expected false to be true // Object.is equality", @@ -175408,7 +175537,7 @@ } }, { - "id": "4022", + "id": "4023", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected 'true' to be 'false' // Object.is equality", @@ -175450,7 +175579,7 @@ } }, { - "id": "4023", + "id": "4024", "mutatorName": "LogicalOperator", "replacement": "canCurrentPlayBeSkipped.value && isCurrentGamePlayVoteTypeAndValid.value", "statusReason": "expected false to be true // Object.is equality", @@ -175492,7 +175621,7 @@ } }, { - "id": "4024", + "id": "4025", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(55,3): error TS2740: Type '{}' is missing the following properties from type 'UseMakeGamePlayDtoValidation': isCurrentGamePlayVoteTypeAndValid, isCurrentGamePlayTargetTypeAndValid, isCurrentGamePlayChooseCardTypeAndValid, isCurrentGamePlayChooseSideTypeAndValid, and 2 more.\n", @@ -175549,62 +175678,6 @@ "line": 55 } } - }, - { - "id": "3953", - "mutatorName": "EqualityOperator", - "replacement": "makeGamePlayDto.value.votes !== undefined", - "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(26,12): error TS18048: 'votes' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "coveredBy": [ - "229", - "230", - "231", - "232", - "233", - "249", - "586", - "587" - ], - "location": { - "end": { - "column": 93, - "line": 17 - }, - "start": { - "column": 52, - "line": 17 - } - } - }, - { - "id": "3952", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(26,12): error TS18048: 'votes' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "coveredBy": [ - "229", - "230", - "231", - "232", - "233", - "249", - "586", - "587" - ], - "location": { - "end": { - "column": 93, - "line": 17 - }, - "start": { - "column": 52, - "line": 17 - } - } } ], "source": "import type { ComputedRef, Ref } from \"vue\";\n\nimport type { MakeGamePlayDto } from \"~/composables/api/game/dto/make-game-play/make-game-play.dto\";\nimport type { Game } from \"~/composables/api/game/types/game.class\";\n\ntype UseMakeGamePlayDtoValidation = {\n isCurrentGamePlayVoteTypeAndValid: ComputedRef;\n isCurrentGamePlayTargetTypeAndValid: ComputedRef;\n isCurrentGamePlayChooseCardTypeAndValid: ComputedRef;\n isCurrentGamePlayChooseSideTypeAndValid: ComputedRef;\n canCurrentPlayBeSkipped: ComputedRef;\n canMakeGamePlay: ComputedRef;\n};\n\nfunction useMakeGamePlayDtoValidation(makeGamePlayDto: Ref, game: Ref): UseMakeGamePlayDtoValidation {\n const isCurrentGamePlayVoteTypeAndValid = computed(() => {\n if (game.value.currentPlay?.type !== \"vote\" || makeGamePlayDto.value.votes === undefined) {\n return false;\n }\n const voteInteraction = game.value.currentPlay.source.interactions?.[0];\n if (voteInteraction === undefined) {\n return false;\n }\n const { votes } = makeGamePlayDto.value;\n\n return votes.length >= voteInteraction.boundaries.min;\n });\n\n const isCurrentGamePlayTargetTypeAndValid = computed(() => {\n if (game.value.currentPlay?.type !== \"target\" || makeGamePlayDto.value.targets === undefined) {\n return false;\n }\n\n const targetInteraction = game.value.currentPlay.source.interactions?.[0];\n if (targetInteraction === undefined) {\n return false;\n }\n const { targets } = makeGamePlayDto.value;\n\n return targets.length >= targetInteraction.boundaries.min;\n });\n\n const isCurrentGamePlayChooseCardTypeAndValid = computed(() => game.value.currentPlay?.type === \"choose-card\" && makeGamePlayDto.value.chosenCardId !== undefined);\n\n const isCurrentGamePlayChooseSideTypeAndValid = computed(() => game.value.currentPlay?.type === \"choose-side\" && makeGamePlayDto.value.chosenSide !== undefined);\n\n const canCurrentPlayBeSkipped = computed(() => game.value.currentPlay?.canBeSkipped === true);\n\n const canMakeGamePlay = computed(() => canCurrentPlayBeSkipped.value ||\n isCurrentGamePlayVoteTypeAndValid.value ||\n isCurrentGamePlayTargetTypeAndValid.value ||\n isCurrentGamePlayChooseCardTypeAndValid.value ||\n isCurrentGamePlayChooseSideTypeAndValid.value);\n\n return {\n isCurrentGamePlayVoteTypeAndValid,\n isCurrentGamePlayTargetTypeAndValid,\n isCurrentGamePlayChooseCardTypeAndValid,\n isCurrentGamePlayChooseSideTypeAndValid,\n canCurrentPlayBeSkipped,\n canMakeGamePlay,\n };\n}\n\nexport { useMakeGamePlayDtoValidation };" @@ -175613,7 +175686,7 @@ "language": "typescript", "mutants": [ { - "id": "4025", + "id": "4026", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/role/types/role.class.ts(32,37): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -175682,7 +175755,7 @@ "language": "typescript", "mutants": [ { - "id": "4026", + "id": "4027", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/role/useFetchRoles.ts(8,27): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -176362,7 +176435,7 @@ } }, { - "id": "4027", + "id": "4028", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/role/useFetchRoles.ts(11,32): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -176385,7 +176458,7 @@ } }, { - "id": "4028", + "id": "4029", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/role/useFetchRoles.ts(11,32): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -176408,7 +176481,7 @@ } }, { - "id": "4029", + "id": "4030", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/roles\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"\"", @@ -176434,7 +176507,7 @@ } }, { - "id": "4030", + "id": "4031", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/roles\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"/roles\"", @@ -176460,7 +176533,7 @@ } }, { - "id": "4031", + "id": "4032", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/roles\",\n Object {\n \"method\": \"GET\",\n },\n], but it was called with \"/roles\"", @@ -176486,7 +176559,7 @@ } }, { - "id": "4032", + "id": "4033", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/role/useFetchRoles.ts(11,32): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", @@ -176508,7 +176581,7 @@ } }, { - "id": "4033", + "id": "4034", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/role/useFetchRoles.ts(18,3): error TS2741: Property 'fetchRoles' is missing in type '{}' but required in type 'UseFetchRoles'.\n", @@ -177194,7 +177267,7 @@ "language": "typescript", "mutants": [ { - "id": "4034", + "id": "4035", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/role/useRoleName.ts(8,25): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -177292,12 +177365,12 @@ "1836", "1837", "1838", - "1949", - "1950", - "1951", - "1952", - "1953", - "1954", + "1942", + "1943", + "1944", + "1945", + "1946", + "1947", "2084", "2085", "2123", @@ -177317,7 +177390,7 @@ } }, { - "id": "4035", + "id": "4036", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/role/useRoleName.ts(11,50): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -177376,12 +177449,12 @@ "1836", "1837", "1838", - "1949", - "1950", - "1951", - "1952", - "1953", - "1954", + "1942", + "1943", + "1944", + "1945", + "1946", + "1947", "2084", "2085", "2168" @@ -177398,7 +177471,7 @@ } }, { - "id": "4036", + "id": "4037", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected [ { roleName: 'seer', …(2) }, …(2) ] to strictly equal [ { …(3) }, …(2) ]", @@ -177460,12 +177533,12 @@ "1836", "1837", "1838", - "1949", - "1950", - "1951", - "1952", - "1953", - "1954", + "1942", + "1943", + "1944", + "1945", + "1946", + "1947", "2084", "2085", "2168" @@ -177482,7 +177555,7 @@ } }, { - "id": "4037", + "id": "4038", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/role/useRoleName.ts(15,73): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -177536,7 +177609,7 @@ } }, { - "id": "4038", + "id": "4039", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"components.GameLobbyRolePickerFooter.roleAdditionalCardRemovedForRecipient, {\"roleName\":\"shared.role.definiteName.werewolf, 1\",\"recipient\":\"shared.role.definiteName.thief, 1\"}\",\n \"life\": 5000,\n \"summary\": \"components.GameLobbyRolePickerFooter.additionalCardRemoved\",\n },\n], but it was called with Object {\n \"detail\": \"components.GameLobbyRolePickerFooter.roleAdditionalCardRemovedForRecipient, {\"roleName\":\", 1\",\"recipient\":\", 1\"}\",\n \"life\": 5000,\n \"summary\": \"components.GameLobbyRolePickerFooter.additionalCardRemoved\",\n}", @@ -177593,7 +177666,7 @@ } }, { - "id": "4039", + "id": "4040", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/role/useRoleName.ts(18,3): error TS2739: Type '{}' is missing the following properties from type 'UseRoleName': getRoleNameLabel, getDefiniteRoleNameLabel\n", @@ -177691,12 +177764,12 @@ "1836", "1837", "1838", - "1949", - "1950", - "1951", - "1952", - "1953", - "1954", + "1942", + "1943", + "1944", + "1945", + "1946", + "1947", "2084", "2085", "2123", @@ -177722,7 +177795,7 @@ "language": "typescript", "mutants": [ { - "id": "4040", + "id": "4041", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/api/useWerewolvesAssistantApi.ts(10,39): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -179090,7 +179163,7 @@ } }, { - "id": "4041", + "id": "4042", "mutatorName": "ObjectLiteral", "replacement": "{}", "status": "Timeout", @@ -180457,7 +180530,7 @@ } }, { - "id": "4042", + "id": "4043", "mutatorName": "ObjectLiteral", "replacement": "{}", "status": "Timeout", @@ -181824,7 +181897,7 @@ } }, { - "id": "4043", + "id": "4044", "mutatorName": "StringLiteral", "replacement": "\"\"", "status": "Timeout", @@ -183191,7 +183264,7 @@ } }, { - "id": "4044", + "id": "4045", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/useWerewolvesAssistantApi.ts(21,3): error TS2741: Property 'fetchWerewolvesAssistantApi' is missing in type '{}' but required in type 'UseWerewolvesAssistantApi'.\n", @@ -184565,7 +184638,7 @@ "language": "typescript", "mutants": [ { - "id": "4045", + "id": "4046", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/misc/useArrays.ts(5,23): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -184660,7 +184733,7 @@ } }, { - "id": "4046", + "id": "4047", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/misc/useArrays.ts(6,60): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -184755,7 +184828,7 @@ } }, { - "id": "4047", + "id": "4048", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "Snapshot `Game Starts Event Component > should match snapshot when rendered. 1` mismatched", @@ -184813,7 +184886,7 @@ } }, { - "id": "4048", + "id": "4049", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/composables/misc/useArrays.ts(7,5): error TS2322: Type 'string[] | T[]' is not assignable to type 'T[]'.\n Type 'string[]' is not assignable to type 'T[]'.\n Type 'string' is not assignable to type 'T'.\n 'T' could be instantiated with an arbitrary type which could be unrelated to 'string'.\n", @@ -184895,7 +184968,7 @@ } }, { - "id": "4049", + "id": "4050", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/misc/useArrays.ts(9,3): error TS2741: Property 'insertIf' is missing in type '{}' but required in type 'UseArrays'.\n", @@ -184996,7 +185069,7 @@ "language": "typescript", "mutants": [ { - "id": "4050", + "id": "4051", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/misc/useDevice.ts(7,23): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -185021,7 +185094,7 @@ } }, { - "id": "4051", + "id": "4052", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/misc/useDevice.ts(8,45): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -185046,7 +185119,7 @@ } }, { - "id": "4052", + "id": "4053", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected false to be truthy", @@ -185074,7 +185147,7 @@ } }, { - "id": "4053", + "id": "4054", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Cannot use 'in' operator to search for 'ontouchstart' in undefined", @@ -185102,7 +185175,7 @@ } }, { - "id": "4054", + "id": "4055", "mutatorName": "EqualityOperator", "replacement": "typeof window !== \"undefined\"", "statusReason": "expected false to be truthy", @@ -185130,7 +185203,7 @@ } }, { - "id": "4055", + "id": "4056", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/misc/useDevice.ts(9,9): error TS2367: This comparison appears to be unintentional because the types '\"string\" | \"number\" | \"bigint\" | \"boolean\" | \"symbol\" | \"undefined\" | \"object\" | \"function\"' and '\"\"' have no overlap.\n", @@ -185155,7 +185228,7 @@ } }, { - "id": "4056", + "id": "4057", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Cannot use 'in' operator to search for 'ontouchstart' in undefined", @@ -185180,7 +185253,7 @@ } }, { - "id": "4057", + "id": "4058", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected true to be falsy", @@ -185205,7 +185278,7 @@ } }, { - "id": "4058", + "id": "4059", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be falsy", @@ -185232,7 +185305,7 @@ } }, { - "id": "4059", + "id": "4060", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be truthy", @@ -185259,7 +185332,7 @@ } }, { - "id": "4060", + "id": "4061", "mutatorName": "LogicalOperator", "replacement": "\"ontouchstart\" in window && navigator.maxTouchPoints > 0", "statusReason": "expected false to be truthy", @@ -185286,7 +185359,7 @@ } }, { - "id": "4061", + "id": "4062", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected false to be truthy", @@ -185313,7 +185386,7 @@ } }, { - "id": "4062", + "id": "4063", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be truthy", @@ -185339,7 +185412,7 @@ } }, { - "id": "4063", + "id": "4064", "mutatorName": "EqualityOperator", "replacement": "navigator.maxTouchPoints >= 0", "statusReason": "expected true to be falsy", @@ -185365,7 +185438,7 @@ } }, { - "id": "4064", + "id": "4065", "mutatorName": "EqualityOperator", "replacement": "navigator.maxTouchPoints <= 0", "statusReason": "expected false to be truthy", @@ -185391,7 +185464,7 @@ } }, { - "id": "4065", + "id": "4066", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/misc/useDevice.ts(15,3): error TS2741: Property 'isOnTouchDevice' is missing in type '{}' but required in type 'UseDevice'.\n", @@ -185422,7 +185495,7 @@ "language": "typescript", "mutants": [ { - "id": "4066", + "id": "4067", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/misc/useStrings.ts(6,24): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -185772,7 +185845,7 @@ } }, { - "id": "4067", + "id": "4068", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/misc/useStrings.ts(7,63): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -186039,7 +186112,7 @@ } }, { - "id": "4068", + "id": "4069", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/misc/useStrings.ts(8,5): error TS2322: Type '\"no\" | \"\"' is not assignable to type '\"yes\" | \"no\"'.\n Type '\"\"' is not assignable to type '\"yes\" | \"no\"'.\n", @@ -186305,7 +186378,7 @@ } }, { - "id": "4069", + "id": "4070", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/misc/useStrings.ts(8,5): error TS2322: Type '\"\" | \"yes\"' is not assignable to type '\"yes\" | \"no\"'.\n Type '\"\"' is not assignable to type '\"yes\" | \"no\"'.\n", @@ -186571,7 +186644,7 @@ } }, { - "id": "4070", + "id": "4071", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/misc/useStrings.ts(11,49): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -186624,7 +186697,7 @@ } }, { - "id": "4071", + "id": "4072", "mutatorName": "ArithmeticOperator", "replacement": "value.charAt(0).toLowerCase() - value.slice(1)", "statusReason": "app/composables/misc/useStrings.ts(12,5): error TS2322: Type 'number' is not assignable to type 'string'.\napp/composables/misc/useStrings.ts(12,12): error TS2362: The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.\napp/composables/misc/useStrings.ts(12,44): error TS2363: The right-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.\n", @@ -186677,7 +186750,7 @@ } }, { - "id": "4072", + "id": "4073", "mutatorName": "MethodExpression", "replacement": "value.charAt(0).toUpperCase()", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"components.GameLobbyRolePickerFooter.roleAdditionalCardRemovedForRecipient, {\"roleName\":\"shared.role.definiteName.werewolf, 1\",\"recipient\":\"shared.role.definiteName.thief, 1\"}\",\n \"life\": 5000,\n \"summary\": \"components.GameLobbyRolePickerFooter.additionalCardRemoved\",\n },\n], but it was called with Object {\n \"detail\": \"components.GameLobbyRolePickerFooter.roleAdditionalCardRemovedForRecipient, {\"roleName\":\"Shared.role.definiteName.werewolf, 1\",\"recipient\":\"Shared.role.definiteName.thief, 1\"}\",\n \"life\": 5000,\n \"summary\": \"components.GameLobbyRolePickerFooter.additionalCardRemoved\",\n}", @@ -186733,7 +186806,7 @@ } }, { - "id": "4073", + "id": "4074", "mutatorName": "MethodExpression", "replacement": "value", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"components.GameLobbyRolePickerFooter.roleAdditionalCardRemovedForRecipient, {\"roleName\":\"shared.role.definiteName.werewolf, 1\",\"recipient\":\"shared.role.definiteName.thief, 1\"}\",\n \"life\": 5000,\n \"summary\": \"components.GameLobbyRolePickerFooter.additionalCardRemoved\",\n },\n], but it was called with Object {\n \"detail\": \"components.GameLobbyRolePickerFooter.roleAdditionalCardRemovedForRecipient, {\"roleName\":\"shared.role.definitename.werewolf, 1hared.role.definiteName.werewolf, 1\",\"recipient\":\"shared.role.definitename.thief, 1hared.role.definiteName.thief, 1\"}\",\n \"life\": 5000,\n \"summary\": \"components.GameLobbyRolePickerFooter.additionalCardRemoved\",\n}", @@ -186789,7 +186862,7 @@ } }, { - "id": "4074", + "id": "4075", "mutatorName": "MethodExpression", "replacement": "value", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"components.GameLobbyRolePickerFooter.roleAdditionalCardRemovedForRecipient, {\"roleName\":\"shared.role.definiteName.werewolf, 1\",\"recipient\":\"shared.role.definiteName.thief, 1\"}\",\n \"life\": 5000,\n \"summary\": \"components.GameLobbyRolePickerFooter.additionalCardRemoved\",\n },\n], but it was called with Object {\n \"detail\": \"components.GameLobbyRolePickerFooter.roleAdditionalCardRemovedForRecipient, {\"roleName\":\"sshared.role.definiteName.werewolf, 1\",\"recipient\":\"sshared.role.definiteName.thief, 1\"}\",\n \"life\": 5000,\n \"summary\": \"components.GameLobbyRolePickerFooter.additionalCardRemoved\",\n}", @@ -186845,7 +186918,7 @@ } }, { - "id": "4075", + "id": "4076", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/misc/useStrings.ts(14,3): error TS2739: Type '{}' is missing the following properties from type 'UseStrings': convertBooleanAsAffirmativeString, lowerCaseFirstLetter\n", @@ -187201,7 +187274,7 @@ "language": "typescript", "mutants": [ { - "id": "4076", + "id": "4077", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/misc/useTimers.ts(5,23): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -187499,7 +187572,7 @@ } }, { - "id": "4077", + "id": "4078", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/misc/useTimers.ts(9,55): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -187767,7 +187840,7 @@ } }, { - "id": "4078", + "id": "4079", "mutatorName": "ArithmeticOperator", "replacement": "seconds * secondsInOneMinute", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -188038,7 +188111,7 @@ } }, { - "id": "4079", + "id": "4080", "mutatorName": "ArithmeticOperator", "replacement": "seconds * secondsInOneMinute", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -188309,7 +188382,7 @@ } }, { - "id": "4080", + "id": "4081", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -188580,7 +188653,7 @@ } }, { - "id": "4081", + "id": "4082", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -188851,7 +188924,7 @@ } }, { - "id": "4082", + "id": "4083", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Changed Game Options List Component > should match snapshot when rendered. 1` mismatched", @@ -189122,7 +189195,7 @@ } }, { - "id": "4083", + "id": "4084", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Game Options Changed Component > should match snapshot when rendered without shallow rendering. 1` mismatched", @@ -189393,7 +189466,7 @@ } }, { - "id": "4084", + "id": "4085", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -189664,7 +189737,7 @@ } }, { - "id": "4085", + "id": "4086", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Changed Game Options List Component > should match snapshot when rendered. 1` mismatched", @@ -189935,7 +190008,7 @@ } }, { - "id": "4086", + "id": "4087", "mutatorName": "EqualityOperator", "replacement": "minutes !== 0", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -190206,7 +190279,7 @@ } }, { - "id": "4087", + "id": "4088", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Changed Game Options List Component > should match snapshot when rendered. 1` mismatched", @@ -190247,7 +190320,7 @@ } }, { - "id": "4088", + "id": "4089", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'shared.time.minute, {\"count\":1}, 1' to be 'shared.time.minute, {\"count\":1}, 1 sh…' // Object.is equality", @@ -190502,7 +190575,7 @@ } }, { - "id": "4089", + "id": "4090", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -190757,7 +190830,7 @@ } }, { - "id": "4090", + "id": "4091", "mutatorName": "EqualityOperator", "replacement": "remainingSeconds !== 0", "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", @@ -191012,7 +191085,7 @@ } }, { - "id": "4091", + "id": "4092", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected { …(3) } to strictly equal { …(3) }", @@ -191266,7 +191339,7 @@ } }, { - "id": "4092", + "id": "4093", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected '' to be 'shared.time.minute, {\"count\":1}, 1 sh…' // Object.is equality", @@ -191291,7 +191364,7 @@ } }, { - "id": "4093", + "id": "4094", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected 'shared.time.minute, {\"count\":1}, 1 s…' to be 'shared.time.minute, {\"count\":1}, 1 sh…' // Object.is equality", @@ -191316,7 +191389,7 @@ } }, { - "id": "4094", + "id": "4095", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/misc/useTimers.ts(23,3): error TS2741: Property 'getSecondsInMinutesLabel' is missing in type '{}' but required in type 'UseTimers'.\n", @@ -191620,7 +191693,7 @@ "language": "typescript", "mutants": [ { - "id": "4095", + "id": "4096", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/prime-vue/usePrimeVueToasts.ts(14,31): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -192904,7 +192977,7 @@ } }, { - "id": "4096", + "id": "4097", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -192933,7 +193006,7 @@ } }, { - "id": "4097", + "id": "4098", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"closable\": true,\n \"detail\": \"detail\",\n \"life\": 4000,\n \"summary\": \"summary\",\n },\n], but it was called with Object {}", @@ -192962,7 +193035,7 @@ } }, { - "id": "4098", + "id": "4099", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -192987,7 +193060,7 @@ } }, { - "id": "4099", + "id": "4100", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"closable\": true,\n \"detail\": \"detail\",\n \"life\": 4000,\n \"severity\": \"success\",\n \"summary\": \"summary\",\n },\n], but it was called with Object {\n \"closable\": true,\n \"life\": 4000,\n}", @@ -193012,7 +193085,7 @@ } }, { - "id": "4100", + "id": "4101", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/prime-vue/usePrimeVueToasts.ts(25,16): error TS2322: Type '\"\"' is not assignable to type '\"success\" | \"info\" | \"warn\" | \"error\" | \"secondary\" | \"contrast\" | undefined'.\n", @@ -193034,7 +193107,7 @@ } }, { - "id": "4101", + "id": "4102", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -193059,7 +193132,7 @@ } }, { - "id": "4102", + "id": "4103", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"closable\": true,\n \"detail\": \"detail\",\n \"life\": 4000,\n \"severity\": \"info\",\n \"summary\": \"summary\",\n },\n], but it was called with Object {\n \"closable\": true,\n \"life\": 4000,\n}", @@ -193084,7 +193157,7 @@ } }, { - "id": "4103", + "id": "4104", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/prime-vue/usePrimeVueToasts.ts(29,16): error TS2322: Type '\"\"' is not assignable to type '\"success\" | \"info\" | \"warn\" | \"error\" | \"secondary\" | \"contrast\" | undefined'.\n", @@ -193106,7 +193179,7 @@ } }, { - "id": "4104", + "id": "4105", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -193131,7 +193204,7 @@ } }, { - "id": "4105", + "id": "4106", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"closable\": true,\n \"detail\": \"detail\",\n \"life\": 4000,\n \"severity\": \"warn\",\n \"summary\": \"summary\",\n },\n], but it was called with Object {\n \"closable\": true,\n \"life\": 4000,\n}", @@ -193156,7 +193229,7 @@ } }, { - "id": "4106", + "id": "4107", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/prime-vue/usePrimeVueToasts.ts(33,16): error TS2322: Type '\"\"' is not assignable to type '\"success\" | \"info\" | \"warn\" | \"error\" | \"secondary\" | \"contrast\" | undefined'.\n", @@ -193178,7 +193251,7 @@ } }, { - "id": "4107", + "id": "4108", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -193203,7 +193276,7 @@ } }, { - "id": "4108", + "id": "4109", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"closable\": true,\n \"detail\": \"detail\",\n \"life\": 4000,\n \"severity\": \"error\",\n \"summary\": \"summary\",\n },\n], but it was called with Object {\n \"closable\": true,\n \"life\": 4000,\n}", @@ -193228,7 +193301,7 @@ } }, { - "id": "4109", + "id": "4110", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/composables/prime-vue/usePrimeVueToasts.ts(37,16): error TS2322: Type '\"\"' is not assignable to type '\"success\" | \"info\" | \"warn\" | \"error\" | \"secondary\" | \"contrast\" | undefined'.\n", @@ -193250,7 +193323,7 @@ } }, { - "id": "4110", + "id": "4111", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/prime-vue/usePrimeVueToasts.ts(39,3): error TS2739: Type '{}' is missing the following properties from type 'UsePrimeVueToasts': addToast, addSuccessToast, addInfoToast, addWarnToast, addErrorToast\n", @@ -194540,7 +194613,7 @@ "language": "typescript", "mutants": [ { - "id": "4111", + "id": "4112", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/composables/route/useWerewolvesAssistantRoutes.ts(7,42): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -194564,7 +194637,7 @@ } }, { - "id": "4112", + "id": "4113", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/composables/route/useWerewolvesAssistantRoutes.ts(9,24): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -194588,7 +194661,7 @@ } }, { - "id": "4113", + "id": "4114", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `App Component > should render component without shallow and match snapshot when rendered. 1` mismatched", @@ -194615,7 +194688,7 @@ } }, { - "id": "4114", + "id": "4115", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be truthy", @@ -194641,35 +194714,35 @@ } } }, - { - "id": "4115", - "mutatorName": "EqualityOperator", - "replacement": "route.name !== \"game-id\"", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "2170" - ], - "coveredBy": [ - "2076", - "2170", - "2171" - ], - "location": { - "end": { - "column": 72, - "line": 9 - }, - "start": { - "column": 48, - "line": 9 - } - } - }, { "id": "4116", + "mutatorName": "EqualityOperator", + "replacement": "route.name !== \"game-id\"", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "2170" + ], + "coveredBy": [ + "2076", + "2170", + "2171" + ], + "location": { + "end": { + "column": 72, + "line": 9 + }, + "start": { + "column": 48, + "line": 9 + } + } + }, + { + "id": "4117", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected false to be truthy", @@ -194696,7 +194769,7 @@ } }, { - "id": "4117", + "id": "4118", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/route/useWerewolvesAssistantRoutes.ts(11,3): error TS2741: Property 'isOnGamePage' is missing in type '{}' but required in type 'UseWerewolvesAssistantRoutes'.\n", @@ -194726,7 +194799,7 @@ "language": "html", "mutants": [ { - "id": "4118", + "id": "4119", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -194757,7 +194830,7 @@ } }, { - "id": "4119", + "id": "4120", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -194788,7 +194861,7 @@ } }, { - "id": "4120", + "id": "4121", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'components.Error.pageNotFound' to be 'components.Error.unexpectedError' // Object.is equality", @@ -194819,7 +194892,7 @@ } }, { - "id": "4121", + "id": "4122", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -194850,7 +194923,7 @@ } }, { - "id": "4122", + "id": "4123", "mutatorName": "EqualityOperator", "replacement": "props.error.statusCode !== notFoundStatusCode", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -194881,7 +194954,7 @@ } }, { - "id": "4123", + "id": "4124", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -194912,7 +194985,7 @@ } }, { - "id": "4124", + "id": "4125", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -194943,7 +195016,7 @@ } }, { - "id": "4125", + "id": "4126", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'components.Error.unexpectedError' // Object.is equality", @@ -194969,7 +195042,7 @@ } }, { - "id": "4126", + "id": "4127", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected \"spy\" to be called with arguments: [ ObjectContaining{…} ]\n\nReceived: \n\n 1st spy call:\n\n Array [\n- ObjectContaining {\n- \"title\": ObjectContaining {\n- \"value\": \"components.Error.pageNotFound\",\n- },\n- },\n+ Object {},\n ]\n\n\nNumber of calls: 1\n", @@ -195000,7 +195073,7 @@ } }, { - "id": "4127", + "id": "4128", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -195031,7 +195104,7 @@ } }, { - "id": "4128", + "id": "4129", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected 'components.Error.youAreLost' to be 'components.Error.notNormalTeamNotified' // Object.is equality", @@ -195062,7 +195135,7 @@ } }, { - "id": "4129", + "id": "4130", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -195093,7 +195166,7 @@ } }, { - "id": "4130", + "id": "4131", "mutatorName": "EqualityOperator", "replacement": "props.error.statusCode !== notFoundStatusCode", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -195124,7 +195197,7 @@ } }, { - "id": "4131", + "id": "4132", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -195155,7 +195228,7 @@ } }, { - "id": "4132", + "id": "4133", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", @@ -195186,7 +195259,7 @@ } }, { - "id": "4133", + "id": "4134", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'components.Error.notNormalTeamNotified' // Object.is equality", @@ -195218,7 +195291,7 @@ "language": "html", "mutants": [ { - "id": "4134", + "id": "4135", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.about.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.about.whyAnAssistant\",\n },\n], but it was called with Object {}", @@ -195246,7 +195319,7 @@ } }, { - "id": "4135", + "id": "4136", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.about.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.about.whyAnAssistant\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.about.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"\",\n}", @@ -195274,7 +195347,7 @@ } }, { - "id": "4136", + "id": "4137", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.about.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.about.whyAnAssistant\",\n },\n], but it was called with Object {\n \"meta\": Array [],\n \"title\": \"pages.about.whyAnAssistant\",\n}", @@ -195302,7 +195375,7 @@ } }, { - "id": "4137", + "id": "4138", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.about.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.about.whyAnAssistant\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {},\n ],\n \"title\": \"pages.about.whyAnAssistant\",\n}", @@ -195330,7 +195403,7 @@ } }, { - "id": "4138", + "id": "4139", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.about.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.about.whyAnAssistant\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.about.seoDescription\",\n \"name\": \"\",\n },\n ],\n \"title\": \"pages.about.whyAnAssistant\",\n}", @@ -195358,7 +195431,7 @@ } }, { - "id": "4139", + "id": "4140", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.about.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.about.whyAnAssistant\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {\n \"content\": \"\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.about.whyAnAssistant\",\n}", @@ -195392,7 +195465,7 @@ "language": "html", "mutants": [ { - "id": "4140", + "id": "4141", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"noindex, nofollow\",\n \"name\": \"robots\",\n },\n ],\n \"title\": \"pages.game.playingGame\",\n },\n], but it was called with Object {}", @@ -195430,7 +195503,7 @@ } }, { - "id": "4141", + "id": "4142", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"noindex, nofollow\",\n \"name\": \"robots\",\n },\n ],\n \"title\": \"pages.game.playingGame\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {\n \"content\": \"noindex, nofollow\",\n \"name\": \"robots\",\n },\n ],\n \"title\": \"\",\n}", @@ -195468,7 +195541,7 @@ } }, { - "id": "4142", + "id": "4143", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"noindex, nofollow\",\n \"name\": \"robots\",\n },\n ],\n \"title\": \"pages.game.playingGame\",\n },\n], but it was called with Object {\n \"meta\": Array [],\n \"title\": \"pages.game.playingGame\",\n}", @@ -195506,7 +195579,7 @@ } }, { - "id": "4143", + "id": "4144", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"noindex, nofollow\",\n \"name\": \"robots\",\n },\n ],\n \"title\": \"pages.game.playingGame\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {},\n ],\n \"title\": \"pages.game.playingGame\",\n}", @@ -195544,7 +195617,7 @@ } }, { - "id": "4144", + "id": "4145", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"noindex, nofollow\",\n \"name\": \"robots\",\n },\n ],\n \"title\": \"pages.game.playingGame\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {\n \"content\": \"noindex, nofollow\",\n \"name\": \"\",\n },\n ],\n \"title\": \"pages.game.playingGame\",\n}", @@ -195582,7 +195655,7 @@ } }, { - "id": "4145", + "id": "4146", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"noindex, nofollow\",\n \"name\": \"robots\",\n },\n ],\n \"title\": \"pages.game.playingGame\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {\n \"content\": \"\",\n \"name\": \"robots\",\n },\n ],\n \"title\": \"pages.game.playingGame\",\n}", @@ -195620,7 +195693,7 @@ } }, { - "id": "4146", + "id": "4147", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected false to be truthy", @@ -195658,7 +195731,7 @@ } }, { - "id": "4147", + "id": "4148", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expected false to be truthy", @@ -195696,7 +195769,7 @@ } }, { - "id": "4148", + "id": "4149", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -195722,7 +195795,7 @@ } }, { - "id": "4149", + "id": "4150", "mutatorName": "BooleanLiteral", "replacement": "gameFeedbackSubmitter.value", "statusReason": "Mocked error", @@ -195748,7 +195821,7 @@ } }, { - "id": "4150", + "id": "4151", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Mocked error", @@ -195774,7 +195847,7 @@ } }, { - "id": "4151", + "id": "4152", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -195800,7 +195873,7 @@ } }, { - "id": "4152", + "id": "4153", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -195825,7 +195898,7 @@ } }, { - "id": "4153", + "id": "4154", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Feedback Submitter is not defined\",\n], but it was called with \"\"", @@ -195856,7 +195929,7 @@ "language": "html", "mutants": [ { - "id": "4154", + "id": "4155", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.gameLobby.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.gameLobby.startGame\",\n },\n], but it was called with Object {}", @@ -195912,7 +195985,7 @@ } }, { - "id": "4155", + "id": "4156", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.gameLobby.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.gameLobby.startGame\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.gameLobby.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"\",\n}", @@ -195968,7 +196041,7 @@ } }, { - "id": "4156", + "id": "4157", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.gameLobby.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.gameLobby.startGame\",\n },\n], but it was called with Object {\n \"meta\": Array [],\n \"title\": \"pages.gameLobby.startGame\",\n}", @@ -196024,7 +196097,7 @@ } }, { - "id": "4157", + "id": "4158", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.gameLobby.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.gameLobby.startGame\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {},\n ],\n \"title\": \"pages.gameLobby.startGame\",\n}", @@ -196080,7 +196153,7 @@ } }, { - "id": "4158", + "id": "4159", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.gameLobby.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.gameLobby.startGame\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.gameLobby.seoDescription\",\n \"name\": \"\",\n },\n ],\n \"title\": \"pages.gameLobby.startGame\",\n}", @@ -196136,7 +196209,7 @@ } }, { - "id": "4159", + "id": "4160", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"meta\": Array [\n Object {\n \"content\": \"pages.gameLobby.seoDescription\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.gameLobby.startGame\",\n },\n], but it was called with Object {\n \"meta\": Array [\n Object {\n \"content\": \"\",\n \"name\": \"description\",\n },\n ],\n \"title\": \"pages.gameLobby.startGame\",\n}", @@ -196192,7 +196265,7 @@ } }, { - "id": "4160", + "id": "4161", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196219,7 +196292,7 @@ } }, { - "id": "4161", + "id": "4162", "mutatorName": "BooleanLiteral", "replacement": "gameLobbyRolePicker.value", "statusReason": "Mocked error", @@ -196246,7 +196319,7 @@ } }, { - "id": "4162", + "id": "4163", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Mocked error", @@ -196273,7 +196346,7 @@ } }, { - "id": "4163", + "id": "4164", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196300,7 +196373,7 @@ } }, { - "id": "4164", + "id": "4165", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196325,7 +196398,7 @@ } }, { - "id": "4165", + "id": "4166", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Role Picker is not defined\",\n], but it was called with \"\"", @@ -196350,7 +196423,7 @@ } }, { - "id": "4166", + "id": "4167", "mutatorName": "BooleanLiteral", "replacement": "player", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196376,7 +196449,7 @@ } }, { - "id": "4167", + "id": "4168", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196402,7 +196475,7 @@ } }, { - "id": "4168", + "id": "4169", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected \"spy\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st spy call:\n\n Array [\n undefined,\n ]\n\n\nNumber of calls: 1\n", @@ -196428,7 +196501,7 @@ } }, { - "id": "4169", + "id": "4170", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected \"spy\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st spy call:\n\n Array [\n undefined,\n ]\n\n\nNumber of calls: 1\n", @@ -196453,7 +196526,7 @@ } }, { - "id": "4170", + "id": "4171", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196480,7 +196553,7 @@ } }, { - "id": "4171", + "id": "4172", "mutatorName": "BooleanLiteral", "replacement": "gameLobbyOptionsHub.value", "statusReason": "Mocked error", @@ -196507,7 +196580,7 @@ } }, { - "id": "4172", + "id": "4173", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Mocked error", @@ -196534,7 +196607,7 @@ } }, { - "id": "4173", + "id": "4174", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196561,7 +196634,7 @@ } }, { - "id": "4174", + "id": "4175", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196586,7 +196659,7 @@ } }, { - "id": "4175", + "id": "4176", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Options Hub is not defined\",\n], but it was called with \"\"", @@ -196611,7 +196684,7 @@ } }, { - "id": "4176", + "id": "4177", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196638,7 +196711,7 @@ } }, { - "id": "4177", + "id": "4178", "mutatorName": "BooleanLiteral", "replacement": "gameLobbyPositionCoordinator.value", "statusReason": "Mocked error", @@ -196665,7 +196738,7 @@ } }, { - "id": "4178", + "id": "4179", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Mocked error", @@ -196692,7 +196765,7 @@ } }, { - "id": "4179", + "id": "4180", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196719,7 +196792,7 @@ } }, { - "id": "4180", + "id": "4181", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196744,7 +196817,7 @@ } }, { - "id": "4181", + "id": "4182", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Position Coordinator is not defined\",\n], but it was called with \"\"", @@ -196769,7 +196842,7 @@ } }, { - "id": "4182", + "id": "4183", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196797,7 +196870,7 @@ } }, { - "id": "4183", + "id": "4184", "mutatorName": "BooleanLiteral", "replacement": "gameLobbyAdditionalCardsManager.value", "statusReason": "Mocked error", @@ -196825,7 +196898,7 @@ } }, { - "id": "4184", + "id": "4185", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Mocked error", @@ -196853,7 +196926,7 @@ } }, { - "id": "4185", + "id": "4186", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196881,7 +196954,7 @@ } }, { - "id": "4186", + "id": "4187", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196906,7 +196979,7 @@ } }, { - "id": "4187", + "id": "4188", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Additional Cards Manager is not defined\",\n], but it was called with \"\"", @@ -196931,7 +197004,7 @@ } }, { - "id": "4188", + "id": "4189", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -196957,7 +197030,7 @@ } }, { - "id": "4189", + "id": "4190", "mutatorName": "BooleanLiteral", "replacement": "gameLobbyGroupOrganizer.value", "statusReason": "Mocked error", @@ -196983,7 +197056,7 @@ } }, { - "id": "4190", + "id": "4191", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Mocked error", @@ -197009,7 +197082,7 @@ } }, { - "id": "4191", + "id": "4192", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197035,7 +197108,7 @@ } }, { - "id": "4192", + "id": "4193", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197060,7 +197133,7 @@ } }, { - "id": "4193", + "id": "4194", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Group Organizer is not defined\",\n], but it was called with \"\"", @@ -197085,7 +197158,7 @@ } }, { - "id": "4194", + "id": "4195", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197112,7 +197185,7 @@ } }, { - "id": "4195", + "id": "4196", "mutatorName": "BooleanLiteral", "replacement": "gameLobbyHeader.value", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197139,7 +197212,7 @@ } }, { - "id": "4196", + "id": "4197", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Mocked error", @@ -197166,7 +197239,7 @@ } }, { - "id": "4197", + "id": "4198", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197193,7 +197266,7 @@ } }, { - "id": "4198", + "id": "4199", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197218,7 +197291,7 @@ } }, { - "id": "4199", + "id": "4200", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Header is not defined\",\n], but it was called with \"\"", @@ -197243,7 +197316,7 @@ } }, { - "id": "4200", + "id": "4201", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197268,7 +197341,7 @@ } }, { - "id": "4201", + "id": "4202", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197297,7 +197370,7 @@ } }, { - "id": "4202", + "id": "4203", "mutatorName": "BooleanLiteral", "replacement": "gameLobbyHeader.value", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197326,7 +197399,7 @@ } }, { - "id": "4203", + "id": "4204", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Mocked error", @@ -197355,7 +197428,7 @@ } }, { - "id": "4204", + "id": "4205", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197384,7 +197457,7 @@ } }, { - "id": "4205", + "id": "4206", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197410,7 +197483,7 @@ } }, { - "id": "4206", + "id": "4207", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Header is not defined\",\n], but it was called with \"\"", @@ -197436,7 +197509,7 @@ } }, { - "id": "4207", + "id": "4208", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197462,7 +197535,7 @@ } }, { - "id": "4208", + "id": "4209", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197489,7 +197562,7 @@ } }, { - "id": "4209", + "id": "4210", "mutatorName": "BooleanLiteral", "replacement": "gameLobbyHeader.value", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197516,7 +197589,7 @@ } }, { - "id": "4210", + "id": "4211", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Mocked error", @@ -197543,7 +197616,7 @@ } }, { - "id": "4211", + "id": "4212", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197570,7 +197643,7 @@ } }, { - "id": "4212", + "id": "4213", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197595,7 +197668,7 @@ } }, { - "id": "4213", + "id": "4214", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Header is not defined\",\n], but it was called with \"\"", @@ -197620,7 +197693,7 @@ } }, { - "id": "4214", + "id": "4215", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197645,7 +197718,7 @@ } }, { - "id": "4215", + "id": "4216", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197701,7 +197774,7 @@ } }, { - "id": "4216", + "id": "4217", "mutatorName": "BooleanLiteral", "replacement": "Object.hasOwn(query, \"playerNames\")", "statusReason": "Hook timed out in 10000ms.\nIf this is a long-running hook, pass a timeout value as the last argument or configure it globally with \"hookTimeout\".", @@ -197757,7 +197830,7 @@ } }, { - "id": "4217", + "id": "4218", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197813,7 +197886,7 @@ } }, { - "id": "4218", + "id": "4219", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Hook timed out in 10000ms.\nIf this is a long-running hook, pass a timeout value as the last argument or configure it globally with \"hookTimeout\".", @@ -197869,7 +197942,7 @@ } }, { - "id": "4219", + "id": "4220", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -197925,7 +197998,7 @@ } }, { - "id": "4220", + "id": "4221", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Hook timed out in 10000ms.\nIf this is a long-running hook, pass a timeout value as the last argument or configure it globally with \"hookTimeout\".", @@ -197981,7 +198054,7 @@ } }, { - "id": "4221", + "id": "4222", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Array [\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Antoine\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Benoit\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Corentin\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ],\n], but it was called with Array [\n undefined,\n undefined,\n undefined,\n]", @@ -198006,7 +198079,7 @@ } }, { - "id": "4222", + "id": "4223", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Array [\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Antoine\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Benoit\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Corentin\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ],\n], but it was called with Array [\n Object {},\n Object {},\n Object {},\n]", @@ -198031,7 +198104,7 @@ } }, { - "id": "4223", + "id": "4224", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -198057,7 +198130,7 @@ } }, { - "id": "4224", + "id": "4225", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"pages.gameLobby.smallScreenWarning\",\n \"life\": 7500,\n \"summary\": \"pages.gameLobby.smallScreenDetected\",\n },\n], but it was called with Object {}", @@ -198083,7 +198156,7 @@ } }, { - "id": "4225", + "id": "4226", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"pages.gameLobby.smallScreenWarning\",\n \"life\": 7500,\n \"summary\": \"pages.gameLobby.smallScreenDetected\",\n },\n], but it was called with Object {\n \"detail\": \"pages.gameLobby.smallScreenWarning\",\n \"life\": 7500,\n \"summary\": \"\",\n}", @@ -198109,7 +198182,7 @@ } }, { - "id": "4226", + "id": "4227", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"detail\": \"pages.gameLobby.smallScreenWarning\",\n \"life\": 7500,\n \"summary\": \"pages.gameLobby.smallScreenDetected\",\n },\n], but it was called with Object {\n \"detail\": \"\",\n \"life\": 7500,\n \"summary\": \"pages.gameLobby.smallScreenDetected\",\n}", @@ -198135,7 +198208,7 @@ } }, { - "id": "4227", + "id": "4228", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -198191,7 +198264,7 @@ } }, { - "id": "4228", + "id": "4229", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 4 times", @@ -198247,7 +198320,7 @@ } }, { - "id": "4229", + "id": "4230", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -198303,7 +198376,7 @@ } }, { - "id": "4230", + "id": "4231", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -198329,7 +198402,7 @@ } }, { - "id": "4231", + "id": "4232", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -198361,7 +198434,7 @@ "language": "html", "mutants": [ { - "id": "4232", + "id": "4233", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "The macro definePageMeta from Nuxt is breaking Stryker, so we ignore it.", @@ -198379,7 +198452,7 @@ } }, { - "id": "4233", + "id": "4234", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "The macro definePageMeta from Nuxt is breaking Stryker, so we ignore it.", @@ -198403,7 +198476,7 @@ "language": "typescript", "mutants": [ { - "id": "4234", + "id": "4235", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198422,7 +198495,7 @@ } }, { - "id": "4235", + "id": "4236", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198447,7 +198520,7 @@ "language": "typescript", "mutants": [ { - "id": "4236", + "id": "4237", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198466,7 +198539,7 @@ } }, { - "id": "4237", + "id": "4238", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198491,7 +198564,7 @@ "language": "typescript", "mutants": [ { - "id": "4238", + "id": "4239", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198510,7 +198583,7 @@ } }, { - "id": "4239", + "id": "4240", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198535,7 +198608,7 @@ "language": "typescript", "mutants": [ { - "id": "4240", + "id": "4241", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198554,7 +198627,7 @@ } }, { - "id": "4241", + "id": "4242", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198573,7 +198646,7 @@ } }, { - "id": "4242", + "id": "4243", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198598,7 +198671,7 @@ "language": "typescript", "mutants": [ { - "id": "4243", + "id": "4244", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198617,7 +198690,7 @@ } }, { - "id": "4244", + "id": "4245", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", @@ -198642,7 +198715,7 @@ "language": "typescript", "mutants": [ { - "id": "4245", + "id": "4246", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "tests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(135,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(144,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(153,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(162,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(174,25): error TS2339: Property 'toggleMute' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameBearGrowlsOrSleepsEvent/GameBearGrowlsOrSleepsEvent.nuxt.spec.ts(52,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameBearGrowlsOrSleepsEvent/GameBearGrowlsOrSleepsEvent.nuxt.spec.ts(66,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameCupidHasCharmedEvent/GameCupidHasCharmedEvent.nuxt.spec.ts(65,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMayHaveMarkedEvent/GameScandalmongerMayHaveMarkedEvent.nuxt.spec.ts(64,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMayHaveMarkedEvent/GameScandalmongerMayHaveMarkedEvent.nuxt.spec.ts(70,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent.nuxt.spec.ts(36,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameActorTurnStartsEvent/GameActorTurnStartsEvent.nuxt.spec.ts(36,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameFoxTurnStartsEvent/GameFoxTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameHunterTurnStartsEvent/GameHunterTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GamePiedPiperTurnStartsEvent/GamePiedPiperTurnStartsEvent.nuxt.spec.ts(43,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScandalmongerTurnStartsEvent/GameScandalmongerTurnStartsEvent.nuxt.spec.ts(43,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScapegoatTurnStartsEvent/GameScapegoatTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameStutteringJudgeTurnStartsEvent/GameStutteringJudgeTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWildChildTurnStartsEvent/GameWildChildTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(74,15): error TS2339: Property 'playingBackgroundAudioName' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(80,15): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(86,15): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(92,15): error TS2339: Property 'isMuted' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(101,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(102,18): error TS2339: Property 'setHowlerAudioSettingsFromAudioStoreState' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(110,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(110,29): error TS2339: Property 'loadSoundEffects' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(114,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(121,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(121,33): error TS2339: Property 'loadBackgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(125,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(132,15): error TS2339: Property 'loadAllAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(133,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(133,33): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(137,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(140,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(147,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(147,29): error TS2339: Property 'playSoundEffect' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(157,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(157,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(161,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(167,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(167,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(168,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(176,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(176,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(177,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(187,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(187,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(195,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(195,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(203,15): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(207,30): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(218,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(219,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(226,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(227,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(229,83): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(234,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(236,83): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(241,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(242,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(243,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(250,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(251,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(252,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(259,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(260,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(262,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(271,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(274,25): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(279,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(287,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(290,25): error TS2339: Property 'audioSettingsFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(297,15): error TS2339: Property 'toggleMute' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(298,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(301,25): error TS2339: Property 'isMuted' does not exist on type 'Store'.\n", @@ -198970,11 +199043,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -199062,7 +199135,7 @@ } }, { - "id": "4246", + "id": "4247", "mutatorName": "MethodExpression", "replacement": "Object.keys(backgroundAudios)", "statusReason": "app/stores/audio/useAudioStore.ts(91,25): error TS2345: Argument of type 'string' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -199390,11 +199463,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -199482,7 +199555,7 @@ } }, { - "id": "4247", + "id": "4248", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/audio/useAudioStore.ts(91,25): error TS2345: Argument of type 'string' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -199810,11 +199883,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -199902,7 +199975,7 @@ } }, { - "id": "4248", + "id": "4249", "mutatorName": "MethodExpression", "replacement": "name.endsWith(\"night-\")", "statusReason": "expected [] to strictly equal [ 'night-1', 'night-2', 'night-3' ]", @@ -200233,11 +200306,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -200325,7 +200398,7 @@ } }, { - "id": "4249", + "id": "4250", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ 'day-1', 'day-2', 'night-1', …(2) ] to strictly equal [ 'night-1', 'night-2', 'night-3' ]", @@ -200656,11 +200729,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -200748,7 +200821,7 @@ } }, { - "id": "4250", + "id": "4251", "mutatorName": "MethodExpression", "replacement": "Object.keys(backgroundAudios)", "statusReason": "app/stores/audio/useAudioStore.ts(91,25): error TS2345: Argument of type 'string' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -201076,11 +201149,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -201168,7 +201241,7 @@ } }, { - "id": "4251", + "id": "4252", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/audio/useAudioStore.ts(91,25): error TS2345: Argument of type 'string' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -201496,11 +201569,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -201588,7 +201661,7 @@ } }, { - "id": "4252", + "id": "4253", "mutatorName": "MethodExpression", "replacement": "name.endsWith(\"day-\")", "statusReason": "expected [] to strictly equal [ 'day-1', 'day-2' ]", @@ -201919,11 +201992,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -202011,7 +202084,7 @@ } }, { - "id": "4253", + "id": "4254", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected [ 'day-1', 'day-2', 'night-1', …(2) ] to strictly equal [ 'day-1', 'day-2' ]", @@ -202342,11 +202415,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -202434,7 +202507,7 @@ } }, { - "id": "4254", + "id": "4255", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/audio/useAudioStore.ts(27,53): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -202762,11 +202835,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -202854,7 +202927,7 @@ } }, { - "id": "4255", + "id": "4256", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/audio/useAudioStore.ts(28,21): error TS2345: Argument of type '{}' is not assignable to parameter of type 'HowlOptions'.\n Property 'src' is missing in type '{}' but required in type 'HowlOptions'.\n", @@ -203182,11 +203255,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -203274,7 +203347,7 @@ } }, { - "id": "4256", + "id": "4257", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected 1st \"spy\" call to have been called with [ { preload: false, …(1) } ]", @@ -203605,11 +203678,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -203697,7 +203770,7 @@ } }, { - "id": "4257", + "id": "4258", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "expected 1st \"spy\" call to have been called with [ { preload: false, …(1) } ]", @@ -204028,11 +204101,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -204120,7 +204193,7 @@ } }, { - "id": "4258", + "id": "4259", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected 1st \"spy\" call to have been called with [ { preload: false, …(1) } ]", @@ -204451,11 +204524,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -204543,7 +204616,7 @@ } }, { - "id": "4259", + "id": "4260", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/audio/useAudioStore.ts(34,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -204871,11 +204944,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -204963,7 +205036,7 @@ } }, { - "id": "4260", + "id": "4261", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/audio/useAudioStore.ts(35,21): error TS2345: Argument of type '{}' is not assignable to parameter of type 'HowlOptions'.\n Property 'src' is missing in type '{}' but required in type 'HowlOptions'.\n", @@ -205291,11 +205364,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -205383,7 +205456,7 @@ } }, { - "id": "4261", + "id": "4262", "mutatorName": "BooleanLiteral", "replacement": "true", "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", @@ -205714,11 +205787,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -205806,7 +205879,7 @@ } }, { - "id": "4262", + "id": "4263", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", @@ -206137,11 +206210,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -206229,7 +206302,7 @@ } }, { - "id": "4263", + "id": "4264", "mutatorName": "StringLiteral", "replacement": "``", "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", @@ -206560,11 +206633,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -206652,7 +206725,7 @@ } }, { - "id": "4264", + "id": "4265", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", @@ -206983,11 +207056,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -207075,7 +207148,7 @@ } }, { - "id": "4265", + "id": "4266", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207100,7 +207173,7 @@ } }, { - "id": "4266", + "id": "4267", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207126,7 +207199,7 @@ } }, { - "id": "4267", + "id": "4268", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207152,7 +207225,7 @@ } }, { - "id": "4268", + "id": "4269", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207178,7 +207251,7 @@ } }, { - "id": "4269", + "id": "4270", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207204,7 +207277,7 @@ } }, { - "id": "4270", + "id": "4271", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207229,7 +207302,7 @@ } }, { - "id": "4271", + "id": "4272", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207254,7 +207327,7 @@ } }, { - "id": "4272", + "id": "4273", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207285,7 +207358,7 @@ } }, { - "id": "4273", + "id": "4274", "mutatorName": "BooleanLiteral", "replacement": "playingBackgroundAudioName.value", "statusReason": "app/stores/audio/useAudioStore.ts(68,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", @@ -207313,7 +207386,7 @@ } }, { - "id": "4274", + "id": "4275", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/audio/useAudioStore.ts(68,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", @@ -207341,7 +207414,7 @@ } }, { - "id": "4275", + "id": "4276", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/audio/useAudioStore.ts(68,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", @@ -207369,7 +207442,7 @@ } }, { - "id": "4276", + "id": "4277", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/audio/useAudioStore.ts(66,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", @@ -207392,7 +207465,7 @@ } }, { - "id": "4277", + "id": "4278", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207421,7 +207494,7 @@ } }, { - "id": "4278", + "id": "4279", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207452,7 +207525,7 @@ } }, { - "id": "4279", + "id": "4280", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -207482,7 +207555,7 @@ } }, { - "id": "4280", + "id": "4281", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Array [\n \"day-1\",\n \"day-2\",\n ],\n], but it was called with Array [\n \"night-1\",\n \"night-2\",\n \"night-3\",\n]", @@ -207512,7 +207585,7 @@ } }, { - "id": "4281", + "id": "4282", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected \"spy\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st spy call:\n\n Array [\n Array [\n \"day-1\",\n \"day-2\",\n ],\n ]\n\n\nNumber of calls: 1\n", @@ -207542,7 +207615,7 @@ } }, { - "id": "4282", + "id": "4283", "mutatorName": "EqualityOperator", "replacement": "gamePhase !== \"night\"", "statusReason": "expected \"spy\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st spy call:\n\n Array [\n Array [\n \"day-1\",\n \"day-2\",\n ],\n ]\n\n\nNumber of calls: 1\n", @@ -207572,7 +207645,7 @@ } }, { - "id": "4283", + "id": "4284", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/audio/useAudioStore.ts(82,34): error TS2367: This comparison appears to be unintentional because the types '\"day\" | \"night\" | \"twilight\"' and '\"\"' have no overlap.\n", @@ -207599,7 +207672,7 @@ } }, { - "id": "4284", + "id": "4285", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/audio/useAudioStore.ts(91,25): error TS2345: Argument of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\" | null' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n Type 'null' is not assignable to type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -207626,7 +207699,7 @@ } }, { - "id": "4285", + "id": "4286", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected \"spy\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st spy call:\n\n Array [\n Array [\n \"night-1\",\n \"night-2\",\n \"night-3\",\n ],\n ]\n\n\nNumber of calls: 1\n", @@ -207656,7 +207729,7 @@ } }, { - "id": "4286", + "id": "4287", "mutatorName": "LogicalOperator", "replacement": "playingBackgroundAudioName.value || backgroundAudioNames.includes(playingBackgroundAudioName.value)", "statusReason": "app/stores/audio/useAudioStore.ts(83,75): error TS2345: Argument of type 'undefined' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -207683,7 +207756,7 @@ } }, { - "id": "4287", + "id": "4288", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected \"spy\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st spy call:\n\n Array [\n Array [\n \"night-1\",\n \"night-2\",\n \"night-3\",\n ],\n ]\n\n\nNumber of calls: 1\n", @@ -207708,7 +207781,7 @@ } }, { - "id": "4288", + "id": "4289", "mutatorName": "BooleanLiteral", "replacement": "randomGamePhaseBackgroundAudioName", "statusReason": "app/stores/audio/useAudioStore.ts(91,25): error TS2345: Argument of type 'null' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -207734,7 +207807,7 @@ } }, { - "id": "4289", + "id": "4290", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/audio/useAudioStore.ts(91,25): error TS2345: Argument of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\" | null' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n Type 'null' is not assignable to type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -207760,7 +207833,7 @@ } }, { - "id": "4290", + "id": "4291", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/audio/useAudioStore.ts(91,25): error TS2345: Argument of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\" | null' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n Type 'null' is not assignable to type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -207786,7 +207859,7 @@ } }, { - "id": "4291", + "id": "4292", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/audio/useAudioStore.ts(89,25): error TS2345: Argument of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\" | null' is not assignable to parameter of type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n Type 'null' is not assignable to type '\"day-1\" | \"day-2\" | \"night-1\" | \"night-2\" | \"night-3\"'.\n", @@ -207808,7 +207881,7 @@ } }, { - "id": "4292", + "id": "4293", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected false to be truthy", @@ -207836,7 +207909,7 @@ } }, { - "id": "4293", + "id": "4294", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected false to be truthy", @@ -207861,7 +207934,7 @@ } }, { - "id": "4294", + "id": "4295", "mutatorName": "BooleanLiteral", "replacement": "isMuted.value", "statusReason": "expected false to be truthy", @@ -207886,7 +207959,7 @@ } }, { - "id": "4295", + "id": "4296", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "tests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(135,18): error TS2339: Property 'isMuted' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(144,18): error TS2339: Property 'isMuted' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(153,18): error TS2339: Property 'isMuted' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(162,18): error TS2339: Property 'isMuted' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts(174,25): error TS2339: Property 'toggleMute' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameBearGrowlsOrSleepsEvent/GameBearGrowlsOrSleepsEvent.nuxt.spec.ts(52,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameBearGrowlsOrSleepsEvent/GameBearGrowlsOrSleepsEvent.nuxt.spec.ts(66,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameCupidHasCharmedEvent/GameCupidHasCharmedEvent.nuxt.spec.ts(65,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMayHaveMarkedEvent/GameScandalmongerMayHaveMarkedEvent.nuxt.spec.ts(64,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMayHaveMarkedEvent/GameScandalmongerMayHaveMarkedEvent.nuxt.spec.ts(70,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent.nuxt.spec.ts(36,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameActorTurnStartsEvent/GameActorTurnStartsEvent.nuxt.spec.ts(36,25): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameFoxTurnStartsEvent/GameFoxTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameHunterTurnStartsEvent/GameHunterTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GamePiedPiperTurnStartsEvent/GamePiedPiperTurnStartsEvent.nuxt.spec.ts(43,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScandalmongerTurnStartsEvent/GameScandalmongerTurnStartsEvent.nuxt.spec.ts(43,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScapegoatTurnStartsEvent/GameScapegoatTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameStutteringJudgeTurnStartsEvent/GameStutteringJudgeTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWildChildTurnStartsEvent/GameWildChildTurnStartsEvent.nuxt.spec.ts(35,23): error TS2339: Property 'playSoundEffect' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(74,15): error TS2339: Property 'playingBackgroundAudioName' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(80,15): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(86,15): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(92,15): error TS2339: Property 'isMuted' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(101,18): error TS2339: Property 'isMuted' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(102,18): error TS2339: Property 'setHowlerAudioSettingsFromAudioStoreState' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(110,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(110,29): error TS2339: Property 'loadSoundEffects' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(114,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(121,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(121,33): error TS2339: Property 'loadBackgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(125,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(132,15): error TS2339: Property 'loadAllAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(133,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(133,33): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(137,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(140,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(147,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(147,29): error TS2339: Property 'playSoundEffect' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(157,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(157,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(161,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(167,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(167,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(168,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(176,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(176,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(177,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(187,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(187,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(195,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(195,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(203,15): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(207,30): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(218,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(219,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(226,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(227,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(229,83): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(234,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(236,83): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(241,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(242,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(243,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(250,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(251,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(252,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(259,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(260,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(262,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(271,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(274,25): error TS2339: Property 'isMuted' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(279,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(287,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(290,25): error TS2339: Property 'audioSettingsFromLocalStorage' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(297,15): error TS2339: Property 'toggleMute' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(298,18): error TS2339: Property 'isMuted' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(301,25): error TS2339: Property 'isMuted' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\n", @@ -208214,11 +208287,11 @@ "1819", "1820", "1821", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -208312,7 +208385,7 @@ "language": "typescript", "mutants": [ { - "id": "4296", + "id": "4297", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "tests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/GameLobbyAdditionalCardsManagerContent.spec.ts(38,24): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/GameLobbyAdditionalCardsManagerContent.spec.ts(39,24): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/GameLobbyAdditionalCardsManagerContent.spec.ts(40,24): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(57,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(80,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(89,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(104,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(128,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(142,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsManager.spec.ts(60,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsManager.spec.ts(98,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsManager.spec.ts(114,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(113,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(171,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(248,33): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(253,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(270,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(291,33): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(69,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(110,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(120,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(56,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(75,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(91,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(147,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(156,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(173,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(190,41): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(202,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(246,37): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(251,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(265,37): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(282,37): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(287,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(301,37): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(112,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(128,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(157,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(167,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(178,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(207,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(223,111): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(87,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(104,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(116,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(128,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(132,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(171,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogActorAdditionalCardsPlaced/GameLobbyStartGameConfirmDialogActorAdditionalCardsPlaced.nuxt.spec.ts(56,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(40,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(69,35): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(78,35): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(83,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(86,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(91,35): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(92,35): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/GameLobbyStartGameConfirmDialogGameOptionsChanged.nuxt.spec.ts(40,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogThiefAdditionalCardsPlaced/GameLobbyStartGameConfirmDialogThiefAdditionalCardsPlaced.nuxt.spec.ts(56,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerDisclaimer/GameLobbyGroupOrganizerDisclaimer.nuxt.spec.ts(162,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerGroupNames/GameLobbyGroupOrganizerGroupNames.nuxt.spec.ts(48,33): error TS2339: Property 'setFirstDefaultGroupName' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerGroupNames/GameLobbyGroupOrganizerGroupNames.nuxt.spec.ts(58,33): error TS2339: Property 'setSecondDefaultGroupName' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerPickList/GameLobbyGroupOrganizerPickList.nuxt.spec.ts(120,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerPickList/GameLobbyGroupOrganizerPickList.nuxt.spec.ts(124,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerPickList/GameLobbyGroupOrganizerPickList.nuxt.spec.ts(140,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerPickList/GameLobbyGroupOrganizerPickList.nuxt.spec.ts(144,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(129,35): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(144,35): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderAdditionalCardsManagerButton/GameLobbyHeaderAdditionalCardsManagerButton.nuxt.spec.ts(45,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderAdditionalCardsManagerButton/GameLobbyHeaderAdditionalCardsManagerButton.nuxt.spec.ts(62,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderGroupOrganizerButton/GameLobbyHeaderGroupOrganizerButton.nuxt.spec.ts(42,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderGroupOrganizerButton/GameLobbyHeaderGroupOrganizerButton.nuxt.spec.ts(59,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.nuxt.spec.ts(42,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.nuxt.spec.ts(59,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(91,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(102,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(139,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(173,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(97,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(106,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(119,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(136,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(145,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(159,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(173,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(200,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(209,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubFooter/GameLobbyOptionsHubFooter.nuxt.spec.ts(51,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubFooter/GameLobbyOptionsHubFooter.nuxt.spec.ts(76,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubFooter/GameLobbyOptionsHubFooter.nuxt.spec.ts(77,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubFooter/GameLobbyOptionsHubFooter.nuxt.spec.ts(88,35): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubCompositionTab/GameLobbyOptionsHubCompositionTab.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubCompositionTab/GameLobbyOptionsHubCompositionTab.nuxt.spec.ts(56,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubCompositionTab/GameLobbyOptionsHubCompositionTab.nuxt.spec.ts(69,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubCompositionTab/GameLobbyOptionsHubCompositionTab.nuxt.spec.ts(72,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabActor/GameLobbyOptionsHubRolesTabActor.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabActor/GameLobbyOptionsHubRolesTabActor.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabActor/GameLobbyOptionsHubRolesTabActor.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabActor/GameLobbyOptionsHubRolesTabActor.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBearTamer/GameLobbyOptionsHubRolesTabBearTamer.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBearTamer/GameLobbyOptionsHubRolesTabBearTamer.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBearTamer/GameLobbyOptionsHubRolesTabBearTamer.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBearTamer/GameLobbyOptionsHubRolesTabBearTamer.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBigBadWolf/GameLobbyOptionsHubRolesTabBigBadWolf.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBigBadWolf/GameLobbyOptionsHubRolesTabBigBadWolf.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBigBadWolf/GameLobbyOptionsHubRolesTabBigBadWolf.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBigBadWolf/GameLobbyOptionsHubRolesTabBigBadWolf.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(80,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(98,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(101,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabDefender/GameLobbyOptionsHubRolesTabDefender.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabDefender/GameLobbyOptionsHubRolesTabDefender.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabDefender/GameLobbyOptionsHubRolesTabDefender.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(65,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(68,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(76,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(79,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(88,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(101,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(110,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(122,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(125,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabFox/GameLobbyOptionsHubRolesTabFox.nuxt.spec.ts(52,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabFox/GameLobbyOptionsHubRolesTabFox.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabFox/GameLobbyOptionsHubRolesTabFox.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(54,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(72,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(75,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(88,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(97,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(109,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(112,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabIdiot/GameLobbyOptionsHubRolesTabIdiot.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabIdiot/GameLobbyOptionsHubRolesTabIdiot.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabIdiot/GameLobbyOptionsHubRolesTabIdiot.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabIdiot/GameLobbyOptionsHubRolesTabIdiot.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabLittleGirl/GameLobbyOptionsHubRolesTabLittleGirl.nuxt.spec.ts(47,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabLittleGirl/GameLobbyOptionsHubRolesTabLittleGirl.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabLittleGirl/GameLobbyOptionsHubRolesTabLittleGirl.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(66,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(69,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(78,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(81,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(91,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(110,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(122,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(125,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(138,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(147,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(159,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(162,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPrejudicedManipulator/GameLobbyOptionsHubRolesTabPrejudicedManipulator.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPrejudicedManipulator/GameLobbyOptionsHubRolesTabPrejudicedManipulator.nuxt.spec.ts(70,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPrejudicedManipulator/GameLobbyOptionsHubRolesTabPrejudicedManipulator.nuxt.spec.ts(73,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(76,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(79,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(89,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(53,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(66,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(69,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(89,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(102,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(105,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(47,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(77,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(90,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(93,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(106,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(115,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(127,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(130,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(143,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(152,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(164,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(167,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(58,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(67,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(76,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(85,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(108,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(108,86): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(109,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(110,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(120,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(130,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(143,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(146,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(154,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(158,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(173,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(176,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(185,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(188,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(198,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(75,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(78,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(87,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(53,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(66,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(69,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(82,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(91,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(103,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(106,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(65,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(68,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(78,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(81,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(91,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(65,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(68,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(78,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(81,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(91,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWerewolf/GameLobbyOptionsHubRolesTabWerewolf.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWerewolf/GameLobbyOptionsHubRolesTabWerewolf.nuxt.spec.ts(56,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWerewolf/GameLobbyOptionsHubRolesTabWerewolf.nuxt.spec.ts(69,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWerewolf/GameLobbyOptionsHubRolesTabWerewolf.nuxt.spec.ts(72,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(65,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(68,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(78,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(81,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(91,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWildChild/GameLobbyOptionsHubRolesTabWildChild.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWildChild/GameLobbyOptionsHubRolesTabWildChild.nuxt.spec.ts(56,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWildChild/GameLobbyOptionsHubRolesTabWildChild.nuxt.spec.ts(70,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWildChild/GameLobbyOptionsHubRolesTabWildChild.nuxt.spec.ts(73,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWitch/GameLobbyOptionsHubRolesTabWitch.nuxt.spec.ts(53,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWitch/GameLobbyOptionsHubRolesTabWitch.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWitch/GameLobbyOptionsHubRolesTabWitch.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(56,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(69,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(72,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(85,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(95,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(108,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(111,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(49,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(59,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(72,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(75,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(100,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(103,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(113,80): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(116,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(126,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayerCard/GameLobbyPlayerCard.nuxt.spec.ts(72,33): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayerCard/GameLobbyPlayerCard.nuxt.spec.ts(80,33): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.nuxt.spec.ts(38,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.nuxt.spec.ts(54,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.nuxt.spec.ts(61,48): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.nuxt.spec.ts(73,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPositionCoordinator/GameLobbyPositionCoordinatorSorter/GameLobbyPositionCoordinatorSorter.nuxt.spec.ts(82,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(39,24): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(43,24): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(64,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(65,26): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(66,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(84,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(85,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(112,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(116,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(131,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(132,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(133,26): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(134,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(144,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(145,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(146,26): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(147,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(157,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(158,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(159,26): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(160,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(57,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(121,28): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(122,28): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(139,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(154,28): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(155,28): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(182,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(183,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(193,28): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(194,28): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(216,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(255,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(260,35): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(268,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(295,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(308,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(319,35): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(32,24): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(33,24): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(34,24): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(58,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(59,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(60,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(74,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(75,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(76,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(89,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(90,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(91,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(116,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(117,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(118,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(132,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(133,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(143,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(144,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(145,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(168,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(169,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(170,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(184,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(185,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(186,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(196,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(197,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(198,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(208,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(209,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(210,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(41,31): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(47,31): error TS2339: Property 'firstGroupName' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(53,31): error TS2339: Property 'secondGroupName' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(59,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(64,33): error TS2339: Property 'doesCreateGameDtoContainPositionDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(69,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(74,33): error TS2339: Property 'doesCreateGameDtoContainPositionDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(81,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(86,33): error TS2339: Property 'doesCreateGameDtoContainAdditionalCardsDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(91,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(96,33): error TS2339: Property 'doesCreateGameDtoContainAdditionalCardsDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(111,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(113,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(126,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(128,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(140,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(158,26): error TS2339: Property 'changePlayersOldGroupNameToNew' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(160,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(167,26): error TS2339: Property 'firstGroupName' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(173,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(190,26): error TS2339: Property 'setFirstDefaultGroupName' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(192,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(199,26): error TS2339: Property 'secondGroupName' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(205,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(222,26): error TS2339: Property 'setSecondDefaultGroupName' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(224,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(231,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(242,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(244,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(251,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(262,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(264,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(271,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(278,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(281,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(288,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(289,26): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(292,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(297,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(298,26): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(301,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(308,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(309,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(310,26): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(313,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(321,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(322,26): error TS2339: Property 'saveCreateGameOptionsDtoToLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(324,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(345,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(350,26): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(352,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(357,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(358,26): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(360,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(373,26): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(375,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(387,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(398,26): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(400,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(410,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(417,26): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(419,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(431,26): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(433,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(445,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(453,26): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(455,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(465,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(471,26): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(473,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(480,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(485,33): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(490,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(495,33): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(507,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(510,41): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(525,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(528,41): error TS2339: Property 'getPlayersWithAnyRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(604,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(606,33): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(661,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(663,33): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(725,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(727,33): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(744,26): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(746,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(765,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(778,26): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(780,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(805,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(811,41): error TS2339: Property 'getAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(818,41): error TS2339: Property 'getAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(845,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(851,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(858,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(872,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(877,41): error TS2339: Property 'getPlayersInGroupInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(891,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(909,26): error TS2339: Property 'removeGroupFromPlayersInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(911,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(932,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(937,26): error TS2339: Property 'sanitizeCreateGameDtoForGameCreation' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(939,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(952,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(955,26): error TS2339: Property 'sanitizeCreateGameDtoForGameCreation' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(957,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(970,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(973,26): error TS2339: Property 'sanitizeCreateGameDtoForGameCreation' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(989,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\n", @@ -208913,7 +208986,7 @@ } }, { - "id": "4297", + "id": "4298", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(29,53): error TS2345: Argument of type '{}' is not assignable to parameter of type 'OmitToJSON'.\n Type '{}' is missing the following properties from type 'OmitToJSON': players, options\n", @@ -209514,7 +209587,7 @@ } }, { - "id": "4298", + "id": "4299", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(30,15): error TS2322: Type 'string' is not assignable to type 'CreateGamePlayerDto'.\n", @@ -210115,7 +210188,7 @@ } }, { - "id": "4299", + "id": "4300", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(34,65): error TS2345: Argument of type '{}' is not assignable to parameter of type 'OmitToJSON'.\n Type '{}' is missing the following properties from type 'OmitToJSON': players, options\n", @@ -210716,7 +210789,7 @@ } }, { - "id": "4300", + "id": "4301", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'stores.useCreateGameDtoStore.firstDef…' // Object.is equality", @@ -211320,7 +211393,7 @@ } }, { - "id": "4301", + "id": "4302", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "expected '' to be 'stores.useCreateGameDtoStore.secondDe…' // Object.is equality", @@ -211924,7 +211997,7 @@ } }, { - "id": "4302", + "id": "4303", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(43,32): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'GameOptions'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -212525,7 +212598,7 @@ } }, { - "id": "4303", + "id": "4304", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(45,76): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -212567,7 +212640,7 @@ } }, { - "id": "4304", + "id": "4305", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "expected false to be truthy", @@ -212612,7 +212685,7 @@ } }, { - "id": "4305", + "id": "4306", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(46,49): error TS2322: Type '\"\"' is not assignable to type '\"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | ... 15 more ... | \"devoted-servant\"'.\n", @@ -212654,7 +212727,7 @@ } }, { - "id": "4306", + "id": "4307", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(46,71): error TS2322: Type '\"\"' is not assignable to type '\"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | ... 15 more ... | \"devoted-servant\"'.\n", @@ -212696,7 +212769,7 @@ } }, { - "id": "4307", + "id": "4308", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(46,85): error TS2322: Type '\"\"' is not assignable to type '\"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | ... 15 more ... | \"devoted-servant\"'.\n", @@ -212738,7 +212811,7 @@ } }, { - "id": "4308", + "id": "4309", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ 'players-positioned', …(1) ] to strictly equal [ 'players-ready' ]", @@ -212783,7 +212856,7 @@ } }, { - "id": "4309", + "id": "4310", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be truthy", @@ -212828,7 +212901,7 @@ } }, { - "id": "4310", + "id": "4311", "mutatorName": "EqualityOperator", "replacement": "playersWithPositionDependantRoles.length >= 0", "statusReason": "expected [ 'players-positioned', …(1) ] to strictly equal [ 'players-ready' ]", @@ -212873,7 +212946,7 @@ } }, { - "id": "4311", + "id": "4312", "mutatorName": "EqualityOperator", "replacement": "playersWithPositionDependantRoles.length <= 0", "statusReason": "expected false to be truthy", @@ -212918,7 +212991,7 @@ } }, { - "id": "4312", + "id": "4313", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(52,83): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'ComputedGetter'.\n Type 'void' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => void' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -212956,7 +213029,7 @@ } }, { - "id": "4313", + "id": "4314", "mutatorName": "ArrayDeclaration", "replacement": "[]", "statusReason": "expected false to be truthy", @@ -212997,7 +213070,7 @@ } }, { - "id": "4314", + "id": "4315", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be falsy", @@ -213038,7 +213111,7 @@ } }, { - "id": "4315", + "id": "4316", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be truthy", @@ -213079,7 +213152,7 @@ } }, { - "id": "4316", + "id": "4317", "mutatorName": "EqualityOperator", "replacement": "playersWithAdditionalCardsDependantRoles.length >= 0", "statusReason": "expected true to be falsy", @@ -213120,7 +213193,7 @@ } }, { - "id": "4317", + "id": "4318", "mutatorName": "EqualityOperator", "replacement": "playersWithAdditionalCardsDependantRoles.length <= 0", "statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched", @@ -213161,7 +213234,7 @@ } }, { - "id": "4318", + "id": "4319", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ …(3) }", @@ -213187,7 +213260,7 @@ } }, { - "id": "4319", + "id": "4320", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -213214,7 +213287,7 @@ } }, { - "id": "4320", + "id": "4321", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -213241,7 +213314,7 @@ } }, { - "id": "4321", + "id": "4322", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -213266,7 +213339,7 @@ } }, { - "id": "4322", + "id": "4323", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -213291,7 +213364,7 @@ } }, { - "id": "4323", + "id": "4324", "mutatorName": "BooleanLiteral", "replacement": "false", "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ players: [], …(2) }", @@ -213316,7 +213389,7 @@ } }, { - "id": "4324", + "id": "4325", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ players: [], …(2) }", @@ -213343,7 +213416,7 @@ } }, { - "id": "4325", + "id": "4326", "mutatorName": "BooleanLiteral", "replacement": "doesRetrieveLocalStorageValues", "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ players: [], …(2) }", @@ -213370,7 +213443,7 @@ } }, { - "id": "4326", + "id": "4327", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ players: [], …(2) }", @@ -213397,7 +213470,7 @@ } }, { - "id": "4327", + "id": "4328", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected _GameOptions{ …(3) } to strictly equal _GameOptions{ …(3) }", @@ -213424,7 +213497,7 @@ } }, { - "id": "4328", + "id": "4329", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _GameOptions{ …(3) } to strictly equal _GameOptions{ …(3) }", @@ -213450,7 +213523,7 @@ } }, { - "id": "4329", + "id": "4330", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,48): error TS2345: Argument of type '{}' is not assignable to parameter of type 'OmitToJSON'.\n Type '{}' is missing the following properties from type 'OmitToJSON': players, options\n", @@ -213472,7 +213545,7 @@ } }, { - "id": "4330", + "id": "4331", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _GameOptions{ …(3) } to strictly equal _GameOptions{ …(3) }", @@ -213498,7 +213571,7 @@ } }, { - "id": "4331", + "id": "4332", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _GameOptions{ …(3) } to strictly equal _GameOptions{ …(3) }", @@ -213523,7 +213596,7 @@ } }, { - "id": "4332", + "id": "4333", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected { …(3) } to strictly equal _GameOptions{ …(3) }", @@ -213555,7 +213628,7 @@ } }, { - "id": "4333", + "id": "4334", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ …(3) ] to strictly equal [ Array(1) ]", @@ -213590,7 +213663,7 @@ } }, { - "id": "4334", + "id": "4335", "mutatorName": "BooleanLiteral", "replacement": "createGameDto.value.additionalCards", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(115,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(115,89): error TS7031: Binding element 'recipient' implicitly has an 'any' type.\n", @@ -213622,7 +213695,7 @@ } }, { - "id": "4335", + "id": "4336", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(115,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -213654,7 +213727,7 @@ } }, { - "id": "4336", + "id": "4337", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(115,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -213686,7 +213759,7 @@ } }, { - "id": "4337", + "id": "4338", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(113,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -213716,7 +213789,7 @@ } }, { - "id": "4338", + "id": "4339", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(115,121): error TS2345: Argument of type '\"thief\" | \"actor\"' is not assignable to parameter of type 'undefined'.\n Type '\"thief\"' is not assignable to type 'undefined'.\n", @@ -213739,7 +213812,7 @@ } }, { - "id": "4339", + "id": "4340", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.additionalCards", "statusReason": "expected [ …(3) ] to strictly equal [ Array(1) ]", @@ -213765,7 +213838,7 @@ } }, { - "id": "4340", + "id": "4341", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [] to strictly equal [ Array(1) ]", @@ -213791,7 +213864,7 @@ } }, { - "id": "4341", + "id": "4342", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ …(3) }", @@ -213816,7 +213889,7 @@ } }, { - "id": "4342", + "id": "4343", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -213842,7 +213915,7 @@ } }, { - "id": "4343", + "id": "4344", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -213868,7 +213941,7 @@ } }, { - "id": "4344", + "id": "4345", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -213894,7 +213967,7 @@ } }, { - "id": "4345", + "id": "4346", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -213920,7 +213993,7 @@ } }, { - "id": "4346", + "id": "4347", "mutatorName": "EqualityOperator", "replacement": "name !== player.name", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -213946,7 +214019,7 @@ } }, { - "id": "4347", + "id": "4348", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -213972,7 +214045,7 @@ } }, { - "id": "4348", + "id": "4349", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -213998,7 +214071,7 @@ } }, { - "id": "4349", + "id": "4350", "mutatorName": "EqualityOperator", "replacement": "playerIndex === -1", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214024,7 +214097,7 @@ } }, { - "id": "4350", + "id": "4351", "mutatorName": "UnaryOperator", "replacement": "+1", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214050,7 +214123,7 @@ } }, { - "id": "4351", + "id": "4352", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214075,7 +214148,7 @@ } }, { - "id": "4352", + "id": "4353", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -214100,7 +214173,7 @@ } }, { - "id": "4353", + "id": "4354", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,5): error TS2322: Type 'undefined[]' is not assignable to type '{ name: string; role: { name?: \"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | ... 17 more ... | undefined; }; side: { ...; }; group?: string | undefined; }[]'.\n Type 'undefined' is not assignable to type '{ name: string; role: { name?: \"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | ... 17 more ... | undefined; }; side: { ...; }; group?: string | undefined; }'.\n", @@ -214122,7 +214195,7 @@ } }, { - "id": "4354", + "id": "4355", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214148,7 +214221,7 @@ } }, { - "id": "4355", + "id": "4356", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214174,7 +214247,7 @@ } }, { - "id": "4356", + "id": "4357", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214200,7 +214273,7 @@ } }, { - "id": "4357", + "id": "4358", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214226,7 +214299,7 @@ } }, { - "id": "4358", + "id": "4359", "mutatorName": "EqualityOperator", "replacement": "player.name !== playerName", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214252,7 +214325,7 @@ } }, { - "id": "4359", + "id": "4360", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214278,7 +214351,7 @@ } }, { - "id": "4360", + "id": "4361", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214304,7 +214377,7 @@ } }, { - "id": "4361", + "id": "4362", "mutatorName": "EqualityOperator", "replacement": "playerIndex === -1", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214330,7 +214403,7 @@ } }, { - "id": "4362", + "id": "4363", "mutatorName": "UnaryOperator", "replacement": "+1", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214356,7 +214429,7 @@ } }, { - "id": "4363", + "id": "4364", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", @@ -214381,7 +214454,7 @@ } }, { - "id": "4364", + "id": "4365", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(140,55): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -214404,7 +214477,7 @@ } }, { - "id": "4365", + "id": "4366", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players.every(player => player.role.name === roleName)", "statusReason": "expected false to be truthy", @@ -214430,7 +214503,7 @@ } }, { - "id": "4366", + "id": "4367", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected false to be truthy", @@ -214456,7 +214529,7 @@ } }, { - "id": "4367", + "id": "4368", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be falsy", @@ -214482,7 +214555,7 @@ } }, { - "id": "4368", + "id": "4369", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be truthy", @@ -214508,7 +214581,7 @@ } }, { - "id": "4369", + "id": "4370", "mutatorName": "EqualityOperator", "replacement": "player.role.name !== roleName", "statusReason": "expected true to be falsy", @@ -214534,7 +214607,7 @@ } }, { - "id": "4370", + "id": "4371", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(144,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -214609,7 +214682,7 @@ } }, { - "id": "4371", + "id": "4372", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players", "statusReason": "expected true to be falsy", @@ -214687,7 +214760,7 @@ } }, { - "id": "4372", + "id": "4373", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [ 'players-ready' ] to strictly equal [ …(2) ]", @@ -214765,7 +214838,7 @@ } }, { - "id": "4373", + "id": "4374", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be falsy", @@ -214843,7 +214916,7 @@ } }, { - "id": "4374", + "id": "4375", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched", @@ -214921,7 +214994,7 @@ } }, { - "id": "4375", + "id": "4376", "mutatorName": "EqualityOperator", "replacement": "player.role.name !== roleName", "statusReason": "expected [ …(3) ] to strictly equal [ 'players-ready' ]", @@ -214999,7 +215072,7 @@ } }, { - "id": "4376", + "id": "4377", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(148,77): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -215059,7 +215132,7 @@ } }, { - "id": "4377", + "id": "4378", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.players", "statusReason": "expected true to be falsy", @@ -215122,7 +215195,7 @@ } }, { - "id": "4378", + "id": "4379", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched", @@ -215185,7 +215258,7 @@ } }, { - "id": "4379", + "id": "4380", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ 'players-positioned', …(1) ] to strictly equal [ 'players-ready' ]", @@ -215248,7 +215321,7 @@ } }, { - "id": "4380", + "id": "4381", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [ 'players-ready' ] to strictly equal [ 'players-positioned', …(1) ]", @@ -215311,7 +215384,7 @@ } }, { - "id": "4381", + "id": "4382", "mutatorName": "LogicalOperator", "replacement": "player.role.name || roleNames.includes(player.role.name)", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(149,96): error TS2345: Argument of type 'undefined' is not assignable to parameter of type '\"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | ... 15 more ... | \"devoted-servant\"'.\n", @@ -215371,7 +215444,7 @@ } }, { - "id": "4382", + "id": "4383", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(152,65): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -215396,7 +215469,7 @@ } }, { - "id": "4383", + "id": "4384", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -215424,7 +215497,7 @@ } }, { - "id": "4384", + "id": "4385", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -215452,7 +215525,7 @@ } }, { - "id": "4385", + "id": "4386", "mutatorName": "LogicalOperator", "replacement": "!!role || role.minInGame === undefined || playersWithRoleName.length >= role.minInGame", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,22): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,84): error TS18048: 'role' is possibly 'undefined'.\n", @@ -215477,7 +215550,7 @@ } }, { - "id": "4386", + "id": "4387", "mutatorName": "BooleanLiteral", "replacement": "!role", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,22): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,84): error TS18048: 'role' is possibly 'undefined'.\n", @@ -215502,7 +215575,7 @@ } }, { - "id": "4387", + "id": "4388", "mutatorName": "BooleanLiteral", "replacement": "role", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,22): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,84): error TS18048: 'role' is possibly 'undefined'.\n", @@ -215527,7 +215600,7 @@ } }, { - "id": "4388", + "id": "4389", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -215555,7 +215628,7 @@ } }, { - "id": "4389", + "id": "4390", "mutatorName": "LogicalOperator", "replacement": "role.minInGame === undefined && playersWithRoleName.length >= role.minInGame", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,85): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", @@ -215580,7 +215653,7 @@ } }, { - "id": "4390", + "id": "4391", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,62): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", @@ -215605,7 +215678,7 @@ } }, { - "id": "4391", + "id": "4392", "mutatorName": "EqualityOperator", "replacement": "role.minInGame !== undefined", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,85): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", @@ -215630,7 +215703,7 @@ } }, { - "id": "4392", + "id": "4393", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -215657,7 +215730,7 @@ } }, { - "id": "4393", + "id": "4394", "mutatorName": "EqualityOperator", "replacement": "playersWithRoleName.length > role.minInGame", "statusReason": "expected false to be true // Object.is equality", @@ -215684,7 +215757,7 @@ } }, { - "id": "4394", + "id": "4395", "mutatorName": "EqualityOperator", "replacement": "playersWithRoleName.length < role.minInGame", "statusReason": "expected false to be true // Object.is equality", @@ -215711,7 +215784,7 @@ } }, { - "id": "4395", + "id": "4396", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(159,65): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -215735,7 +215808,7 @@ } }, { - "id": "4396", + "id": "4397", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -215762,7 +215835,7 @@ } }, { - "id": "4397", + "id": "4398", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -215789,7 +215862,7 @@ } }, { - "id": "4398", + "id": "4399", "mutatorName": "LogicalOperator", "replacement": "!!role || playersWithRoleName.length >= role.maxInGame", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(163,52): error TS18048: 'role' is possibly 'undefined'.\n", @@ -215813,7 +215886,7 @@ } }, { - "id": "4399", + "id": "4400", "mutatorName": "BooleanLiteral", "replacement": "!role", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(163,51): error TS18048: 'role' is possibly 'undefined'.\n", @@ -215837,7 +215910,7 @@ } }, { - "id": "4400", + "id": "4401", "mutatorName": "BooleanLiteral", "replacement": "role", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(163,51): error TS18048: 'role' is possibly 'undefined'.\n", @@ -215861,7 +215934,7 @@ } }, { - "id": "4401", + "id": "4402", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -215887,7 +215960,7 @@ } }, { - "id": "4402", + "id": "4403", "mutatorName": "EqualityOperator", "replacement": "playersWithRoleName.length > role.maxInGame", "statusReason": "expected false to be true // Object.is equality", @@ -215913,7 +215986,7 @@ } }, { - "id": "4403", + "id": "4404", "mutatorName": "EqualityOperator", "replacement": "playersWithRoleName.length < role.maxInGame", "statusReason": "expected false to be true // Object.is equality", @@ -215939,7 +216012,7 @@ } }, { - "id": "4404", + "id": "4405", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(166,75): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -215963,7 +216036,7 @@ } }, { - "id": "4405", + "id": "4406", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(172,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(172,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", @@ -215987,7 +216060,7 @@ } }, { - "id": "4406", + "id": "4407", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(172,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(172,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", @@ -216011,7 +216084,7 @@ } }, { - "id": "4407", + "id": "4408", "mutatorName": "EqualityOperator", "replacement": "role?.minInGame !== undefined", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(172,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(172,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", @@ -216035,7 +216108,7 @@ } }, { - "id": "4408", + "id": "4409", "mutatorName": "OptionalChaining", "replacement": "role.minInGame", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(169,9): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(172,23): error TS18048: 'role' is possibly 'undefined'.\n", @@ -216059,7 +216132,7 @@ } }, { - "id": "4409", + "id": "4410", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(170,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(170,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", @@ -216081,7 +216154,7 @@ } }, { - "id": "4410", + "id": "4411", "mutatorName": "ArithmeticOperator", "replacement": "role.minInGame + playersWithRoleName.length", "statusReason": "expected 2 to be +0 // Object.is equality", @@ -216107,7 +216180,7 @@ } }, { - "id": "4411", + "id": "4412", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -216133,7 +216206,7 @@ } }, { - "id": "4412", + "id": "4413", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected -1 to be +0 // Object.is equality", @@ -216159,7 +216232,7 @@ } }, { - "id": "4413", + "id": "4414", "mutatorName": "EqualityOperator", "replacement": "leftCount < -1", "statusReason": "expected -1 to be +0 // Object.is equality", @@ -216185,7 +216258,7 @@ } }, { - "id": "4414", + "id": "4415", "mutatorName": "EqualityOperator", "replacement": "leftCount > -1", "statusReason": "expected -1 to be +0 // Object.is equality", @@ -216211,7 +216284,7 @@ } }, { - "id": "4415", + "id": "4416", "mutatorName": "UnaryOperator", "replacement": "+1", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -216237,7 +216310,7 @@ } }, { - "id": "4416", + "id": "4417", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to strictly equal [ …(2) ]", @@ -216265,7 +216338,7 @@ } }, { - "id": "4417", + "id": "4418", "mutatorName": "BooleanLiteral", "replacement": "createGameDto.value.additionalCards", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(182,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -216290,7 +216363,7 @@ } }, { - "id": "4418", + "id": "4419", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ Array(1) ] to strictly equal [ …(3) ]", @@ -216318,7 +216391,7 @@ } }, { - "id": "4419", + "id": "4420", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(182,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -216343,7 +216416,7 @@ } }, { - "id": "4420", + "id": "4421", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(180,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -216365,7 +216438,7 @@ } }, { - "id": "4421", + "id": "4422", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.additionalCards", "statusReason": "expected [ …(4) ] to strictly equal [ …(3) ]", @@ -216393,7 +216466,7 @@ } }, { - "id": "4422", + "id": "4423", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [ Array(1) ] to strictly equal [ …(3) ]", @@ -216421,7 +216494,7 @@ } }, { - "id": "4423", + "id": "4424", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", @@ -216449,7 +216522,7 @@ } }, { - "id": "4424", + "id": "4425", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [ Array(1) ] to strictly equal [ …(3) ]", @@ -216477,7 +216550,7 @@ } }, { - "id": "4425", + "id": "4426", "mutatorName": "EqualityOperator", "replacement": "card.recipient === recipient", "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", @@ -216505,7 +216578,7 @@ } }, { - "id": "4426", + "id": "4427", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(186,107): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -216574,7 +216647,7 @@ } }, { - "id": "4427", + "id": "4428", "mutatorName": "LogicalOperator", "replacement": "createGameDto.value.additionalCards?.filter(card => card.recipient === recipient) && []", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(187,5): error TS2322: Type 'never[] | undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n", @@ -216643,7 +216716,7 @@ } }, { - "id": "4428", + "id": "4429", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.additionalCards", "statusReason": "Snapshot `Recipient Role Additional Cards Manager Component > should match snapshot when rendered. 1` mismatched", @@ -216715,7 +216788,7 @@ } }, { - "id": "4429", + "id": "4430", "mutatorName": "OptionalChaining", "replacement": "createGameDto.value.additionalCards.filter", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(187,12): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -216784,7 +216857,7 @@ } }, { - "id": "4430", + "id": "4431", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component > should match snapshot when rendered. 1` mismatched", @@ -216855,7 +216928,7 @@ } }, { - "id": "4431", + "id": "4432", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component > should match snapshot when rendered. 1` mismatched", @@ -216926,7 +216999,7 @@ } }, { - "id": "4432", + "id": "4433", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [] to strictly equal [ …(2) ]", @@ -216997,7 +217070,7 @@ } }, { - "id": "4433", + "id": "4434", "mutatorName": "EqualityOperator", "replacement": "card.recipient !== recipient", "statusReason": "expected [ …(2) ] to strictly equal [ …(2) ]", @@ -217068,7 +217141,7 @@ } }, { - "id": "4434", + "id": "4435", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(187,5): error TS2322: Type '{ roleName: \"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | ... 16 more ... | \"devoted-servant\"; recipient: \"thief\" | \"actor\"; }[] | string[]' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'string[]' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'string' is not assignable to type 'CreateGameAdditionalCardDto'.\n", @@ -217092,7 +217165,7 @@ } }, { - "id": "4435", + "id": "4436", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(190,79): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -217115,7 +217188,7 @@ } }, { - "id": "4436", + "id": "4437", "mutatorName": "LogicalOperator", "replacement": "createGameDto.value.additionalCards?.filter(card => card.roleName === roleName) && []", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(191,5): error TS2322: Type 'never[] | undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n", @@ -217138,7 +217211,7 @@ } }, { - "id": "4437", + "id": "4438", "mutatorName": "MethodExpression", "replacement": "createGameDto.value.additionalCards", "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", @@ -217164,7 +217237,7 @@ } }, { - "id": "4438", + "id": "4439", "mutatorName": "OptionalChaining", "replacement": "createGameDto.value.additionalCards.filter", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(191,12): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", @@ -217187,7 +217260,7 @@ } }, { - "id": "4439", + "id": "4440", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [] to strictly equal [ …(2) ]", @@ -217212,7 +217285,7 @@ } }, { - "id": "4440", + "id": "4441", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", @@ -217237,7 +217310,7 @@ } }, { - "id": "4441", + "id": "4442", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [] to strictly equal [ …(2) ]", @@ -217262,7 +217335,7 @@ } }, { - "id": "4442", + "id": "4443", "mutatorName": "EqualityOperator", "replacement": "card.roleName !== roleName", "statusReason": "expected [ …(2) ] to strictly equal [ …(2) ]", @@ -217287,7 +217360,7 @@ } }, { - "id": "4443", + "id": "4444", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(191,5): error TS2322: Type '{ roleName: \"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | ... 16 more ... | \"devoted-servant\"; recipient: \"thief\" | \"actor\"; }[] | string[]' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'string[]' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'string' is not assignable to type 'CreateGameAdditionalCardDto'.\n", @@ -217309,7 +217382,7 @@ } }, { - "id": "4444", + "id": "4445", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(194,65): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -217337,7 +217410,7 @@ } }, { - "id": "4445", + "id": "4446", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -217370,7 +217443,7 @@ } }, { - "id": "4446", + "id": "4447", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(199,5): error TS2322: Type 'undefined[]' is not assignable to type '{ name: string; role: { name?: \"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | ... 17 more ... | undefined; }; side: { ...; }; group?: string | undefined; }[]'.\n Type 'undefined' is not assignable to type '{ name: string; role: { name?: \"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | ... 17 more ... | undefined; }; side: { ...; }; group?: string | undefined; }'.\n", @@ -217400,7 +217473,7 @@ } }, { - "id": "4447", + "id": "4448", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(199,104): error TS2345: Argument of type '{}' is not assignable to parameter of type 'CreateGamePlayerDto'.\n Type '{}' is missing the following properties from type 'CreateGamePlayerDto': name, role, side\n", @@ -217430,7 +217503,7 @@ } }, { - "id": "4448", + "id": "4449", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ …(3) ] to strictly equal [ Array(1) ]", @@ -217463,7 +217536,7 @@ } }, { - "id": "4449", + "id": "4450", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(207,73): error TS2345: Argument of type '\"\"' is not assignable to parameter of type '\"werewolf\" | \"seer\" | \"cupid\" | \"defender\" | \"elder\" | \"idiot\" | \"fox\" | \"thief\" | \"scandalmonger\" | \"witch\" | \"actor\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | ... 15 more ... | \"devoted-servant\"'.\n", @@ -217493,7 +217566,7 @@ } }, { - "id": "4450", + "id": "4451", "mutatorName": "BooleanLiteral", "replacement": "prejudicedManipulator.length", "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -217526,7 +217599,7 @@ } }, { - "id": "4451", + "id": "4452", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -217559,7 +217632,7 @@ } }, { - "id": "4452", + "id": "4453", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -217592,7 +217665,7 @@ } }, { - "id": "4453", + "id": "4454", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", @@ -217624,7 +217697,7 @@ } }, { - "id": "4454", + "id": "4455", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "tests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/GameLobbyAdditionalCardsManagerContent.spec.ts(38,24): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/GameLobbyAdditionalCardsManagerContent.spec.ts(39,24): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/GameLobbyAdditionalCardsManagerContent.spec.ts(40,24): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(57,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(80,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(89,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(104,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(128,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts(142,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsManager.spec.ts(60,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsManager.spec.ts(98,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsManager.spec.ts(114,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(113,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(171,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(248,33): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(253,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(270,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(291,33): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(69,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(110,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(120,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(56,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(75,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(91,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(147,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(156,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(173,30): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(190,41): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(202,30): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(246,37): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(251,30): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(265,37): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(282,37): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(287,30): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(301,37): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(112,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(128,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(157,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(167,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(178,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(207,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(223,111): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(87,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(104,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(116,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(128,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(132,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts(171,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogActorAdditionalCardsPlaced/GameLobbyStartGameConfirmDialogActorAdditionalCardsPlaced.nuxt.spec.ts(56,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(40,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(69,35): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(78,35): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(83,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(86,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(91,35): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts(92,35): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/GameLobbyStartGameConfirmDialogGameOptionsChanged.nuxt.spec.ts(40,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogThiefAdditionalCardsPlaced/GameLobbyStartGameConfirmDialogThiefAdditionalCardsPlaced.nuxt.spec.ts(56,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerDisclaimer/GameLobbyGroupOrganizerDisclaimer.nuxt.spec.ts(162,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerGroupNames/GameLobbyGroupOrganizerGroupNames.nuxt.spec.ts(48,33): error TS2339: Property 'setFirstDefaultGroupName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerGroupNames/GameLobbyGroupOrganizerGroupNames.nuxt.spec.ts(58,33): error TS2339: Property 'setSecondDefaultGroupName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerPickList/GameLobbyGroupOrganizerPickList.nuxt.spec.ts(120,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerPickList/GameLobbyGroupOrganizerPickList.nuxt.spec.ts(124,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerPickList/GameLobbyGroupOrganizerPickList.nuxt.spec.ts(140,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyGroupOrganizer/GameLobbyGroupOrganizerContent/GameLobbyGroupOrganizerPickList/GameLobbyGroupOrganizerPickList.nuxt.spec.ts(144,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(129,35): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(144,35): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderAdditionalCardsManagerButton/GameLobbyHeaderAdditionalCardsManagerButton.nuxt.spec.ts(45,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderAdditionalCardsManagerButton/GameLobbyHeaderAdditionalCardsManagerButton.nuxt.spec.ts(62,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderGroupOrganizerButton/GameLobbyHeaderGroupOrganizerButton.nuxt.spec.ts(42,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderGroupOrganizerButton/GameLobbyHeaderGroupOrganizerButton.nuxt.spec.ts(59,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.nuxt.spec.ts(42,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.nuxt.spec.ts(59,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(91,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(102,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(139,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(173,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(97,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(106,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(119,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(136,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(145,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(159,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(173,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(200,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(209,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubFooter/GameLobbyOptionsHubFooter.nuxt.spec.ts(51,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubFooter/GameLobbyOptionsHubFooter.nuxt.spec.ts(76,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubFooter/GameLobbyOptionsHubFooter.nuxt.spec.ts(77,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubFooter/GameLobbyOptionsHubFooter.nuxt.spec.ts(88,35): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubCompositionTab/GameLobbyOptionsHubCompositionTab.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubCompositionTab/GameLobbyOptionsHubCompositionTab.nuxt.spec.ts(56,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubCompositionTab/GameLobbyOptionsHubCompositionTab.nuxt.spec.ts(69,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubCompositionTab/GameLobbyOptionsHubCompositionTab.nuxt.spec.ts(72,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabActor/GameLobbyOptionsHubRolesTabActor.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabActor/GameLobbyOptionsHubRolesTabActor.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabActor/GameLobbyOptionsHubRolesTabActor.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabActor/GameLobbyOptionsHubRolesTabActor.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBearTamer/GameLobbyOptionsHubRolesTabBearTamer.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBearTamer/GameLobbyOptionsHubRolesTabBearTamer.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBearTamer/GameLobbyOptionsHubRolesTabBearTamer.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBearTamer/GameLobbyOptionsHubRolesTabBearTamer.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBigBadWolf/GameLobbyOptionsHubRolesTabBigBadWolf.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBigBadWolf/GameLobbyOptionsHubRolesTabBigBadWolf.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBigBadWolf/GameLobbyOptionsHubRolesTabBigBadWolf.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBigBadWolf/GameLobbyOptionsHubRolesTabBigBadWolf.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(80,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(98,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts(101,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabDefender/GameLobbyOptionsHubRolesTabDefender.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabDefender/GameLobbyOptionsHubRolesTabDefender.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabDefender/GameLobbyOptionsHubRolesTabDefender.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(65,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(68,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(76,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(79,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(88,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(101,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(110,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(122,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts(125,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabFox/GameLobbyOptionsHubRolesTabFox.nuxt.spec.ts(52,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabFox/GameLobbyOptionsHubRolesTabFox.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabFox/GameLobbyOptionsHubRolesTabFox.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(54,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(72,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(75,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(88,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(97,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(109,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts(112,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabIdiot/GameLobbyOptionsHubRolesTabIdiot.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabIdiot/GameLobbyOptionsHubRolesTabIdiot.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabIdiot/GameLobbyOptionsHubRolesTabIdiot.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabIdiot/GameLobbyOptionsHubRolesTabIdiot.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabLittleGirl/GameLobbyOptionsHubRolesTabLittleGirl.nuxt.spec.ts(47,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabLittleGirl/GameLobbyOptionsHubRolesTabLittleGirl.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabLittleGirl/GameLobbyOptionsHubRolesTabLittleGirl.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(66,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(69,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(78,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(81,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(91,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(110,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(122,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(125,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(138,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(147,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(159,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts(162,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPrejudicedManipulator/GameLobbyOptionsHubRolesTabPrejudicedManipulator.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPrejudicedManipulator/GameLobbyOptionsHubRolesTabPrejudicedManipulator.nuxt.spec.ts(70,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPrejudicedManipulator/GameLobbyOptionsHubRolesTabPrejudicedManipulator.nuxt.spec.ts(73,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(76,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(79,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts(89,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(53,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(66,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(69,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(89,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(102,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts(105,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(47,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(77,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(90,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(93,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(106,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(115,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(127,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(130,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(143,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(152,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(164,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts(167,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(58,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(67,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(76,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(85,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(108,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(108,86): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(109,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(110,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(120,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(130,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(143,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(146,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(154,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(158,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(173,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(176,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(185,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(188,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts(198,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(64,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(67,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(75,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(78,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts(87,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(53,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(66,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(69,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(82,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(91,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(103,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts(106,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(65,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(68,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(78,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(81,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts(91,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(65,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(68,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(78,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(81,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts(91,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWerewolf/GameLobbyOptionsHubRolesTabWerewolf.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWerewolf/GameLobbyOptionsHubRolesTabWerewolf.nuxt.spec.ts(56,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWerewolf/GameLobbyOptionsHubRolesTabWerewolf.nuxt.spec.ts(69,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWerewolf/GameLobbyOptionsHubRolesTabWerewolf.nuxt.spec.ts(72,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(65,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(68,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(78,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(81,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts(91,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWildChild/GameLobbyOptionsHubRolesTabWildChild.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWildChild/GameLobbyOptionsHubRolesTabWildChild.nuxt.spec.ts(56,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWildChild/GameLobbyOptionsHubRolesTabWildChild.nuxt.spec.ts(70,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWildChild/GameLobbyOptionsHubRolesTabWildChild.nuxt.spec.ts(73,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWitch/GameLobbyOptionsHubRolesTabWitch.nuxt.spec.ts(53,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWitch/GameLobbyOptionsHubRolesTabWitch.nuxt.spec.ts(67,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWitch/GameLobbyOptionsHubRolesTabWitch.nuxt.spec.ts(70,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(56,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(69,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(72,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(85,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(95,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(108,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts(111,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(49,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(59,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(72,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(75,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(100,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(103,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(113,80): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(116,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts(126,33): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayerCard/GameLobbyPlayerCard.nuxt.spec.ts(72,33): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayerCard/GameLobbyPlayerCard.nuxt.spec.ts(80,33): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.nuxt.spec.ts(38,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.nuxt.spec.ts(54,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.nuxt.spec.ts(61,48): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.nuxt.spec.ts(73,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPositionCoordinator/GameLobbyPositionCoordinatorSorter/GameLobbyPositionCoordinatorSorter.nuxt.spec.ts(82,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(39,24): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(43,24): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(64,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(65,26): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(66,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(84,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(85,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(112,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(116,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(131,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(132,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(133,26): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(134,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(144,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(145,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(146,26): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(147,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(157,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(158,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(159,26): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts(160,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(57,24): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(121,28): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(122,28): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(139,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(154,28): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(155,28): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(182,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(183,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(193,28): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(194,28): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(216,35): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(255,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(260,35): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(268,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(295,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(308,28): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts(319,35): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(32,24): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(33,24): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(34,24): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(58,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(59,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(60,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(74,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(75,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(76,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(89,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(90,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(91,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(116,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(117,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(118,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(132,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(133,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(143,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(144,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(145,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(168,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(169,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(170,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(184,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(185,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(186,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(196,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(197,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(198,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(208,26): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(209,26): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts(210,26): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, {}>'.\ntests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts(170,33): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts(397,33): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts(409,33): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(41,31): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(47,31): error TS2339: Property 'firstGroupName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(53,31): error TS2339: Property 'secondGroupName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(59,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(64,33): error TS2339: Property 'doesCreateGameDtoContainPositionDependantRoles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(69,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(74,33): error TS2339: Property 'doesCreateGameDtoContainPositionDependantRoles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(81,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(86,33): error TS2339: Property 'doesCreateGameDtoContainAdditionalCardsDependantRoles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(91,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(96,33): error TS2339: Property 'doesCreateGameDtoContainAdditionalCardsDependantRoles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(111,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(113,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(126,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(128,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(140,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(158,26): error TS2339: Property 'changePlayersOldGroupNameToNew' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(160,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(167,26): error TS2339: Property 'firstGroupName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(173,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(190,26): error TS2339: Property 'setFirstDefaultGroupName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(192,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(199,26): error TS2339: Property 'secondGroupName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(205,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(222,26): error TS2339: Property 'setSecondDefaultGroupName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(224,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(231,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(242,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(244,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(251,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(262,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(264,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(271,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(278,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(281,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(288,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(289,26): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(292,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(297,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(298,26): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(301,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(308,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(309,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(310,26): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(313,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(321,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(322,26): error TS2339: Property 'saveCreateGameOptionsDtoToLocalStorage' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(324,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(345,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(350,26): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(352,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(357,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(358,26): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(360,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(373,26): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(375,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(387,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(398,26): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(400,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(410,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(417,26): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(419,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(431,26): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(433,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(445,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(453,26): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(455,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(465,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(471,26): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(473,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(480,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(485,33): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(490,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(495,33): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(507,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(510,41): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(525,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(528,41): error TS2339: Property 'getPlayersWithAnyRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(604,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(606,33): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(661,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(663,33): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(725,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(727,33): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(744,26): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(746,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(765,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(778,26): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(780,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(805,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(811,41): error TS2339: Property 'getAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(818,41): error TS2339: Property 'getAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(845,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(851,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(858,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(872,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(877,41): error TS2339: Property 'getPlayersInGroupInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(891,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(909,26): error TS2339: Property 'removeGroupFromPlayersInCreateGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(911,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(932,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(937,26): error TS2339: Property 'sanitizeCreateGameDtoForGameCreation' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(939,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(952,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(955,26): error TS2339: Property 'sanitizeCreateGameDtoForGameCreation' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(957,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(970,26): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(973,26): error TS2339: Property 'sanitizeCreateGameDtoForGameCreation' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(989,33): error TS2339: Property 'createGameDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\n", @@ -218231,7 +218304,7 @@ "language": "typescript", "mutants": [ { - "id": "4455", + "id": "4456", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/useGameStore.ts(30,11): error TS2339: Property 'resetGameEventIndex' does not exist on type '_StoreWithState & _StoreWithGetters_Readonly<{}> & _StoreWithGetters_Writable<{}> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(62,21): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(71,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(123,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(128,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(133,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(138,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(144,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(154,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(159,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(167,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(171,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(182,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(188,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(230,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(239,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(257,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(268,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(279,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventTextsManager.nuxt.spec.ts(99,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(46,28): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(47,28): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(48,28): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(60,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(62,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(74,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(86,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(88,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(102,30): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(115,30): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(122,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(123,23): error TS2339: Property 'resetGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(125,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(139,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(141,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(149,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(151,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(152,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(163,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(165,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(176,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(178,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(192,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(205,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(217,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(222,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(235,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(237,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(245,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(247,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(260,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(261,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(262,23): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(264,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\n", @@ -218906,11 +218979,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -218986,7 +219059,7 @@ } }, { - "id": "4456", + "id": "4457", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Events Monitor Current Event Component > should match snapshot when rendered. 1` mismatched", @@ -219664,11 +219737,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -219744,7 +219817,7 @@ } }, { - "id": "4457", + "id": "4458", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "Snapshot `Game Events Monitor Current Event Component > should match snapshot when rendered. 1` mismatched", @@ -220422,11 +220495,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -220502,7 +220575,7 @@ } }, { - "id": "4458", + "id": "4459", "mutatorName": "OptionalChaining", "replacement": "gameEvents.value[currentGameEventIndex.value]", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(15,66): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", @@ -220556,7 +220629,7 @@ } }, { - "id": "4459", + "id": "4460", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(16,36): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -221231,11 +221304,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -221311,7 +221384,7 @@ } }, { - "id": "4460", + "id": "4461", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", @@ -221361,7 +221434,7 @@ } }, { - "id": "4461", + "id": "4462", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected '' to be undefined", @@ -221411,7 +221484,7 @@ } }, { - "id": "4462", + "id": "4463", "mutatorName": "LogicalOperator", "replacement": "currentGameEventIndex.value > 0 || gameStore.makingGamePlayStatus !== \"pending\"", "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", @@ -221461,7 +221534,7 @@ } }, { - "id": "4463", + "id": "4464", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", @@ -221511,7 +221584,7 @@ } }, { - "id": "4464", + "id": "4465", "mutatorName": "EqualityOperator", "replacement": "currentGameEventIndex.value >= 0", "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", @@ -221561,7 +221634,7 @@ } }, { - "id": "4465", + "id": "4466", "mutatorName": "EqualityOperator", "replacement": "currentGameEventIndex.value <= 0", "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", @@ -221611,7 +221684,7 @@ } }, { - "id": "4466", + "id": "4467", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be falsy", @@ -221645,7 +221718,7 @@ } }, { - "id": "4467", + "id": "4468", "mutatorName": "EqualityOperator", "replacement": "gameStore.makingGamePlayStatus === \"pending\"", "statusReason": "expected '' to be undefined", @@ -221679,7 +221752,7 @@ } }, { - "id": "4468", + "id": "4469", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(16,95): error TS2367: This comparison appears to be unintentional because the types 'AsyncDataRequestStatus' and '\"\"' have no overlap.\n", @@ -221710,7 +221783,7 @@ } }, { - "id": "4469", + "id": "4470", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(17,32): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'boolean'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -222385,11 +222458,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -222465,7 +222538,7 @@ } }, { - "id": "4470", + "id": "4471", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected \"spy\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st spy call:\n\n Array []\n\n\nNumber of calls: 1\n", @@ -222514,7 +222587,7 @@ } }, { - "id": "4471", + "id": "4472", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", @@ -222563,7 +222636,7 @@ } }, { - "id": "4472", + "id": "4473", "mutatorName": "EqualityOperator", "replacement": "gameStore.makingGamePlayStatus === \"pending\"", "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", @@ -222612,7 +222685,7 @@ } }, { - "id": "4473", + "id": "4474", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(17,56): error TS2367: This comparison appears to be unintentional because the types 'AsyncDataRequestStatus' and '\"\"' have no overlap.\n", @@ -222658,7 +222731,7 @@ } }, { - "id": "4474", + "id": "4475", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected 2 to be +0 // Object.is equality", @@ -222687,7 +222760,7 @@ } }, { - "id": "4475", + "id": "4476", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ …(2) }", @@ -222721,7 +222794,7 @@ } }, { - "id": "4476", + "id": "4477", "mutatorName": "BooleanLiteral", "replacement": "gameEvents.value", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(28,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(29,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(30,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", @@ -222752,7 +222825,7 @@ } }, { - "id": "4477", + "id": "4478", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(28,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(29,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(30,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", @@ -222783,7 +222856,7 @@ } }, { - "id": "4478", + "id": "4479", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(28,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(29,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(30,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", @@ -222814,7 +222887,7 @@ } }, { - "id": "4479", + "id": "4480", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(26,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(27,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(28,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", @@ -222836,7 +222909,7 @@ } }, { - "id": "4480", + "id": "4481", "mutatorName": "ArithmeticOperator", "replacement": "currentGameEventIndex.value - 1", "statusReason": "Cannot read properties of undefined (reading 'type')", @@ -222869,7 +222942,7 @@ } }, { - "id": "4481", + "id": "4482", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -222902,7 +222975,7 @@ } }, { - "id": "4482", + "id": "4483", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -222935,7 +223008,7 @@ } }, { - "id": "4483", + "id": "4484", "mutatorName": "EqualityOperator", "replacement": "currentGameEventIndex.value !== gameEvents.value.length - 1", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -222968,7 +223041,7 @@ } }, { - "id": "4484", + "id": "4485", "mutatorName": "ArithmeticOperator", "replacement": "gameEvents.value.length + 1", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -223001,7 +223074,7 @@ } }, { - "id": "4485", + "id": "4486", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -223034,7 +223107,7 @@ } }, { - "id": "4486", + "id": "4487", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", @@ -223067,7 +223140,7 @@ } }, { - "id": "4487", + "id": "4488", "mutatorName": "LogicalOperator", "replacement": "gameEvents.value.length > currentGameEventIndex.value + 1 || nextGameEvent.type === \"game-turn-starts\"", "statusReason": "Cannot read properties of undefined (reading 'type')", @@ -223100,7 +223173,7 @@ } }, { - "id": "4488", + "id": "4489", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "Cannot read properties of undefined (reading 'type')", @@ -223133,7 +223206,7 @@ } }, { - "id": "4489", + "id": "4490", "mutatorName": "EqualityOperator", "replacement": "gameEvents.value.length >= currentGameEventIndex.value + 1", "statusReason": "Cannot read properties of undefined (reading 'type')", @@ -223166,7 +223239,7 @@ } }, { - "id": "4490", + "id": "4491", "mutatorName": "EqualityOperator", "replacement": "gameEvents.value.length <= currentGameEventIndex.value + 1", "statusReason": "Cannot read properties of undefined (reading 'type')", @@ -223199,7 +223272,7 @@ } }, { - "id": "4491", + "id": "4492", "mutatorName": "ArithmeticOperator", "replacement": "currentGameEventIndex.value - 1", "statusReason": "Cannot read properties of undefined (reading 'type')", @@ -223232,7 +223305,7 @@ } }, { - "id": "4492", + "id": "4493", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -223263,7 +223336,7 @@ } }, { - "id": "4493", + "id": "4494", "mutatorName": "EqualityOperator", "replacement": "nextGameEvent.type !== \"game-turn-starts\"", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -223294,7 +223367,7 @@ } }, { - "id": "4494", + "id": "4495", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(30,104): error TS2367: This comparison appears to be unintentional because the types '\"game-starts\" | \"game-phase-starts\" | \"game-turn-starts\" | \"villager-villager-introduction\" | \"death\" | \"seer-has-seen\" | \"sheriff-promotion\" | \"scandalmonger-may-have-marked\" | ... 12 more ... | \"scandalmonger-mark-is-active\"' and '\"\"' have no overlap.\n", @@ -223322,7 +223395,7 @@ } }, { - "id": "4495", + "id": "4496", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -223355,7 +223428,7 @@ } }, { - "id": "4496", + "id": "4497", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", @@ -223388,7 +223461,7 @@ } }, { - "id": "4497", + "id": "4498", "mutatorName": "LogicalOperator", "replacement": "gameStore.game.currentPlay?.action === \"bury-dead-bodies\" || isNextGameEventGameTurnStarts", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -223421,7 +223494,7 @@ } }, { - "id": "4498", + "id": "4499", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected \"spy\" to not be called at all, but actually been called 1 times\n\nReceived: \n\n 1st spy call:\n\n Array []\n\n\nNumber of calls: 1\n", @@ -223454,7 +223527,7 @@ } }, { - "id": "4499", + "id": "4500", "mutatorName": "EqualityOperator", "replacement": "gameStore.game.currentPlay?.action !== \"bury-dead-bodies\"", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", @@ -223487,7 +223560,7 @@ } }, { - "id": "4500", + "id": "4501", "mutatorName": "OptionalChaining", "replacement": "gameStore.game.currentPlay.action", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(31,73): error TS18047: 'gameStore.game.currentPlay' is possibly 'null'.\n", @@ -223517,7 +223590,7 @@ } }, { - "id": "4501", + "id": "4502", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(31,73): error TS2367: This comparison appears to be unintentional because the types '\"vote\" | \"choose-card\" | \"choose-side\" | \"request-another-vote\" | \"bury-dead-bodies\" | \"eat\" | \"look\" | \"charm\" | \"shoot\" | \"protect\" | \"mark\" | \"sniff\" | \"ban-voting\" | \"infect\" | ... 6 more ... | undefined' and '\"\"' have no overlap.\n", @@ -223547,7 +223620,7 @@ } }, { - "id": "4502", + "id": "4503", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ …(2) }", @@ -223580,7 +223653,7 @@ } }, { - "id": "4503", + "id": "4504", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", @@ -223613,7 +223686,7 @@ } }, { - "id": "4504", + "id": "4505", "mutatorName": "LogicalOperator", "replacement": "isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts && mustCurrentGamePlayBeSkipped.value && isLastGameEvent && mustCurrentGamePlayBeSkipped.value", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", @@ -223646,7 +223719,7 @@ } }, { - "id": "4505", + "id": "4506", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", @@ -223679,7 +223752,7 @@ } }, { - "id": "4506", + "id": "4507", "mutatorName": "LogicalOperator", "replacement": "isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts || mustCurrentGamePlayBeSkipped.value", "statusReason": "expected +0 to be 1 // Object.is equality", @@ -223712,7 +223785,7 @@ } }, { - "id": "4507", + "id": "4508", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -223742,7 +223815,7 @@ } }, { - "id": "4508", + "id": "4509", "mutatorName": "LogicalOperator", "replacement": "isLastGameEvent || mustCurrentGamePlayBeSkipped.value", "statusReason": "expected _GameEvent{ …(2) } to be undefined", @@ -223772,7 +223845,7 @@ } }, { - "id": "4509", + "id": "4510", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", @@ -223800,7 +223873,7 @@ } }, { - "id": "4510", + "id": "4511", "mutatorName": "AssignmentOperator", "replacement": "currentGameEventIndex.value -= 1", "statusReason": "expected undefined to strictly equal _GameEvent{ …(2) }", @@ -223829,7 +223902,7 @@ } }, { - "id": "4511", + "id": "4512", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ …(2) }", @@ -223854,7 +223927,7 @@ } }, { - "id": "4512", + "id": "4513", "mutatorName": "AssignmentOperator", "replacement": "currentGameEventIndex.value += 1", "statusReason": "expected undefined to strictly equal _GameEvent{ …(2) }", @@ -223879,7 +223952,7 @@ } }, { - "id": "4513", + "id": "4514", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/game/useGameStore.ts(30,11): error TS2339: Property 'resetGameEventIndex' does not exist on type '_StoreWithState, Pick<{}, never>, Pick<{}, never>> & Pick<{}, never> & _StoreWithGetters_Readonly> & _StoreWithGetters_Writable<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(62,21): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(71,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(123,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(128,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(133,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(138,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(144,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(154,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(159,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(167,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(171,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(182,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(188,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(230,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(239,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(257,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(268,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(279,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventTextsManager.nuxt.spec.ts(99,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(46,28): error TS2339: Property 'currentGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(47,28): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(48,28): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(60,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(62,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(74,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(86,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(88,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(102,30): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(115,30): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(122,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(123,23): error TS2339: Property 'resetGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(125,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(139,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(141,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(149,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(151,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(152,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(163,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(165,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(176,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(178,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(192,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(205,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(217,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(222,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(235,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(237,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(245,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(247,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(260,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(261,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(262,23): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(264,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\n", @@ -224554,11 +224627,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -224640,7 +224713,7 @@ "language": "typescript", "mutants": [ { - "id": "4514", + "id": "4515", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "tests/unit/specs/components/pages/game/GameOver/GameOverActions/GameOverActions.nuxt.spec.ts(72,31): error TS2339: Property 'gameHistoryRecords' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(25,36): error TS2339: Property 'gameHistoryRecords' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(26,36): error TS2339: Property 'fetchingGameHistoryRecordsStatus' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(32,37): error TS2339: Property 'fetchAndSetGameHistoryRecords' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(45,37): error TS2339: Property 'fetchAndSetGameHistoryRecords' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(47,38): error TS2339: Property 'gameHistoryRecords' does not exist on type 'Store'.\n", @@ -224673,9 +224746,9 @@ "1693", "1694", "1695", - "1844", - "1845", - "1846", + "1839", + "1840", + "1841", "2014", "2015", "2016" @@ -224692,7 +224765,7 @@ } }, { - "id": "4515", + "id": "4516", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(11,56): error TS2322: Type 'string' is not assignable to type 'GameHistoryRecord'.\n", @@ -224725,9 +224798,9 @@ "1693", "1694", "1695", - "1844", - "1845", - "1846", + "1839", + "1840", + "1841", "2014", "2015", "2016" @@ -224744,7 +224817,7 @@ } }, { - "id": "4516", + "id": "4517", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(12,72): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", @@ -224777,9 +224850,9 @@ "1693", "1694", "1695", - "1844", - "1845", - "1846", + "1839", + "1840", + "1841", "2014", "2015", "2016" @@ -224796,7 +224869,7 @@ } }, { - "id": "4517", + "id": "4518", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -224822,7 +224895,7 @@ } }, { - "id": "4518", + "id": "4519", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(15,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -224845,7 +224918,7 @@ } }, { - "id": "4519", + "id": "4520", "mutatorName": "BooleanLiteral", "replacement": "fetchedGameHistoryRecords", "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(22,5): error TS2322: Type 'null' is not assignable to type 'GameHistoryRecord[] | { _id: string; gameId: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; play: { type: \"vote\" | \"no-action\" | ... 4 more ... | \"bury-dead-bodies\"; ... 8 more ...; chosenSide?: \"villagers\" | ... 1 more ... | undefined; }; ... 4 more ...; createdAt:...'.\n", @@ -224868,7 +224941,7 @@ } }, { - "id": "4520", + "id": "4521", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(22,5): error TS2322: Type 'GameHistoryRecord[] | null' is not assignable to type 'GameHistoryRecord[] | { _id: string; gameId: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; play: { type: \"no-action\" | \"vote\" | ... 4 more ... | \"bury-dead-bodies\"; ... 8 more ...; chosenSide?: \"villagers\" | ... 1 more ... | undefined; }; ... 4 more ...; createdAt:...'.\n Type 'null' is not assignable to type 'GameHistoryRecord[] | { _id: string; gameId: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; play: { type: \"no-action\" | \"vote\" | ... 4 more ... | \"bury-dead-bodies\"; ... 8 more ...; chosenSide?: \"villagers\" | ... 1 more ... | undefined; }; ... 4 more ...; createdAt:...'.\n", @@ -224891,7 +224964,7 @@ } }, { - "id": "4521", + "id": "4522", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(22,5): error TS2322: Type 'GameHistoryRecord[] | null' is not assignable to type 'GameHistoryRecord[] | { _id: string; gameId: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; play: { type: \"no-action\" | \"vote\" | ... 4 more ... | \"bury-dead-bodies\"; ... 8 more ...; chosenSide?: \"villagers\" | ... 1 more ... | undefined; }; ... 4 more ...; createdAt:...'.\n Type 'null' is not assignable to type 'GameHistoryRecord[] | { _id: string; gameId: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; play: { type: \"no-action\" | \"vote\" | ... 4 more ... | \"bury-dead-bodies\"; ... 8 more ...; chosenSide?: \"villagers\" | ... 1 more ... | undefined; }; ... 4 more ...; createdAt:...'.\n", @@ -224914,7 +224987,7 @@ } }, { - "id": "4522", + "id": "4523", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(18,5): error TS2322: Type 'GameHistoryRecord[] | null' is not assignable to type 'GameHistoryRecord[] | { _id: string; gameId: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; play: { type: \"no-action\" | \"vote\" | ... 4 more ... | \"bury-dead-bodies\"; ... 8 more ...; chosenSide?: \"villagers\" | ... 1 more ... | undefined; }; ... 4 more ...; createdAt:...'.\n Type 'null' is not assignable to type 'GameHistoryRecord[] | { _id: string; gameId: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; play: { type: \"no-action\" | \"vote\" | ... 4 more ... | \"bury-dead-bodies\"; ... 8 more ...; chosenSide?: \"villagers\" | ... 1 more ... | undefined; }; ... 4 more ...; createdAt:...'.\n", @@ -224936,7 +225009,7 @@ } }, { - "id": "4523", + "id": "4524", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(18,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -224958,7 +225031,7 @@ } }, { - "id": "4524", + "id": "4525", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(23,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -224980,7 +225053,7 @@ } }, { - "id": "4525", + "id": "4526", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "tests/unit/specs/components/pages/game/GameOver/GameOverActions/GameOverActions.nuxt.spec.ts(72,31): error TS2339: Property 'gameHistoryRecords' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(25,36): error TS2339: Property 'gameHistoryRecords' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(26,36): error TS2339: Property 'fetchingGameHistoryRecordsStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(32,37): error TS2339: Property 'fetchAndSetGameHistoryRecords' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(45,37): error TS2339: Property 'fetchAndSetGameHistoryRecords' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts(47,38): error TS2339: Property 'gameHistoryRecords' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\n", @@ -225013,9 +225086,9 @@ "1693", "1694", "1695", - "1844", - "1845", - "1846", + "1839", + "1840", + "1841", "2014", "2015", "2016" @@ -225038,7 +225111,7 @@ "language": "typescript", "mutants": [ { - "id": "4526", + "id": "4527", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlayground.nuxt.spec.ts(86,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlayground.nuxt.spec.ts(92,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlayground.nuxt.spec.ts(98,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlayground.nuxt.spec.ts(104,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(40,35): error TS2339: Property 'setChosenSide' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(45,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(55,30): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(67,30): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(82,35): error TS2339: Property 'setChosenSide' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(87,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(97,30): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(109,30): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameRequestAnotherVotePlayground/GameRequestAnotherVotePlayground.nuxt.spec.ts(77,35): error TS2339: Property 'setDoesJudgeRequestAnotherVote' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameRequestAnotherVotePlayground/GameRequestAnotherVotePlayground.nuxt.spec.ts(87,35): error TS2339: Property 'setDoesJudgeRequestAnotherVote' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameRequestAnotherVotePlayground/GameRequestAnotherVotePlayground.nuxt.spec.ts(88,35): error TS2339: Property 'setDoesJudgeRequestAnotherVote' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(19,33): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(32,28): error TS2339: Property 'setMakeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(34,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(41,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(49,28): error TS2339: Property 'resetMakeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(51,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(58,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(60,28): error TS2339: Property 'addMakeGamePlayTargetDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(62,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(68,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(70,28): error TS2339: Property 'addMakeGamePlayTargetDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(73,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(80,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(81,28): error TS2339: Property 'removeMakeGamePlayTargetDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(83,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(89,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(90,28): error TS2339: Property 'removeMakeGamePlayTargetDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(92,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(102,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(103,28): error TS2339: Property 'removeMakeGamePlayTargetDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(106,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(113,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(114,28): error TS2339: Property 'removeMakeGamePlayTargetDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(116,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(123,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(124,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(126,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(131,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(132,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(134,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(144,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(145,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(148,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(155,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(156,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDtoWithPotion' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(158,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(163,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(164,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDtoWithPotion' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(166,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(176,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(177,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDtoWithPotion' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(179,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(189,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(190,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDtoWithPotion' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(193,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(200,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(202,28): error TS2339: Property 'addMakeGamePlayVoteDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(204,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(210,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(212,28): error TS2339: Property 'addMakeGamePlayVoteDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(215,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(222,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(223,28): error TS2339: Property 'removeMakeGamePlayVoteDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(225,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(231,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(232,28): error TS2339: Property 'removeMakeGamePlayVoteDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(234,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(244,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(245,28): error TS2339: Property 'removeMakeGamePlayVoteDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(248,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(255,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(256,28): error TS2339: Property 'removeMakeGamePlayVoteDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(258,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(265,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(266,28): error TS2339: Property 'setDoesJudgeRequestAnotherVote' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(268,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(275,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(276,28): error TS2339: Property 'setChosenCardId' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(278,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(285,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(286,28): error TS2339: Property 'setChosenSide' does not exist on type 'Store'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(288,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store'.\n", @@ -225174,7 +225247,7 @@ } }, { - "id": "4527", + "id": "4528", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _MakeGamePlayDto{ …(5) } to strictly equal _MakeGamePlayDto{ targets: [], …(4) }", @@ -225199,7 +225272,7 @@ } }, { - "id": "4528", + "id": "4529", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _MakeGamePlayDto{ targets: [], …(4) } to strictly equal _MakeGamePlayDto{ …(5) }", @@ -225224,7 +225297,7 @@ } }, { - "id": "4529", + "id": "4530", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", @@ -225250,7 +225323,7 @@ } }, { - "id": "4530", + "id": "4531", "mutatorName": "BooleanLiteral", "replacement": "makeGamePlayDto.value.targets", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(25,5): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225273,7 +225346,7 @@ } }, { - "id": "4531", + "id": "4532", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ _MakeGamePlayTargetDto{ …(2) } ] to strictly equal [ Array(2) ]", @@ -225299,7 +225372,7 @@ } }, { - "id": "4532", + "id": "4533", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(25,5): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225322,7 +225395,7 @@ } }, { - "id": "4533", + "id": "4534", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(23,5): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225344,7 +225417,7 @@ } }, { - "id": "4534", + "id": "4535", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(23,40): error TS2322: Type 'string' is not assignable to type '{ playerId: string; drankPotion?: \"death\" | \"life\" | undefined; }'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(25,5): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225366,7 +225439,7 @@ } }, { - "id": "4535", + "id": "4536", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", @@ -225396,7 +225469,7 @@ } }, { - "id": "4536", + "id": "4537", "mutatorName": "BooleanLiteral", "replacement": "makeGamePlayDto.value.targets", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(32,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(32,65): error TS7006: Parameter 'target' implicitly has an 'any' type.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(34,39): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(36,9): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225423,7 +225496,7 @@ } }, { - "id": "4537", + "id": "4538", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(32,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(34,39): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(36,9): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225450,7 +225523,7 @@ } }, { - "id": "4538", + "id": "4539", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(32,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(34,39): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(36,9): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225477,7 +225550,7 @@ } }, { - "id": "4539", + "id": "4540", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(30,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(32,39): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(34,9): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225499,7 +225572,7 @@ } }, { - "id": "4540", + "id": "4541", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", @@ -225528,7 +225601,7 @@ } }, { - "id": "4541", + "id": "4542", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", @@ -225557,7 +225630,7 @@ } }, { - "id": "4542", + "id": "4543", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", @@ -225586,7 +225659,7 @@ } }, { - "id": "4543", + "id": "4544", "mutatorName": "EqualityOperator", "replacement": "target.playerId !== targetId", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", @@ -225615,7 +225688,7 @@ } }, { - "id": "4544", + "id": "4545", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", @@ -225644,7 +225717,7 @@ } }, { - "id": "4545", + "id": "4546", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(34,39): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225670,7 +225743,7 @@ } }, { - "id": "4546", + "id": "4547", "mutatorName": "EqualityOperator", "replacement": "targetIndex === -1", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", @@ -225699,7 +225772,7 @@ } }, { - "id": "4547", + "id": "4548", "mutatorName": "UnaryOperator", "replacement": "+1", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", @@ -225728,7 +225801,7 @@ } }, { - "id": "4548", + "id": "4549", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", @@ -225756,7 +225829,7 @@ } }, { - "id": "4549", + "id": "4550", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", @@ -225785,7 +225858,7 @@ } }, { - "id": "4550", + "id": "4551", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [] to be undefined", @@ -225814,7 +225887,7 @@ } }, { - "id": "4551", + "id": "4552", "mutatorName": "EqualityOperator", "replacement": "makeGamePlayDto.value.targets.length !== 0", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", @@ -225843,7 +225916,7 @@ } }, { - "id": "4552", + "id": "4553", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [] to be undefined", @@ -225868,7 +225941,7 @@ } }, { - "id": "4553", + "id": "4554", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", @@ -225895,7 +225968,7 @@ } }, { - "id": "4554", + "id": "4555", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(45,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225919,7 +225992,7 @@ } }, { - "id": "4555", + "id": "4556", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(45,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225943,7 +226016,7 @@ } }, { - "id": "4556", + "id": "4557", "mutatorName": "LogicalOperator", "replacement": "!makeGamePlayDto.value.targets && makeGamePlayDto.value.targets.length === 0", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(42,43): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(45,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225967,7 +226040,7 @@ } }, { - "id": "4557", + "id": "4558", "mutatorName": "BooleanLiteral", "replacement": "makeGamePlayDto.value.targets", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(42,42): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(45,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -225991,7 +226064,7 @@ } }, { - "id": "4558", + "id": "4559", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "Cannot read properties of undefined (reading 'playerId')", @@ -226017,7 +226090,7 @@ } }, { - "id": "4559", + "id": "4560", "mutatorName": "EqualityOperator", "replacement": "makeGamePlayDto.value.targets.length !== 0", "statusReason": "Cannot read properties of undefined (reading 'playerId')", @@ -226043,7 +226116,7 @@ } }, { - "id": "4560", + "id": "4561", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(43,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -226066,7 +226139,7 @@ } }, { - "id": "4561", + "id": "4562", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", @@ -226094,7 +226167,7 @@ } }, { - "id": "4562", + "id": "4563", "mutatorName": "OptionalChaining", "replacement": "makeGamePlayDto.value.targets.find", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(50,36): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", @@ -226119,7 +226192,7 @@ } }, { - "id": "4563", + "id": "4564", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", @@ -226146,7 +226219,7 @@ } }, { - "id": "4564", + "id": "4565", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ Array(2) ] to strictly equal [ Array(3) ]", @@ -226172,7 +226245,7 @@ } }, { - "id": "4565", + "id": "4566", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", @@ -226198,7 +226271,7 @@ } }, { - "id": "4566", + "id": "4567", "mutatorName": "EqualityOperator", "replacement": "target.drankPotion !== drankPotion", "statusReason": "expected [ Array(2) ] to strictly equal [ Array(3) ]", @@ -226224,7 +226297,7 @@ } }, { - "id": "4567", + "id": "4568", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(52,35): error TS18048: 'firstDrankPotionTarget' is possibly 'undefined'.\n", @@ -226249,7 +226322,7 @@ } }, { - "id": "4568", + "id": "4569", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(52,35): error TS18048: 'firstDrankPotionTarget' is possibly 'undefined'.\n", @@ -226274,7 +226347,7 @@ } }, { - "id": "4569", + "id": "4570", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", @@ -226299,7 +226372,7 @@ } }, { - "id": "4570", + "id": "4571", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", @@ -226325,7 +226398,7 @@ } }, { - "id": "4571", + "id": "4572", "mutatorName": "BooleanLiteral", "replacement": "makeGamePlayDto.value.votes", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(60,5): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", @@ -226348,7 +226421,7 @@ } }, { - "id": "4572", + "id": "4573", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) } ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", @@ -226374,7 +226447,7 @@ } }, { - "id": "4573", + "id": "4574", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(60,5): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", @@ -226397,7 +226470,7 @@ } }, { - "id": "4574", + "id": "4575", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(58,5): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", @@ -226419,7 +226492,7 @@ } }, { - "id": "4575", + "id": "4576", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(58,38): error TS2322: Type 'string' is not assignable to type '{ sourceId: string; targetId: string; }'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(60,5): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", @@ -226441,7 +226514,7 @@ } }, { - "id": "4576", + "id": "4577", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", @@ -226469,7 +226542,7 @@ } }, { - "id": "4577", + "id": "4578", "mutatorName": "BooleanLiteral", "replacement": "makeGamePlayDto.value.votes", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(67,23): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(67,61): error TS7006: Parameter 'vote' implicitly has an 'any' type.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(69,37): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(71,9): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", @@ -226494,7 +226567,7 @@ } }, { - "id": "4578", + "id": "4579", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(67,23): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(69,37): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(71,9): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", @@ -226519,7 +226592,7 @@ } }, { - "id": "4579", + "id": "4580", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(67,23): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(69,37): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(71,9): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", @@ -226544,7 +226617,7 @@ } }, { - "id": "4580", + "id": "4581", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(65,23): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(67,37): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\napp/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(69,9): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", @@ -226566,7 +226639,7 @@ } }, { - "id": "4581", + "id": "4582", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", @@ -226593,7 +226666,7 @@ } }, { - "id": "4582", + "id": "4583", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", @@ -226620,7 +226693,7 @@ } }, { - "id": "4583", + "id": "4584", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", @@ -226647,7 +226720,7 @@ } }, { - "id": "4584", + "id": "4585", "mutatorName": "EqualityOperator", "replacement": "vote.sourceId !== sourceId", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", @@ -226674,7 +226747,7 @@ } }, { - "id": "4585", + "id": "4586", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", @@ -226701,7 +226774,7 @@ } }, { - "id": "4586", + "id": "4587", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(69,37): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", @@ -226725,7 +226798,7 @@ } }, { - "id": "4587", + "id": "4588", "mutatorName": "EqualityOperator", "replacement": "voteIndex === -1", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", @@ -226752,7 +226825,7 @@ } }, { - "id": "4588", + "id": "4589", "mutatorName": "UnaryOperator", "replacement": "+1", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", @@ -226779,7 +226852,7 @@ } }, { - "id": "4589", + "id": "4590", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", @@ -226805,7 +226878,7 @@ } }, { - "id": "4590", + "id": "4591", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", @@ -226832,7 +226905,7 @@ } }, { - "id": "4591", + "id": "4592", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [] to be undefined", @@ -226859,7 +226932,7 @@ } }, { - "id": "4592", + "id": "4593", "mutatorName": "EqualityOperator", "replacement": "makeGamePlayDto.value.votes.length !== 0", "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", @@ -226886,7 +226959,7 @@ } }, { - "id": "4593", + "id": "4594", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [] to be undefined", @@ -226911,7 +226984,7 @@ } }, { - "id": "4594", + "id": "4595", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to be truthy", @@ -226936,7 +227009,7 @@ } }, { - "id": "4595", + "id": "4596", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to be 'cardId' // Object.is equality", @@ -226961,7 +227034,7 @@ } }, { - "id": "4596", + "id": "4597", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected undefined to be 'werewolves' // Object.is equality", @@ -226986,7 +227059,7 @@ } }, { - "id": "4597", + "id": "4598", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlayground.nuxt.spec.ts(86,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlayground.nuxt.spec.ts(92,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlayground.nuxt.spec.ts(98,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlayground.nuxt.spec.ts(104,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlaygroundAdditionalCard/GameChooseCardPlaygroundAdditionalCard.nuxt.spec.ts(65,23): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlaygroundAdditionalCard/GameChooseCardPlaygroundAdditionalCard.nuxt.spec.ts(124,25): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlaygroundAdditionalCard/GameChooseCardPlaygroundAdditionalCard.nuxt.spec.ts(157,25): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlaygroundAdditionalCard/GameChooseCardPlaygroundAdditionalCard.nuxt.spec.ts(230,27): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlaygroundAdditionalCard/GameChooseCardPlaygroundAdditionalCard.nuxt.spec.ts(261,27): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(40,35): error TS2339: Property 'setChosenSide' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(45,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(55,30): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(67,30): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(82,35): error TS2339: Property 'setChosenSide' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(87,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(97,30): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts(109,30): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameRequestAnotherVotePlayground/GameRequestAnotherVotePlayground.nuxt.spec.ts(77,35): error TS2339: Property 'setDoesJudgeRequestAnotherVote' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameRequestAnotherVotePlayground/GameRequestAnotherVotePlayground.nuxt.spec.ts(87,35): error TS2339: Property 'setDoesJudgeRequestAnotherVote' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameRequestAnotherVotePlayground/GameRequestAnotherVotePlayground.nuxt.spec.ts(88,35): error TS2339: Property 'setDoesJudgeRequestAnotherVote' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(19,33): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(32,28): error TS2339: Property 'setMakeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(34,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(41,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(49,28): error TS2339: Property 'resetMakeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(51,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(58,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(60,28): error TS2339: Property 'addMakeGamePlayTargetDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(62,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(68,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(70,28): error TS2339: Property 'addMakeGamePlayTargetDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(73,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(80,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(81,28): error TS2339: Property 'removeMakeGamePlayTargetDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(83,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(89,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(90,28): error TS2339: Property 'removeMakeGamePlayTargetDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(92,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(102,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(103,28): error TS2339: Property 'removeMakeGamePlayTargetDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(106,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(113,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(114,28): error TS2339: Property 'removeMakeGamePlayTargetDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(116,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(123,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(124,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(126,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(131,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(132,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(134,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(144,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(145,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(148,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(155,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(156,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDtoWithPotion' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(158,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(163,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(164,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDtoWithPotion' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(166,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(176,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(177,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDtoWithPotion' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(179,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(189,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(190,28): error TS2339: Property 'removeFirstMakeGamePlayTargetDtoWithPotion' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(193,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(200,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(202,28): error TS2339: Property 'addMakeGamePlayVoteDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(204,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(210,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(212,28): error TS2339: Property 'addMakeGamePlayVoteDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(215,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(222,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(223,28): error TS2339: Property 'removeMakeGamePlayVoteDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(225,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(231,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(232,28): error TS2339: Property 'removeMakeGamePlayVoteDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(234,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(244,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(245,28): error TS2339: Property 'removeMakeGamePlayVoteDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(248,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(255,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(256,28): error TS2339: Property 'removeMakeGamePlayVoteDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(258,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(265,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(266,28): error TS2339: Property 'setDoesJudgeRequestAnotherVote' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(268,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(275,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(276,28): error TS2339: Property 'setChosenCardId' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(278,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(285,28): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(286,28): error TS2339: Property 'setChosenSide' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts(288,35): error TS2339: Property 'makeGamePlayDto' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\n", @@ -227128,7 +227201,7 @@ "language": "typescript", "mutants": [ { - "id": "4598", + "id": "4599", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(13,72): error TS2339: Property 'game' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(16,105): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(17,66): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(27,75): error TS2339: Property 'game' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(31,83): error TS2339: Property 'game' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(36,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(102,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(110,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(138,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(167,13): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(195,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(199,24): error TS2339: Property 'cancelGame' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitter.nuxt.spec.ts(60,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitter.nuxt.spec.ts(75,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitter.nuxt.spec.ts(90,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterButton/GameFeedbackSubmitterButton.nuxt.spec.ts(31,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterButton/GameFeedbackSubmitterButton.nuxt.spec.ts(48,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterEncounteredError/GameFeedbackSubmitterEncounteredError.nuxt.spec.ts(62,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterEncounteredError/GameFeedbackSubmitterEncounteredError.nuxt.spec.ts(71,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterRating/GameFeedbackSubmitterRating.nuxt.spec.ts(54,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterRating/GameFeedbackSubmitterRating.nuxt.spec.ts(63,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterReview/GameFeedbackSubmitterReview.nuxt.spec.ts(65,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterReview/GameFeedbackSubmitterReview.nuxt.spec.ts(74,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterFooter/GameFeedbackSubmitterFooter.nuxt.spec.ts(79,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterFooter/GameFeedbackSubmitterFooter.nuxt.spec.ts(94,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterFooter/GameFeedbackSubmitterFooter.nuxt.spec.ts(112,24): error TS2339: Property 'createGameFeedback' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterFooter/GameFeedbackSubmitterFooter.nuxt.spec.ts(149,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(127,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(230,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(351,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverWinners/GameOverWinners.nuxt.spec.ts(52,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverWinners/GameOverWinners.nuxt.spec.ts(61,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(60,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(79,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(91,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(103,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(115,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(127,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(139,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(151,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(163,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(175,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(187,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(199,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(211,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(223,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(235,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(247,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(259,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(271,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(283,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(295,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(307,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(319,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(54,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(91,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(107,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(123,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(142,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(143,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(144,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(60,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(69,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(78,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(87,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(96,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(105,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(114,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(123,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(132,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(141,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(150,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(159,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(168,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(177,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(186,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(195,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(204,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(213,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(222,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(231,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(240,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(249,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(258,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(267,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(277,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(48,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(177,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(274,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/CurrentPlayExpectedPlayersToAct/CurrentPlayExpectedPlayersToAct.nuxt.spec.ts(47,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/CurrentPlayExpectedPlayersToAct/CurrentPlayExpectedPlayersToAct.nuxt.spec.ts(56,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/CurrentPlayQuestion/CurrentPlayQuestion.nuxt.spec.ts(206,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameBuryDeadBodiesPlayground.nuxt.spec.ts(36,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameBuryDeadBodiesPlayground.nuxt.spec.ts(58,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameBuryDeadBodiesPlayground.nuxt.spec.ts(69,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameBuryDeadBodiesPlayground.nuxt.spec.ts(78,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameDevotedServantStealsRolePlayground/GameDevotedServantStealsRolePlayground.nuxt.spec.ts(65,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameDevotedServantStealsRolePlayground/GameDevotedServantStealsRolePlayground.nuxt.spec.ts(87,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameDevotedServantStealsRolePlayground/GameDevotedServantStealsRolePlayground.nuxt.spec.ts(100,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(39,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(48,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(57,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(66,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(75,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(84,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(93,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(102,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(111,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(92,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(101,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(110,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(121,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(132,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(152,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(172,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(189,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(225,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(253,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(281,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(317,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(345,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(367,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(389,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(400,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(432,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(465,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(474,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCardVoteInput/GamePlaygroundPlayerCardVoteInput.nuxt.spec.ts(99,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCardVoteInput/GamePlaygroundPlayerCardVoteInput.nuxt.spec.ts(113,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCardVoteInput/GamePlaygroundPlayerCardVoteInput.nuxt.spec.ts(127,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCardVoteInput/GamePlaygroundPlayerCardVoteInput.nuxt.spec.ts(143,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(36,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(45,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(54,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(63,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(72,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(88,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/GameUsePotionsPlayground.nuxt.spec.ts(55,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/GameUsePotionsPlayground.nuxt.spec.ts(64,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/GameUsePotionsPlayground.nuxt.spec.ts(75,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/GameUsePotionsPlayground.nuxt.spec.ts(96,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(73,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(95,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(128,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(159,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(196,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(228,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(259,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(296,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlaygroundVoters/GameVotePlaygroundVoters.nuxt.spec.ts(43,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlaygroundVoters/GameVotePlaygroundVoters.nuxt.spec.ts(52,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlaygroundVoters/GameVotePlaygroundVoters.nuxt.spec.ts(61,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlaygroundVoters/GameVotePlaygroundVoters.nuxt.spec.ts(84,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(31,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(42,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(51,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(60,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(69,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(78,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(66,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(75,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(106,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(134,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(155,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(166,26): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(230,19): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCard/GamePlaygroundHeaderCard.nuxt.spec.ts(91,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCard/GamePlaygroundHeaderCard.nuxt.spec.ts(100,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.nuxt.spec.ts(44,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.nuxt.spec.ts(196,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.nuxt.spec.ts(360,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderPhase/GamePlaygroundHeaderPhase.nuxt.spec.ts(40,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderPhase/GamePlaygroundHeaderPhase.nuxt.spec.ts(41,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderPhase/GamePlaygroundHeaderPhase.nuxt.spec.ts(50,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderPhase/GamePlaygroundHeaderPhase.nuxt.spec.ts(51,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(74,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(92,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(112,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(125,74): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(126,74): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(127,74): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(128,74): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(134,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(147,74): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(148,74): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(149,74): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/shared/game/game-event/GameEventFlippingPlayersCard/GameEventFlippingPlayerCard/GameEventFlippingPlaySourcePlayersCard/GameEventFlippingPlaySourcePlayersCard.nuxt.spec.ts(64,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/shared/game/game-event/GameEventFlippingPlayersCard/GameEventFlippingPlayerCard/GameEventFlippingPlaySourcePlayersCard/GameEventFlippingPlaySourcePlayersCard.nuxt.spec.ts(73,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventNextTextButton/GameEventNextTextButton.nuxt.spec.ts(61,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventNextTextButton/GameEventNextTextButton.nuxt.spec.ts(95,19): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventPreviousTextButton/GameEventPreviousTextButton.nuxt.spec.ts(86,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventTextsManager.nuxt.spec.ts(83,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(55,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(68,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(81,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(96,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(109,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(134,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(141,83): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(148,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(159,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(172,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(178,83): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(188,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(201,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(218,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(231,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(244,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(255,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(264,83): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(43,22): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(49,22): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(50,22): error TS2339: Property 'cancelingGameStatus' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(51,22): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(52,22): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(58,22): error TS2339: Property 'gamePlayerGroups' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(63,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(65,22): error TS2339: Property 'gamePlayerGroups' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(71,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(72,17): error TS2339: Property 'resetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(74,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(81,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(90,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(99,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(101,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(108,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(109,23): error TS2339: Property 'cancelGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(118,23): error TS2339: Property 'cancelGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(120,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(127,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(129,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(139,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(149,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(151,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(158,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(159,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(169,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(171,23): error TS2339: Property 'createGameFeedback' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(181,23): error TS2339: Property 'createGameFeedback' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(183,24): error TS2339: Property 'game' does not exist on type 'Store'.\n", @@ -227802,11 +227875,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -227882,7 +227955,7 @@ } }, { - "id": "4599", + "id": "4600", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/game/useGameStore.ts(21,23): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'GameOptions'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -228556,11 +228629,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -228636,7 +228709,7 @@ } }, { - "id": "4600", + "id": "4601", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/game/useGameStore.ts(23,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'string[]'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -229310,11 +229383,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -229390,7 +229463,7 @@ } }, { - "id": "4601", + "id": "4602", "mutatorName": "LogicalOperator", "replacement": "game.value.playerGroups && []", "statusReason": "app/stores/game/useGameStore.ts(23,28): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'never[] | undefined' is not assignable to type 'string[]'.\n Type 'undefined' is not assignable to type 'string[]'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef', gave the following error.\n Argument of type '() => never[] | undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -229418,7 +229491,7 @@ } }, { - "id": "4602", + "id": "4603", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "expected [ 'Stryker was here' ] to strictly equal []", @@ -229443,7 +229516,7 @@ } }, { - "id": "4603", + "id": "4604", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(25,58): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", @@ -230117,11 +230190,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -230197,7 +230270,7 @@ } }, { - "id": "4604", + "id": "4605", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(26,59): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", @@ -230871,11 +230944,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -230951,7 +231024,7 @@ } }, { - "id": "4605", + "id": "4606", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(27,60): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", @@ -231625,11 +231698,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -231705,7 +231778,7 @@ } }, { - "id": "4606", + "id": "4607", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(28,66): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", @@ -232379,11 +232452,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -232459,7 +232532,7 @@ } }, { - "id": "4607", + "id": "4608", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected _Game{ …(17) } to strictly equal _Game{ _id: undefined, …(16) }", @@ -232484,7 +232557,7 @@ } }, { - "id": "4608", + "id": "4609", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -232511,7 +232584,7 @@ } }, { - "id": "4609", + "id": "4610", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(37,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -232535,7 +232608,7 @@ } }, { - "id": "4610", + "id": "4611", "mutatorName": "BooleanLiteral", "replacement": "fetchedGame", "statusReason": "app/stores/game/useGameStore.ts(45,5): error TS2322: Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232559,7 +232632,7 @@ } }, { - "id": "4611", + "id": "4612", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/useGameStore.ts(45,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232583,7 +232656,7 @@ } }, { - "id": "4612", + "id": "4613", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/useGameStore.ts(45,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232607,7 +232680,7 @@ } }, { - "id": "4613", + "id": "4614", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/useGameStore.ts(41,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232629,7 +232702,7 @@ } }, { - "id": "4614", + "id": "4615", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(40,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -232651,7 +232724,7 @@ } }, { - "id": "4615", + "id": "4616", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(46,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -232674,7 +232747,7 @@ } }, { - "id": "4616", + "id": "4617", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -232700,7 +232773,7 @@ } }, { - "id": "4617", + "id": "4618", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(50,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -232723,7 +232796,7 @@ } }, { - "id": "4618", + "id": "4619", "mutatorName": "BooleanLiteral", "replacement": "canceledGame", "statusReason": "app/stores/game/useGameStore.ts(57,5): error TS2322: Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232746,7 +232819,7 @@ } }, { - "id": "4619", + "id": "4620", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/useGameStore.ts(57,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232769,7 +232842,7 @@ } }, { - "id": "4620", + "id": "4621", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/useGameStore.ts(57,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232792,7 +232865,7 @@ } }, { - "id": "4621", + "id": "4622", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/useGameStore.ts(53,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232814,7 +232887,7 @@ } }, { - "id": "4622", + "id": "4623", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(53,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -232836,7 +232909,7 @@ } }, { - "id": "4623", + "id": "4624", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(58,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -232858,7 +232931,7 @@ } }, { - "id": "4624", + "id": "4625", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -232886,7 +232959,7 @@ } }, { - "id": "4625", + "id": "4626", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(62,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -232911,7 +232984,7 @@ } }, { - "id": "4626", + "id": "4627", "mutatorName": "BooleanLiteral", "replacement": "playedGame", "statusReason": "app/stores/game/useGameStore.ts(70,5): error TS2322: Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232936,7 +233009,7 @@ } }, { - "id": "4627", + "id": "4628", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/useGameStore.ts(70,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232961,7 +233034,7 @@ } }, { - "id": "4628", + "id": "4629", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/useGameStore.ts(70,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -232986,7 +233059,7 @@ } }, { - "id": "4629", + "id": "4630", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/useGameStore.ts(66,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -233009,7 +233082,7 @@ } }, { - "id": "4630", + "id": "4631", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(65,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -233032,7 +233105,7 @@ } }, { - "id": "4631", + "id": "4632", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(71,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -233055,7 +233128,7 @@ } }, { - "id": "4632", + "id": "4633", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -233080,7 +233153,7 @@ } }, { - "id": "4633", + "id": "4634", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -233106,7 +233179,7 @@ } }, { - "id": "4634", + "id": "4635", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(79,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -233129,7 +233202,7 @@ } }, { - "id": "4635", + "id": "4636", "mutatorName": "BooleanLiteral", "replacement": "gameWithFeedback", "statusReason": "app/stores/game/useGameStore.ts(86,5): error TS2322: Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -233152,7 +233225,7 @@ } }, { - "id": "4636", + "id": "4637", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "app/stores/game/useGameStore.ts(86,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -233175,7 +233248,7 @@ } }, { - "id": "4637", + "id": "4638", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "app/stores/game/useGameStore.ts(86,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -233198,7 +233271,7 @@ } }, { - "id": "4638", + "id": "4639", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/game/useGameStore.ts(82,5): error TS2322: Type 'Game | null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n Type 'null' is not assignable to type 'Game | { _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; ... 4 more ...; group?: string | undefined; }[]; ... 11 more ...; toJSON: () => object; }'.\n", @@ -233220,7 +233293,7 @@ } }, { - "id": "4639", + "id": "4640", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(82,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -233242,7 +233315,7 @@ } }, { - "id": "4640", + "id": "4641", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/game/useGameStore.ts(87,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -233264,7 +233337,7 @@ } }, { - "id": "4641", + "id": "4642", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(13,72): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(16,105): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(17,66): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(27,75): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(31,83): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(36,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(102,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(110,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(138,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(167,13): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(195,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(199,24): error TS2339: Property 'cancelGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitter.nuxt.spec.ts(60,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitter.nuxt.spec.ts(75,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitter.nuxt.spec.ts(90,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterButton/GameFeedbackSubmitterButton.nuxt.spec.ts(31,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterButton/GameFeedbackSubmitterButton.nuxt.spec.ts(48,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterEncounteredError/GameFeedbackSubmitterEncounteredError.nuxt.spec.ts(62,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterEncounteredError/GameFeedbackSubmitterEncounteredError.nuxt.spec.ts(71,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterRating/GameFeedbackSubmitterRating.nuxt.spec.ts(54,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterRating/GameFeedbackSubmitterRating.nuxt.spec.ts(63,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterReview/GameFeedbackSubmitterReview.nuxt.spec.ts(65,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterContent/GameFeedbackSubmitterReview/GameFeedbackSubmitterReview.nuxt.spec.ts(74,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterFooter/GameFeedbackSubmitterFooter.nuxt.spec.ts(79,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterFooter/GameFeedbackSubmitterFooter.nuxt.spec.ts(94,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterFooter/GameFeedbackSubmitterFooter.nuxt.spec.ts(112,24): error TS2339: Property 'createGameFeedback' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameFeedbackSubmitter/GameFeedbackSubmitterFooter/GameFeedbackSubmitterFooter.nuxt.spec.ts(149,17): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameOver/GameOver.nuxt.spec.ts(99,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameOver/GameOver.nuxt.spec.ts(108,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(127,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(230,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(351,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameOver/GameOverWinners/GameOverWinners.nuxt.spec.ts(52,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameOver/GameOverWinners/GameOverWinners.nuxt.spec.ts(61,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameAccursedWolfFatherMayHaveInfectedEvent/GameAccursedWolfFatherMayHaveInfectedEvent.nuxt.spec.ts(52,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameActorMayHaveChosenCardEvent/GameActorMayHaveChosenCardEvent.nuxt.spec.ts(94,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameActorMayHaveChosenCardEvent/GameActorMayHaveChosenCardEvent.nuxt.spec.ts(108,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameDeathEvent/GameDeathEvent.nuxt.spec.ts(95,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameElderHasTakenRevengeEvent/GameElderHasTakenRevengeEvent.nuxt.spec.ts(48,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameElderHasTakenRevengeEvent/GameElderHasTakenRevengeEvent.nuxt.spec.ts(86,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(60,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(79,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(91,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(103,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(115,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(127,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(139,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(151,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(163,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(175,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(187,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(199,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(211,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(223,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(235,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(247,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(259,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(271,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(283,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(295,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(307,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts(319,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameFoxMayHaveSniffedEvent/GameFoxMayHaveSniffedEvent.nuxt.spec.ts(48,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameFoxMayHaveSniffedEvent/GameFoxMayHaveSniffedEvent.nuxt.spec.ts(99,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameFoxMayHaveSniffedEvent/GameFoxMayHaveSniffedEvent.nuxt.spec.ts(137,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameIdiotIsSparedEvent/GameIdiotIsSparedEvent.nuxt.spec.ts(46,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePhaseStartsEvent/GamePhaseStartsEvent.nuxt.spec.ts(84,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePhaseStartsEvent/GamePhaseStartsEvent.nuxt.spec.ts(95,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePhaseStartsEvent/GamePhaseStartsEvent.nuxt.spec.ts(205,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePiedPiperHasCharmedEvent/GamePiedPiperHasCharmedEvent.nuxt.spec.ts(90,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePiedPiperHasCharmedEvent/GamePiedPiperHasCharmedEvent.nuxt.spec.ts(105,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMarkIsActiveEvent/GameScandalmongerMarkIsActiveEvent.nuxt.spec.ts(42,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSeerHasSeenEvent/GameSeerHasSeenEvent.nuxt.spec.ts(43,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSeerHasSeenEvent/GameSeerHasSeenEvent.nuxt.spec.ts(112,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSeerHasSeenEvent/GameSeerHasSeenEvent.nuxt.spec.ts(132,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSeerHasSeenEvent/GameSeerHasSeenEvent.nuxt.spec.ts(150,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSheriffPromotionEvent/GameSheriffPromotionEvent.nuxt.spec.ts(52,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSheriffPromotionEvent/GameSheriffPromotionEvent.nuxt.spec.ts(76,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSheriffPromotionEvent/GameSheriffPromotionEvent.nuxt.spec.ts(93,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(54,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(91,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(107,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(123,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(142,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(143,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts(144,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.nuxt.spec.ts(50,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.nuxt.spec.ts(94,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.nuxt.spec.ts(95,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.nuxt.spec.ts(114,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.nuxt.spec.ts(149,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.nuxt.spec.ts(163,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameBigBadWolfTurnStartsEvent/GameBigBadWolfTurnStartsEvent.nuxt.spec.ts(31,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameBigBadWolfTurnStartsEvent/GameBigBadWolfTurnStartsEvent.nuxt.spec.ts(63,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameCharmedTurnStartsEvent/GameCharmedTurnStartsEvent.nuxt.spec.ts(72,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameCupidTurnStartsEvent/GameCupidTurnStartsEvent.nuxt.spec.ts(52,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameDefenderTurnStartsEvent/GameDefenderTurnStartsEvent.nuxt.spec.ts(67,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameDefenderTurnStartsEvent/GameDefenderTurnStartsEvent.nuxt.spec.ts(68,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameDefenderTurnStartsEvent/GameDefenderTurnStartsEvent.nuxt.spec.ts(79,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameDefenderTurnStartsEvent/GameDefenderTurnStartsEvent.nuxt.spec.ts(80,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameLoversTurnStartsEvent/GameLoversTurnStartsEvent.nuxt.spec.ts(63,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameLoversTurnStartsEvent/GameLoversTurnStartsEvent.nuxt.spec.ts(77,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSeerTurnStartsEvent/GameSeerTurnStartsEvent.nuxt.spec.ts(58,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSheriffTurnStartsEvent/GameSheriffTurnStartsEvent.nuxt.spec.ts(69,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSheriffTurnStartsEvent/GameSheriffTurnStartsEvent.nuxt.spec.ts(89,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSurvivorsTurnStartsEvent/GameSurvivorsTurnStartsEvent.nuxt.spec.ts(138,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThiefTurnStartsEvent/GameThiefTurnStartsEvent.nuxt.spec.ts(46,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThiefTurnStartsEvent/GameThiefTurnStartsEvent.nuxt.spec.ts(82,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThiefTurnStartsEvent/GameThiefTurnStartsEvent.nuxt.spec.ts(97,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThreeBrothersTurnStartsEvent/GameThreeBrothersTurnStartsEvent.nuxt.spec.ts(67,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(60,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(69,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(78,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(87,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(96,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(105,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(114,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(123,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(132,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(141,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(150,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(159,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(168,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(177,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(186,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(195,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(204,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(213,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(222,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(231,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(240,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(249,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(258,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(267,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts(277,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTwoSistersTurnStartsEvent/GameTwoSistersTurnStartsEvent.nuxt.spec.ts(67,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts(65,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts(65,49): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts(66,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts(81,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts(82,22): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts(95,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts(95,49): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts(96,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts(97,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWitchTurnStartsEvent/GameWitchTurnStartsEvent.nuxt.spec.ts(62,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWolfHoundTurnStartsEvent/GameWolfHoundTurnStartsEvent.nuxt.spec.ts(58,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameVillagerVillagerIntroductionEvent/GameVillagerVillagerIntroductionEvent.nuxt.spec.ts(48,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWildChildHasTransformedEvent/GameWildChildHasTransformedEvent.nuxt.spec.ts(45,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWildChildHasTransformedEvent/GameWildChildHasTransformedEvent.nuxt.spec.ts(104,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWolfHoundHasChosenSideEvent/GameWolfHoundHasChosenSideEvent.nuxt.spec.ts(141,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWolfHoundHasChosenSideEvent/GameWolfHoundHasChosenSideEvent.nuxt.spec.ts(162,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWolfHoundHasChosenSideEvent/GameWolfHoundHasChosenSideEvent.nuxt.spec.ts(183,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWolfHoundHasChosenSideEvent/GameWolfHoundHasChosenSideEvent.nuxt.spec.ts(204,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWolfHoundHasChosenSideEvent/GameWolfHoundHasChosenSideEvent.nuxt.spec.ts(253,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWolfHoundHasChosenSideEvent/GameWolfHoundHasChosenSideEvent.nuxt.spec.ts(274,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(48,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(177,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(274,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/CurrentPlayExpectedPlayersToAct/CurrentPlayExpectedPlayersToAct.nuxt.spec.ts(47,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/CurrentPlayExpectedPlayersToAct/CurrentPlayExpectedPlayersToAct.nuxt.spec.ts(56,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/CurrentPlayQuestion/CurrentPlayQuestion.nuxt.spec.ts(206,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameBuryDeadBodiesPlayground.nuxt.spec.ts(36,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameBuryDeadBodiesPlayground.nuxt.spec.ts(58,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameBuryDeadBodiesPlayground.nuxt.spec.ts(69,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameBuryDeadBodiesPlayground.nuxt.spec.ts(78,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameDevotedServantStealsRolePlayground/GameDevotedServantStealsRolePlayground.nuxt.spec.ts(65,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameDevotedServantStealsRolePlayground/GameDevotedServantStealsRolePlayground.nuxt.spec.ts(87,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameDevotedServantStealsRolePlayground/GameDevotedServantStealsRolePlayground.nuxt.spec.ts(100,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(39,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(48,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(57,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(66,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(75,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(84,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(93,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(102,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts(111,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(92,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(101,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(110,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(121,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(132,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(152,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(172,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(189,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(225,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(253,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(281,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(317,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(345,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(367,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(389,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(400,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(432,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(465,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCard.nuxt.spec.ts(474,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCardVoteInput/GamePlaygroundPlayerCardVoteInput.nuxt.spec.ts(99,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCardVoteInput/GamePlaygroundPlayerCardVoteInput.nuxt.spec.ts(113,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCardVoteInput/GamePlaygroundPlayerCardVoteInput.nuxt.spec.ts(127,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCardVoteInput/GamePlaygroundPlayerCardVoteInput.nuxt.spec.ts(143,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(36,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(45,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(54,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(63,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(72,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts(88,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/GameUsePotionsPlayground.nuxt.spec.ts(55,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/GameUsePotionsPlayground.nuxt.spec.ts(64,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/GameUsePotionsPlayground.nuxt.spec.ts(75,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/GameUsePotionsPlayground.nuxt.spec.ts(96,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(73,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(95,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(128,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(159,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(196,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(228,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(259,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts(296,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlaygroundVoters/GameVotePlaygroundVoters.nuxt.spec.ts(43,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlaygroundVoters/GameVotePlaygroundVoters.nuxt.spec.ts(52,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlaygroundVoters/GameVotePlaygroundVoters.nuxt.spec.ts(61,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlaygroundVoters/GameVotePlaygroundVoters.nuxt.spec.ts(84,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(31,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(42,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(51,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(60,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(69,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts(78,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterCountdown/GamePlaygroundFooterCountdown.nuxt.spec.ts(38,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterCountdown/GamePlaygroundFooterCountdown.nuxt.spec.ts(96,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterCountdown/GamePlaygroundFooterCountdown.nuxt.spec.ts(114,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterCountdown/GamePlaygroundFooterCountdown.nuxt.spec.ts(174,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterCountdown/GamePlaygroundFooterCountdown.nuxt.spec.ts(231,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(66,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(75,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(106,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(134,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(155,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(166,26): error TS2339: Property 'makeGamePlay' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts(230,19): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCard/GamePlaygroundHeaderCard.nuxt.spec.ts(91,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCard/GamePlaygroundHeaderCard.nuxt.spec.ts(100,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.nuxt.spec.ts(44,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.nuxt.spec.ts(196,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.nuxt.spec.ts(360,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderPhase/GamePlaygroundHeaderPhase.nuxt.spec.ts(40,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderPhase/GamePlaygroundHeaderPhase.nuxt.spec.ts(41,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderPhase/GamePlaygroundHeaderPhase.nuxt.spec.ts(50,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderPhase/GamePlaygroundHeaderPhase.nuxt.spec.ts(51,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GamePlaying.nuxt.spec.ts(51,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(74,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(92,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(112,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(125,74): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(126,74): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(127,74): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(128,74): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(134,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(147,74): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(148,74): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts(149,74): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/shared/game/game-event/GameEventFlippingPlayersCard/GameEventFlippingPlayerCard/GameEventFlippingPlaySourcePlayersCard/GameEventFlippingPlaySourcePlayersCard.nuxt.spec.ts(64,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/shared/game/game-event/GameEventFlippingPlayersCard/GameEventFlippingPlayerCard/GameEventFlippingPlaySourcePlayersCard/GameEventFlippingPlaySourcePlayersCard.nuxt.spec.ts(73,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventNextTextButton/GameEventNextTextButton.nuxt.spec.ts(61,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventNextTextButton/GameEventNextTextButton.nuxt.spec.ts(95,19): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventPreviousTextButton/GameEventPreviousTextButton.nuxt.spec.ts(86,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventTextsManager.nuxt.spec.ts(83,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts(176,24): error TS2339: Property 'resetGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(57,15): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(77,22): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(85,22): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(107,17): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(115,17): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(116,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(124,17): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(125,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(133,17): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(134,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(144,17): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(145,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(55,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(68,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(81,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(96,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(109,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(134,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(141,83): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(148,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(159,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(172,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(178,83): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(188,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(201,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(218,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(231,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(244,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(255,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(264,83): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(43,22): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(49,22): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(50,22): error TS2339: Property 'cancelingGameStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(51,22): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(52,22): error TS2339: Property 'creatingGameFeedbackStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(58,22): error TS2339: Property 'gamePlayerGroups' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(63,15): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(65,22): error TS2339: Property 'gamePlayerGroups' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(71,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(72,17): error TS2339: Property 'resetGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(74,24): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(81,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(90,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(99,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(101,24): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(108,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(109,23): error TS2339: Property 'cancelGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(118,23): error TS2339: Property 'cancelGame' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(120,24): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(127,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(129,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(139,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(149,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(151,24): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(158,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(159,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(169,17): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(171,23): error TS2339: Property 'createGameFeedback' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(181,23): error TS2339: Property 'createGameFeedback' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(183,24): error TS2339: Property 'game' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\n", @@ -233938,11 +234011,11 @@ "1827", "1828", "1829", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -234024,7 +234097,7 @@ "language": "typescript", "mutants": [ { - "id": "4642", + "id": "4643", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "tests/unit/specs/stores/keyboard/useKeyboardStore.spec.ts(15,26): error TS2339: Property 'keyboard' does not exist on type 'Store'.\n", @@ -234115,7 +234188,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -234146,7 +234219,7 @@ } }, { - "id": "4643", + "id": "4644", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "app/stores/keyboard/useKeyboardStore.ts(14,20): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type 'undefined' is not assignable to type 'Keyboard'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => undefined' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -234237,7 +234310,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -234268,7 +234341,7 @@ } }, { - "id": "4644", + "id": "4645", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/keyboard/useKeyboardStore.ts(14,20): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Type '{}' is missing the following properties from type 'Keyboard': shift, enter, arrowRight, arrowLeft\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => {}' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -234359,7 +234432,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -234390,7 +234463,7 @@ } }, { - "id": "4645", + "id": "4646", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/keyboard/useKeyboardStore.ts(14,20): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Property 'isPressed' is missing in type '{}' but required in type 'KeyboardKey'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { shift: {}; enter: { isPressed: boolean; }; arrowRight: { isPressed: boolean; }; arrowLeft: { isPressed: boolean; }; }' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -234481,7 +234554,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -234512,7 +234585,7 @@ } }, { - "id": "4646", + "id": "4647", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/keyboard/useKeyboardStore.ts(14,20): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Property 'isPressed' is missing in type '{}' but required in type 'KeyboardKey'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { shift: { isPressed: boolean; }; enter: {}; arrowRight: { isPressed: boolean; }; arrowLeft: { isPressed: boolean; }; }' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -234603,7 +234676,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -234634,7 +234707,7 @@ } }, { - "id": "4647", + "id": "4648", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/keyboard/useKeyboardStore.ts(14,20): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Property 'isPressed' is missing in type '{}' but required in type 'KeyboardKey'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { shift: { isPressed: boolean; }; enter: { isPressed: boolean; }; arrowRight: {}; arrowLeft: { isPressed: boolean; }; }' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -234725,7 +234798,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -234756,7 +234829,7 @@ } }, { - "id": "4648", + "id": "4649", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/keyboard/useKeyboardStore.ts(14,20): error TS2769: No overload matches this call.\n Overload 1 of 2, '(getter: ComputedGetter, debugOptions?: DebuggerOptions | undefined): ComputedRef', gave the following error.\n Property 'isPressed' is missing in type '{}' but required in type 'KeyboardKey'.\n Overload 2 of 2, '(options: WritableComputedOptions, debugOptions?: DebuggerOptions | undefined): WritableComputedRef<...>', gave the following error.\n Argument of type '() => { shift: { isPressed: boolean; }; enter: { isPressed: boolean; }; arrowRight: { isPressed: boolean; }; arrowLeft: {}; }' is not assignable to parameter of type 'WritableComputedOptions'.\n", @@ -234847,7 +234920,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -234878,7 +234951,7 @@ } }, { - "id": "4649", + "id": "4650", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "tests/unit/specs/stores/keyboard/useKeyboardStore.spec.ts(15,26): error TS2339: Property 'keyboard' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\n", @@ -234969,7 +235042,7 @@ "1712", "1813", "1818", - "1840", + "1843", "1858", "1878", "1887", @@ -235006,7 +235079,7 @@ "language": "typescript", "mutants": [ { - "id": "4650", + "id": "4651", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/audio/useAudioStore.ts(13,11): error TS2339: Property 'audioSettingsFromLocalStorage' does not exist on type 'StoreToRefs>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(114,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(125,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(137,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(140,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(161,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\n", @@ -235797,11 +235870,11 @@ "1821", "1830", "1831", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -235898,7 +235971,7 @@ } }, { - "id": "4651", + "id": "4652", "mutatorName": "ObjectLiteral", "replacement": "{}", "status": "Timeout", @@ -236688,11 +236761,11 @@ "1821", "1830", "1831", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -236789,7 +236862,7 @@ } }, { - "id": "4652", + "id": "4653", "mutatorName": "BooleanLiteral", "replacement": "false", "status": "Timeout", @@ -237579,11 +237652,11 @@ "1821", "1830", "1831", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -237680,7 +237753,7 @@ } }, { - "id": "4653", + "id": "4654", "mutatorName": "ObjectLiteral", "replacement": "{}", "status": "Timeout", @@ -238470,11 +238543,11 @@ "1821", "1830", "1831", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -238571,7 +238644,7 @@ } }, { - "id": "4654", + "id": "4655", "mutatorName": "BooleanLiteral", "replacement": "false", "status": "Timeout", @@ -239361,11 +239434,11 @@ "1821", "1830", "1831", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -239462,7 +239535,7 @@ } }, { - "id": "4655", + "id": "4656", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/stores/audio/useAudioStore.ts(13,11): error TS2339: Property 'audioSettingsFromLocalStorage' does not exist on type 'StoreToRefs, Pick<{}, never>, Pick<{}, never>>>'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(25,11): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'StoreToRefs, Pick<{}, never>, Pick<{}, never>>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(114,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(125,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(137,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(140,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(161,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\n", @@ -240253,11 +240326,11 @@ "1821", "1830", "1831", - "1839", - "1840", - "1841", "1842", "1843", + "1844", + "1845", + "1846", "1857", "1858", "1859", @@ -240360,7 +240433,7 @@ "language": "typescript", "mutants": [ { - "id": "4656", + "id": "4657", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "tests/unit/specs/components/pages/about/AboutAvailableRoles/AboutAvailableRoles.nuxt.spec.ts(62,20): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/components/pages/about/AboutAvailableRoles/AboutAvailableRoles.nuxt.spec.ts(92,20): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGrid.nuxt.spec.ts(67,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElement.nuxt.spec.ts(182,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(28,23): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(29,23): error TS2339: Property 'fetchingRoleStatus' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(35,24): error TS2339: Property 'fetchAndSetRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(48,24): error TS2339: Property 'fetchAndSetRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(50,25): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(62,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(63,31): error TS2339: Property 'getRoleWithNameInRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(75,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(76,31): error TS2339: Property 'getRoleWithNameInRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(91,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(92,40): error TS2339: Property 'getRolesForRecipientRoleName' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(107,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(108,40): error TS2339: Property 'getRolesForRecipientRoleName' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(115,40): error TS2339: Property 'getRolesForRecipientRoleName' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(129,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(130,35): error TS2339: Property 'getRoleSideForRoleName' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(142,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(143,35): error TS2339: Property 'getRoleSideForRoleName' does not exist on type 'Store'.\n", @@ -241048,7 +241121,7 @@ } }, { - "id": "4657", + "id": "4658", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/role/useRolesStore.ts(14,58): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", @@ -241736,7 +241809,7 @@ } }, { - "id": "4658", + "id": "4659", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -241762,7 +241835,7 @@ } }, { - "id": "4659", + "id": "4660", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/role/useRolesStore.ts(18,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -241785,7 +241858,7 @@ } }, { - "id": "4660", + "id": "4661", "mutatorName": "StringLiteral", "replacement": "\"\"", "statusReason": "app/stores/role/useRolesStore.ts(20,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", @@ -241808,7 +241881,7 @@ } }, { - "id": "4661", + "id": "4662", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/role/useRolesStore.ts(23,56): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -241843,7 +241916,7 @@ } }, { - "id": "4662", + "id": "4663", "mutatorName": "OptionalChaining", "replacement": "roles.value.find", "statusReason": "app/stores/role/useRolesStore.ts(24,12): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -241878,7 +241951,7 @@ } }, { - "id": "4663", + "id": "4664", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected false to be true // Object.is equality", @@ -241916,7 +241989,7 @@ } }, { - "id": "4664", + "id": "4665", "mutatorName": "ConditionalExpression", "replacement": "true", "statusReason": "expected true to be false // Object.is equality", @@ -241954,7 +242027,7 @@ } }, { - "id": "4665", + "id": "4666", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected false to be true // Object.is equality", @@ -241992,7 +242065,7 @@ } }, { - "id": "4666", + "id": "4667", "mutatorName": "EqualityOperator", "replacement": "role.name !== roleName", "statusReason": "expected _Role{ name: 'werewolf', …(7) } to strictly equal _Role{ name: 'villager', …(7) }", @@ -242030,7 +242103,7 @@ } }, { - "id": "4667", + "id": "4668", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/role/useRolesStore.ts(27,98): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -242066,7 +242139,7 @@ } }, { - "id": "4668", + "id": "4669", "mutatorName": "LogicalOperator", "replacement": "roles.value?.filter(role => role.additionalCardsEligibleRecipients?.includes(recipientRoleName)) && []", "statusReason": "app/stores/role/useRolesStore.ts(28,5): error TS2322: Type 'never[] | undefined' is not assignable to type 'Role[]'.\n Type 'undefined' is not assignable to type 'Role[]'.\n", @@ -242102,7 +242175,7 @@ } }, { - "id": "4669", + "id": "4670", "mutatorName": "MethodExpression", "replacement": "roles.value", "statusReason": "expected [ { …(3) }, …(4) ] to strictly equal [ { …(3) }, …(2) ]", @@ -242141,7 +242214,7 @@ } }, { - "id": "4670", + "id": "4671", "mutatorName": "OptionalChaining", "replacement": "roles.value.filter", "statusReason": "app/stores/role/useRolesStore.ts(28,12): error TS18047: 'roles.value' is possibly 'null'.\n", @@ -242177,7 +242250,7 @@ } }, { - "id": "4671", + "id": "4672", "mutatorName": "ArrowFunction", "replacement": "() => undefined", "statusReason": "expected [] to strictly equal [ { …(3) }, …(2) ]", @@ -242215,7 +242288,7 @@ } }, { - "id": "4672", + "id": "4673", "mutatorName": "OptionalChaining", "replacement": "role.additionalCardsEligibleRecipients.includes", "statusReason": "app/stores/role/useRolesStore.ts(28,40): error TS18048: 'role.additionalCardsEligibleRecipients' is possibly 'undefined'.\n", @@ -242250,7 +242323,7 @@ } }, { - "id": "4673", + "id": "4674", "mutatorName": "ArrayDeclaration", "replacement": "[\"Stryker was here\"]", "statusReason": "app/stores/role/useRolesStore.ts(28,5): error TS2322: Type '{ name: \"werewolf\" | \"big-bad-wolf\" | \"accursed-wolf-father\" | \"white-werewolf\" | \"villager\" | \"villager-villager\" | \"seer\" | \"cupid\" | \"witch\" | \"hunter\" | \"little-girl\" | ... 18 more ... | \"devoted-servant\"; ... 6 more ...; recommendedMinPlayers?: number | undefined; }[] | string[]' is not assignable to type 'Role[]'.\n Type 'string[]' is not assignable to type 'Role[]'.\n Type 'string' is not assignable to type 'Role'.\n", @@ -242272,7 +242345,7 @@ } }, { - "id": "4674", + "id": "4675", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/stores/role/useRolesStore.ts(31,56): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -242295,7 +242368,7 @@ } }, { - "id": "4675", + "id": "4676", "mutatorName": "OptionalChaining", "replacement": "getRoleWithNameInRoles(roleName).side", "statusReason": "app/stores/role/useRolesStore.ts(32,12): error TS2532: Object is possibly 'undefined'.\n", @@ -242318,7 +242391,7 @@ } }, { - "id": "4676", + "id": "4677", "mutatorName": "ObjectLiteral", "replacement": "{}", "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(32,11): error TS2339: Property 'roles' does not exist on type 'StoreToRefs, Pick<{}, never>, Pick<{}, never>>>'.\napp/composables/api/game/useCreateGameDtoValidation.ts(48,57): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(50,42): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(57,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(66,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\ntests/unit/specs/components/pages/about/AboutAvailableRoles/AboutAvailableRoles.nuxt.spec.ts(62,20): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/about/AboutAvailableRoles/AboutAvailableRoles.nuxt.spec.ts(92,20): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGrid.nuxt.spec.ts(67,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElement.nuxt.spec.ts(182,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(23,16): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(231,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(275,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(326,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(28,23): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(29,23): error TS2339: Property 'fetchingRoleStatus' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(35,24): error TS2339: Property 'fetchAndSetRoles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(48,24): error TS2339: Property 'fetchAndSetRoles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(50,25): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(62,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(63,31): error TS2339: Property 'getRoleWithNameInRoles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(75,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(76,31): error TS2339: Property 'getRoleWithNameInRoles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(91,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(92,40): error TS2339: Property 'getRolesForRecipientRoleName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(107,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(108,40): error TS2339: Property 'getRolesForRecipientRoleName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(115,40): error TS2339: Property 'getRolesForRecipientRoleName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(129,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(130,35): error TS2339: Property 'getRoleSideForRoleName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(142,18): error TS2339: Property 'roles' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/role/useRolesStore.spec.ts(143,35): error TS2339: Property 'getRoleSideForRoleName' does not exist on type 'Store, Pick<{}, never>, Pick<{}, never>>'.\n", @@ -243012,7 +243085,7 @@ "language": "typescript", "mutants": [ { - "id": "4677", + "id": "4678", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "app/utils/url.utils.ts(1,46): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", @@ -244403,7 +244476,7 @@ } }, { - "id": "4678", + "id": "4679", "mutatorName": "Regex", "replacement": "/\\/+/u", "status": "Timeout", @@ -245793,7 +245866,7 @@ } }, { - "id": "4679", + "id": "4680", "mutatorName": "Regex", "replacement": "/\\/$/u", "status": "Timeout", @@ -247183,7 +247256,7 @@ } }, { - "id": "4680", + "id": "4681", "mutatorName": "StringLiteral", "replacement": "\"Stryker was here!\"", "status": "Timeout", @@ -248574,6 +248647,45 @@ } ], "source": "function removeTrailingSlashes(url: string): string {\n return url.replace(/\\/+$/u, \"\");\n}\n\nexport { removeTrailingSlashes };" + }, + "app/components/pages/index/IndexFooter.vue": { + "language": "html", + "mutants": [ + { + "id": "2989", + "mutatorName": "StringLiteral", + "replacement": "``", + "statusReason": "Snapshot `App Component > should render component without shallow and match snapshot when rendered. 1` mismatched", + "status": "Killed", + "static": false, + "testsCompleted": 7, + "killedBy": [ + "2076" + ], + "coveredBy": [ + "1871", + "1872", + "1873", + "1874", + "1875", + "1876", + "2076", + "2196", + "2197" + ], + "location": { + "end": { + "column": 51, + "line": 36 + }, + "start": { + "column": 27, + "line": 36 + } + } + } + ], + "source": "\n\n" } }, "schemaVersion": "1.0", @@ -256809,47 +256921,47 @@ ], "source": "import type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\n\nimport type { GameLobbyRolePickerHeaderProps } from \"~/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerHeader/game-lobby-role-picker-header.types\";\nimport GameLobbyRolePickerHeader from \"~/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerHeader/GameLobbyRolePickerHeader.vue\";\nimport { createFakeCreateGamePlayerDto } from \"@tests/unit/utils/factories/composables/api/game/dto/create-game/create-game-player/create-game-player.dto.factory\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Lobby Role Picker Header Component\", () => {\n let wrapper: ReturnType>;\n const defaultProps: GameLobbyRolePickerHeaderProps = {\n player: createFakeCreateGamePlayerDto({\n name: \"Toto\",\n role: { name: \"werewolf\" },\n }),\n };\n\n async function mountGameLobbyRolePickerHeaderComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameLobbyRolePickerHeader, {\n props: defaultProps,\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameLobbyRolePickerHeaderComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Current Role\", () => {\n it(\"should translate current role title when rendered.\", () => {\n const currentRoleTitle = wrapper.find(\"#current-role-title\");\n\n expect(currentRoleTitle.text()).toBe(\"components.GameLobbyRolePickerHeader.currentRole\");\n });\n\n it(\"should translate current role when rendered.\", () => {\n const currentRole = wrapper.find(\"#current-role-text\");\n\n expect(currentRole.text()).toBe(\"shared.role.name.werewolf\");\n });\n\n it(\"should translate no role text when player is not defined.\", async() => {\n wrapper = await mountGameLobbyRolePickerHeaderComponent({ props: {} });\n const currentRole = wrapper.find(\"#current-role-text\");\n\n expect(currentRole.text()).toBe(\"components.GameLobbyRolePickerHeader.noRole\");\n });\n\n it(\"should translate no role text when player doesn't have any role yet.\", async() => {\n wrapper = await mountGameLobbyRolePickerHeaderComponent({ props: { player: createFakeCreateGamePlayerDto({ name: \"Toto\" }) } });\n const currentRole = wrapper.find(\"#current-role-text\");\n\n expect(currentRole.text()).toBe(\"components.GameLobbyRolePickerHeader.noRole\");\n });\n });\n\n describe(\"Title\", () => {\n it(\"should translate title when rendered.\", () => {\n const title = wrapper.find(\"#role-picker-header-title\");\n\n expect(title.text()).toBe(\"components.GameLobbyRolePickerHeader.pickRoleForPlayer, {\\\"playerName\\\":\\\"Toto\\\"}\");\n });\n\n it(\"should translate title without player name when player is not defined.\", async() => {\n wrapper = await mountGameLobbyRolePickerHeaderComponent({ props: {} });\n const title = wrapper.find(\"#role-picker-header-title\");\n\n expect(title.text()).toBe(\"components.GameLobbyRolePickerHeader.pickRoleForPlayer, {}\");\n });\n });\n});" }, - "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThreeBrothersTurnStartsEvent/GameThreeBrothersTurnStartsEvent.nuxt.spec.ts": { + "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecords.nuxt.spec.ts": { "tests": [ { "id": "1839", - "name": "Game Three Brothers Turn Starts Event Component should match snapshot when rendered." + "name": "Game Over History Records Component should match snapshot when rendered." }, { "id": "1840", - "name": "Game Three Brothers Turn Starts Event Component should match snapshot when rendered without shallow rendering." + "name": "Game Over History Records Component Timeline should render game history records from store in record for each when rendered." }, { "id": "1841", - "name": "Game Three Brothers Turn Starts Event Component should play boys playing sound effect when rendered." - }, + "name": "Game Over History Records Component Timeline should render game history records from stores in phase for each when rendered." + } + ], + "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\n\nimport type GameOverHistoryRecord from \"~/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecord.vue\";\nimport type GameOverHistoryRecordPhase from \"~/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecordPhase/GameOverHistoryRecordPhase.vue\";\nimport GameOverHistoryRecords from \"~/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecords.vue\";\nimport type { GameHistoryRecord } from \"~/composables/api/game/types/game-history-record/game-history-record.class\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { createFakeGameHistoryRecord } from \"@tests/unit/utils/factories/composables/api/game/game-history-record/game-history-record.factory\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Over History Records Component\", () => {\n let wrapper: ReturnType>;\n const gameHistoryRecords = [\n createFakeGameHistoryRecord(),\n createFakeGameHistoryRecord(),\n createFakeGameHistoryRecord(),\n ];\n const testingPinia = { initialState: { [StoreIds.GAME_HISTORY_RECORDS]: { gameHistoryRecords } } };\n\n async function mountGameOverHistoryRecordsComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameOverHistoryRecords, {\n shallow: false,\n global: {\n plugins: [createTestingPinia(testingPinia)],\n stubs: {\n GameOverHistoryRecordPhase: true,\n GameOverHistoryRecordIcon: true,\n GameOverHistoryRecord: true,\n },\n },\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameOverHistoryRecordsComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Timeline\", () => {\n it(\"should render game history records from store in record for each when rendered.\", () => {\n const records = wrapper.findAllComponents(\".game-over-history-record\");\n\n expect(records).toHaveLength(gameHistoryRecords.length);\n expect(records[0].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[0]);\n expect(records[1].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[1]);\n expect(records[2].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[2]);\n });\n\n it(\"should render game history records from stores in phase for each when rendered.\", () => {\n const phases = wrapper.findAllComponents(\".game-over-history-record-phase\");\n\n expect(phases).toHaveLength(gameHistoryRecords.length);\n expect(phases[0].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[0]);\n expect(phases[1].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[1]);\n expect(phases[2].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[2]);\n });\n });\n});" + }, + "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThreeBrothersTurnStartsEvent/GameThreeBrothersTurnStartsEvent.nuxt.spec.ts": { + "tests": [ { "id": "1842", - "name": "Game Three Brothers Turn Starts Event Component Game Event Texts should pass event texts when it's the first night." + "name": "Game Three Brothers Turn Starts Event Component should match snapshot when rendered." }, { "id": "1843", - "name": "Game Three Brothers Turn Starts Event Component Game Event Texts should pass event texts when it's not the first night." - } - ], - "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\n\nimport GameThreeBrothersTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThreeBrothersTurnStartsEvent/GameThreeBrothersTurnStartsEvent.vue\";\nimport { DEFAULT_GAME_OPTIONS } from \"~/composables/api/game/constants/game-options/game-options.constants\";\nimport { useAudioStore } from \"~/stores/audio/useAudioStore\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Three Brothers Turn Starts Event Component\", () => {\n let wrapper: ReturnType>;\n const testingPinia = {\n initialState: {\n [StoreIds.GAME]: {\n game: createFakeGame({\n turn: 1,\n options: DEFAULT_GAME_OPTIONS,\n }),\n },\n },\n };\n\n async function mountGameThreeBrothersTurnStartsEventComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameThreeBrothersTurnStartsEvent, {\n global: { plugins: [createTestingPinia(testingPinia)] },\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameThreeBrothersTurnStartsEventComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n it(\"should match snapshot when rendered without shallow rendering.\", async() => {\n wrapper = await mountGameThreeBrothersTurnStartsEventComponent({ shallow: false });\n\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n it(\"should play boys playing sound effect when rendered.\", () => {\n const audioStore = useAudioStore();\n\n expect(audioStore.playSoundEffect).toHaveBeenCalledExactlyOnceWith(\"boys-playing\");\n });\n\n describe(\"Game Event Texts\", () => {\n it(\"should pass event texts when it's the first night.\", () => {\n const gameEventWithTextsComponent = wrapper.findComponent(\"#game-three-brothers-turn-starts-event\");\n const expectedTexts: string[] = [\"components.GameThreeBrothersTurnStartsEvent.threeBrothersMeetEachOtherForFirstTime\"];\n const expectedTextsAsString = expectedTexts.join(\",\");\n\n expect(gameEventWithTextsComponent.attributes(\"texts\")).toBe(expectedTextsAsString);\n });\n\n it(\"should pass event texts when it's not the first night.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.turn = 2;\n await nextTick();\n const gameEventWithTextsComponent = wrapper.findComponent(\"#game-three-brothers-turn-starts-event\");\n const expectedTexts: string[] = [\"components.GameThreeBrothersTurnStartsEvent.threeBrothersMeetEachOther\"];\n const expectedTextsAsString = expectedTexts.join(\",\");\n\n expect(gameEventWithTextsComponent.attributes(\"texts\")).toBe(expectedTextsAsString);\n });\n });\n});" - }, - "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecords.nuxt.spec.ts": { - "tests": [ + "name": "Game Three Brothers Turn Starts Event Component should match snapshot when rendered without shallow rendering." + }, { "id": "1844", - "name": "Game Over History Records Component should match snapshot when rendered." + "name": "Game Three Brothers Turn Starts Event Component should play boys playing sound effect when rendered." }, { "id": "1845", - "name": "Game Over History Records Component Timeline should render game history records from store in record for each when rendered." + "name": "Game Three Brothers Turn Starts Event Component Game Event Texts should pass event texts when it's the first night." }, { "id": "1846", - "name": "Game Over History Records Component Timeline should render game history records from stores in phase for each when rendered." + "name": "Game Three Brothers Turn Starts Event Component Game Event Texts should pass event texts when it's not the first night." } ], - "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\n\nimport type GameOverHistoryRecord from \"~/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecord.vue\";\nimport type GameOverHistoryRecordPhase from \"~/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecordPhase/GameOverHistoryRecordPhase.vue\";\nimport GameOverHistoryRecords from \"~/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecords.vue\";\nimport type { GameHistoryRecord } from \"~/composables/api/game/types/game-history-record/game-history-record.class\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { createFakeGameHistoryRecord } from \"@tests/unit/utils/factories/composables/api/game/game-history-record/game-history-record.factory\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Over History Records Component\", () => {\n let wrapper: ReturnType>;\n const gameHistoryRecords = [\n createFakeGameHistoryRecord(),\n createFakeGameHistoryRecord(),\n createFakeGameHistoryRecord(),\n ];\n const testingPinia = { initialState: { [StoreIds.GAME_HISTORY_RECORDS]: { gameHistoryRecords } } };\n\n async function mountGameOverHistoryRecordsComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameOverHistoryRecords, {\n shallow: false,\n global: {\n plugins: [createTestingPinia(testingPinia)],\n stubs: {\n GameOverHistoryRecordPhase: true,\n GameOverHistoryRecordIcon: true,\n GameOverHistoryRecord: true,\n },\n },\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameOverHistoryRecordsComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Timeline\", () => {\n it(\"should render game history records from store in record for each when rendered.\", () => {\n const records = wrapper.findAllComponents(\".game-over-history-record\");\n\n expect(records).toHaveLength(gameHistoryRecords.length);\n expect(records[0].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[0]);\n expect(records[1].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[1]);\n expect(records[2].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[2]);\n });\n\n it(\"should render game history records from stores in phase for each when rendered.\", () => {\n const phases = wrapper.findAllComponents(\".game-over-history-record-phase\");\n\n expect(phases).toHaveLength(gameHistoryRecords.length);\n expect(phases[0].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[0]);\n expect(phases[1].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[1]);\n expect(phases[2].props(\"gameHistoryRecord\")).toStrictEqual(gameHistoryRecords[2]);\n });\n });\n});" + "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\n\nimport GameThreeBrothersTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThreeBrothersTurnStartsEvent/GameThreeBrothersTurnStartsEvent.vue\";\nimport { DEFAULT_GAME_OPTIONS } from \"~/composables/api/game/constants/game-options/game-options.constants\";\nimport { useAudioStore } from \"~/stores/audio/useAudioStore\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Three Brothers Turn Starts Event Component\", () => {\n let wrapper: ReturnType>;\n const testingPinia = {\n initialState: {\n [StoreIds.GAME]: {\n game: createFakeGame({\n turn: 1,\n options: DEFAULT_GAME_OPTIONS,\n }),\n },\n },\n };\n\n async function mountGameThreeBrothersTurnStartsEventComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameThreeBrothersTurnStartsEvent, {\n global: { plugins: [createTestingPinia(testingPinia)] },\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameThreeBrothersTurnStartsEventComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n it(\"should match snapshot when rendered without shallow rendering.\", async() => {\n wrapper = await mountGameThreeBrothersTurnStartsEventComponent({ shallow: false });\n\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n it(\"should play boys playing sound effect when rendered.\", () => {\n const audioStore = useAudioStore();\n\n expect(audioStore.playSoundEffect).toHaveBeenCalledExactlyOnceWith(\"boys-playing\");\n });\n\n describe(\"Game Event Texts\", () => {\n it(\"should pass event texts when it's the first night.\", () => {\n const gameEventWithTextsComponent = wrapper.findComponent(\"#game-three-brothers-turn-starts-event\");\n const expectedTexts: string[] = [\"components.GameThreeBrothersTurnStartsEvent.threeBrothersMeetEachOtherForFirstTime\"];\n const expectedTextsAsString = expectedTexts.join(\",\");\n\n expect(gameEventWithTextsComponent.attributes(\"texts\")).toBe(expectedTextsAsString);\n });\n\n it(\"should pass event texts when it's not the first night.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.turn = 2;\n await nextTick();\n const gameEventWithTextsComponent = wrapper.findComponent(\"#game-three-brothers-turn-starts-event\");\n const expectedTexts: string[] = [\"components.GameThreeBrothersTurnStartsEvent.threeBrothersMeetEachOther\"];\n const expectedTextsAsString = expectedTexts.join(\",\");\n\n expect(gameEventWithTextsComponent.attributes(\"texts\")).toBe(expectedTextsAsString);\n });\n });\n});" }, "tests/unit/specs/components/shared/game/player/PlayersHorizontalList/PlayersHorizontalList.nuxt.spec.ts": { "tests": [ @@ -257321,67 +257433,67 @@ ], "source": "import type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\n\nimport type { VueVm } from \"@tests/unit/utils/types/vue-test-utils.types\";\nimport type { GameEventWithTextsProps } from \"~/components/shared/game/game-event/GameEventWithTexts/game-event-with-texts.types\";\nimport type GameEventTextsManager from \"~/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventTextsManager.vue\";\nimport GameEventWithTexts from \"~/components/shared/game/game-event/GameEventWithTexts/GameEventWithTexts.vue\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Event With Texts Component\", () => {\n let wrapper: ReturnType>;\n const defaultProps: GameEventWithTextsProps = {\n texts: [\n \"Game starts.\",\n \"Day rises.\",\n \"Night falls.\",\n ],\n };\n\n async function mountGameEventWithTextsComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameEventWithTexts, {\n props: defaultProps,\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameEventWithTextsComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n it(\"should match snapshot without shallow when rendered.\", async() => {\n wrapper = await mountGameEventWithTextsComponent({ shallow: false });\n\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Game Event Texts Manager\", () => {\n it(\"should pass texts from props when rendered.\", () => {\n const gameEventTextsManager = wrapper.findComponent(\"#game-event-texts-manager\");\n\n expect(gameEventTextsManager.props(\"texts\")).toStrictEqual(defaultProps.texts);\n });\n });\n\n describe(\"Emits\", () => {\n it(\"should emit game event text change when game event texts manager emits the same event.\", async() => {\n const gameEventTextsManager = wrapper.findComponent(\"#game-event-texts-manager\");\n const expectedText = defaultProps.texts[1];\n (gameEventTextsManager.vm as VueVm).$emit(\"game-event-text-change\", expectedText);\n await nextTick();\n\n expect(wrapper.emitted(\"gameEventTextChange\")).toStrictEqual([[expectedText]]);\n });\n\n it(\"should not emit game event text change when text is undefined.\", async() => {\n const gameEventTextsManager = wrapper.findComponent(\"#game-event-texts-manager\");\n (gameEventTextsManager.vm as VueVm).$emit(\"game-event-text-change\", undefined);\n await nextTick();\n\n expect(wrapper.emitted(\"gameEventTextChange\")).toBeUndefined();\n });\n });\n});" }, - "tests/unit/specs/components/shared/game/game-phase/GamePhaseIcon/GamePhaseIcon.nuxt.spec.ts": { + "tests/unit/specs/components/pages/about/AboutAvailableRoles/AboutAvailableRoleDescription/AboutAvailableRoleDescription.nuxt.spec.ts": { "tests": [ { "id": "1942", - "name": "Game Phase Icon Component should match snapshot when rendered." + "name": "About Available Role Description Component should match snapshot when rendered." }, { "id": "1943", - "name": "Game Phase Icon Component Icon should set icon to moon when phase is night." + "name": "About Available Role Description Component Role Left Description Role Image should display role image when rendered." }, { "id": "1944", - "name": "Game Phase Icon Component Icon should set icon to sun when phase is day." + "name": "About Available Role Description Component Role Left Description Role Image should display role image with correct alt when rendered." }, { "id": "1945", - "name": "Game Phase Icon Component Icon should set icon to sunset when phase is twilight." + "name": "About Available Role Description Component Role Left Description should display role name when rendered." }, { "id": "1946", - "name": "Game Phase Icon Component Icon classes should display the night icon when the phase is night." + "name": "About Available Role Description Component Role Left Description should display role type badge when rendered." }, { "id": "1947", - "name": "Game Phase Icon Component Icon classes should display the sun icon when the phase is day." - }, - { - "id": "1948", - "name": "Game Phase Icon Component Icon classes should display the twilight icon when the phase is twilight." + "name": "About Available Role Description Component Role Left Description should display role origin badge when rendered." } ], - "source": "import type { FontAwesomeIcon } from \"@fortawesome/vue-fontawesome\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\n\nimport type { GamePhaseIconProps } from \"~/components/shared/game/game-phase/GamePhaseIcon/game-phase-icon.types\";\nimport GamePhaseIcon from \"~/components/shared/game/game-phase/GamePhaseIcon/GamePhaseIcon.vue\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Phase Icon Component\", () => {\n let wrapper: ReturnType>;\n const defaultProps: GamePhaseIconProps = { phase: \"day\" };\n\n async function mountGamePhaseIconComponent(options: ComponentMountingOptions = {}): Promise>> {\n return mountSuspendedComponent(GamePhaseIcon, {\n props: defaultProps,\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGamePhaseIconComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Icon\", () => {\n it(\"should set icon to moon when phase is night.\", async() => {\n wrapper = await mountGamePhaseIconComponent({ props: { phase: \"night\" } });\n const icon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(icon.attributes(\"icon\")).toBe(\"moon\");\n });\n\n it(\"should set icon to sun when phase is day.\", () => {\n const icon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(icon.attributes(\"icon\")).toBe(\"sun\");\n });\n\n it(\"should set icon to sunset when phase is twilight.\", async() => {\n wrapper = await mountGamePhaseIconComponent({ props: { phase: \"twilight\" } });\n const icon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(icon.attributes(\"icon\")).toBe(\"cloud-moon\");\n });\n });\n\n describe(\"Icon classes\", () => {\n it(\"should display the night icon when the phase is night.\", async() => {\n wrapper = await mountGamePhaseIconComponent({ props: { phase: \"night\" } });\n const phaseIcon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(phaseIcon.classes()).toContainValues([\"text-night\"]);\n });\n\n it(\"should display the sun icon when the phase is day.\", () => {\n const phaseIcon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(phaseIcon.classes()).toContainValues([\"text-day\"]);\n });\n\n it(\"should display the twilight icon when the phase is twilight.\", async() => {\n wrapper = await mountGamePhaseIconComponent({ props: { phase: \"twilight\" } });\n const phaseIcon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(phaseIcon.classes()).toContainValues([\"text-twilight\"]);\n });\n });\n});" + "source": "import type { mount } from \"@vue/test-utils\";\n\nimport type { AboutAvailableRoleDescriptionProps } from \"~/components/pages/about/AboutAvailableRoles/AboutAvailableRoleDescription/about-available-role-description.types\";\nimport AboutAvailableRoleDescription from \"~/components/pages/about/AboutAvailableRoles/AboutAvailableRoleDescription/AboutAvailableRoleDescription.vue\";\nimport type RoleImage from \"~/components/shared/role/RoleImage/RoleImage.vue\";\nimport type RoleOriginBadge from \"~/components/shared/role/RoleOriginBadge/RoleOriginBadge.vue\";\nimport type RoleTypeBadge from \"~/components/shared/role/RoleTypeBadge/RoleTypeBadge.vue\";\nimport type { Role } from \"~/composables/api/role/types/role.class\";\nimport { createFakeRole } from \"@tests/unit/utils/factories/composables/api/role/role.factory\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"About Available Role Description Component\", () => {\n let wrapper: ReturnType>;\n const defaultRole: Role = createFakeRole({\n name: \"werewolf\",\n type: \"werewolf\",\n origin: \"classic\",\n });\n const defaultProps: AboutAvailableRoleDescriptionProps = { role: defaultRole };\n\n beforeEach(async() => {\n wrapper = await mountSuspendedComponent(AboutAvailableRoleDescription, { props: defaultProps });\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Role Left Description\", () => {\n describe(\"Role Image\", () => {\n it(\"should display role image when rendered.\", () => {\n const roleImage = wrapper.findComponent(\".available-role-description-role-image\");\n\n expect(roleImage.props(\"roleName\")).toBe(\"werewolf\");\n });\n\n it(\"should display role image with correct alt when rendered.\", () => {\n const roleImage = wrapper.find(\".available-role-description-role-image\");\n\n expect(roleImage.attributes(\"alt\")).toBe(\"components.AboutAvailableRoleDescription.roleDescriptionLeftImageAlt, {\\\"role\\\":\\\"shared.role.name.werewolf\\\"}\");\n });\n });\n\n it(\"should display role name when rendered.\", () => {\n const roleName = wrapper.find(\".available-role-description-role-name\");\n\n expect(roleName.text()).toBe(\"shared.role.name.werewolf\");\n });\n\n it(\"should display role type badge when rendered.\", () => {\n const roleTypeBadge = wrapper.findComponent(\".available-role-description-role-type-badge\");\n\n expect(roleTypeBadge.props(\"roleType\")).toBe(\"werewolf\");\n });\n\n it(\"should display role origin badge when rendered.\", () => {\n const roleOriginBadge = wrapper.findComponent(\".available-role-description-role-origin-badge\");\n\n expect(roleOriginBadge.props(\"roleOrigin\")).toBe(\"classic\");\n });\n });\n});" }, - "tests/unit/specs/components/pages/about/AboutAvailableRoles/AboutAvailableRoleDescription/AboutAvailableRoleDescription.nuxt.spec.ts": { + "tests/unit/specs/components/shared/game/game-phase/GamePhaseIcon/GamePhaseIcon.nuxt.spec.ts": { "tests": [ + { + "id": "1948", + "name": "Game Phase Icon Component should match snapshot when rendered." + }, { "id": "1949", - "name": "About Available Role Description Component should match snapshot when rendered." + "name": "Game Phase Icon Component Icon should set icon to moon when phase is night." }, { "id": "1950", - "name": "About Available Role Description Component Role Left Description Role Image should display role image when rendered." + "name": "Game Phase Icon Component Icon should set icon to sun when phase is day." }, { "id": "1951", - "name": "About Available Role Description Component Role Left Description Role Image should display role image with correct alt when rendered." + "name": "Game Phase Icon Component Icon should set icon to sunset when phase is twilight." }, { "id": "1952", - "name": "About Available Role Description Component Role Left Description should display role name when rendered." + "name": "Game Phase Icon Component Icon classes should display the night icon when the phase is night." }, { "id": "1953", - "name": "About Available Role Description Component Role Left Description should display role type badge when rendered." + "name": "Game Phase Icon Component Icon classes should display the sun icon when the phase is day." }, { "id": "1954", - "name": "About Available Role Description Component Role Left Description should display role origin badge when rendered." + "name": "Game Phase Icon Component Icon classes should display the twilight icon when the phase is twilight." } ], - "source": "import type { mount } from \"@vue/test-utils\";\n\nimport type { AboutAvailableRoleDescriptionProps } from \"~/components/pages/about/AboutAvailableRoles/AboutAvailableRoleDescription/about-available-role-description.types\";\nimport AboutAvailableRoleDescription from \"~/components/pages/about/AboutAvailableRoles/AboutAvailableRoleDescription/AboutAvailableRoleDescription.vue\";\nimport type RoleImage from \"~/components/shared/role/RoleImage/RoleImage.vue\";\nimport type RoleOriginBadge from \"~/components/shared/role/RoleOriginBadge/RoleOriginBadge.vue\";\nimport type RoleTypeBadge from \"~/components/shared/role/RoleTypeBadge/RoleTypeBadge.vue\";\nimport type { Role } from \"~/composables/api/role/types/role.class\";\nimport { createFakeRole } from \"@tests/unit/utils/factories/composables/api/role/role.factory\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"About Available Role Description Component\", () => {\n let wrapper: ReturnType>;\n const defaultRole: Role = createFakeRole({\n name: \"werewolf\",\n type: \"werewolf\",\n origin: \"classic\",\n });\n const defaultProps: AboutAvailableRoleDescriptionProps = { role: defaultRole };\n\n beforeEach(async() => {\n wrapper = await mountSuspendedComponent(AboutAvailableRoleDescription, { props: defaultProps });\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Role Left Description\", () => {\n describe(\"Role Image\", () => {\n it(\"should display role image when rendered.\", () => {\n const roleImage = wrapper.findComponent(\".available-role-description-role-image\");\n\n expect(roleImage.props(\"roleName\")).toBe(\"werewolf\");\n });\n\n it(\"should display role image with correct alt when rendered.\", () => {\n const roleImage = wrapper.find(\".available-role-description-role-image\");\n\n expect(roleImage.attributes(\"alt\")).toBe(\"components.AboutAvailableRoleDescription.roleDescriptionLeftImageAlt, {\\\"role\\\":\\\"shared.role.name.werewolf\\\"}\");\n });\n });\n\n it(\"should display role name when rendered.\", () => {\n const roleName = wrapper.find(\".available-role-description-role-name\");\n\n expect(roleName.text()).toBe(\"shared.role.name.werewolf\");\n });\n\n it(\"should display role type badge when rendered.\", () => {\n const roleTypeBadge = wrapper.findComponent(\".available-role-description-role-type-badge\");\n\n expect(roleTypeBadge.props(\"roleType\")).toBe(\"werewolf\");\n });\n\n it(\"should display role origin badge when rendered.\", () => {\n const roleOriginBadge = wrapper.findComponent(\".available-role-description-role-origin-badge\");\n\n expect(roleOriginBadge.props(\"roleOrigin\")).toBe(\"classic\");\n });\n });\n});" + "source": "import type { FontAwesomeIcon } from \"@fortawesome/vue-fontawesome\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\n\nimport type { GamePhaseIconProps } from \"~/components/shared/game/game-phase/GamePhaseIcon/game-phase-icon.types\";\nimport GamePhaseIcon from \"~/components/shared/game/game-phase/GamePhaseIcon/GamePhaseIcon.vue\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Phase Icon Component\", () => {\n let wrapper: ReturnType>;\n const defaultProps: GamePhaseIconProps = { phase: \"day\" };\n\n async function mountGamePhaseIconComponent(options: ComponentMountingOptions = {}): Promise>> {\n return mountSuspendedComponent(GamePhaseIcon, {\n props: defaultProps,\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGamePhaseIconComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Icon\", () => {\n it(\"should set icon to moon when phase is night.\", async() => {\n wrapper = await mountGamePhaseIconComponent({ props: { phase: \"night\" } });\n const icon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(icon.attributes(\"icon\")).toBe(\"moon\");\n });\n\n it(\"should set icon to sun when phase is day.\", () => {\n const icon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(icon.attributes(\"icon\")).toBe(\"sun\");\n });\n\n it(\"should set icon to sunset when phase is twilight.\", async() => {\n wrapper = await mountGamePhaseIconComponent({ props: { phase: \"twilight\" } });\n const icon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(icon.attributes(\"icon\")).toBe(\"cloud-moon\");\n });\n });\n\n describe(\"Icon classes\", () => {\n it(\"should display the night icon when the phase is night.\", async() => {\n wrapper = await mountGamePhaseIconComponent({ props: { phase: \"night\" } });\n const phaseIcon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(phaseIcon.classes()).toContainValues([\"text-night\"]);\n });\n\n it(\"should display the sun icon when the phase is day.\", () => {\n const phaseIcon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(phaseIcon.classes()).toContainValues([\"text-day\"]);\n });\n\n it(\"should display the twilight icon when the phase is twilight.\", async() => {\n wrapper = await mountGamePhaseIconComponent({ props: { phase: \"twilight\" } });\n const phaseIcon = wrapper.findComponent(\"#game-phase-icon\");\n\n expect(phaseIcon.classes()).toContainValues([\"text-twilight\"]);\n });\n });\n});" }, "tests/unit/specs/components/pages/about/AboutWerewolvesGame/AboutWerewolvesGame.nuxt.spec.ts": { "tests": [ diff --git a/tests/unit/specs/__snapshots__/app.nuxt.spec.ts.snap b/tests/unit/specs/__snapshots__/app.nuxt.spec.ts.snap index 679359b719c..6af3cd7a795 100644 --- a/tests/unit/specs/__snapshots__/app.nuxt.spec.ts.snap +++ b/tests/unit/specs/__snapshots__/app.nuxt.spec.ts.snap @@ -52,7 +52,7 @@ exports[`App Component > should render component without shallow and match snaps