From 81029b84a8c369686af07134bb6c052541fb3d24 Mon Sep 17 00:00:00 2001 From: Antoine Zanardi Date: Wed, 11 Sep 2024 16:18:02 +0200 Subject: [PATCH] feat(game-lobby): display disclaimer for small screens (#853) ## Summary by CodeRabbit - **New Features** - Enhanced toast notifications to display warnings for small screens, improving user feedback. - Added localization support for small screen detection messages in English and French. - **Bug Fixes** - Adjusted styling of toast notifications for better visibility across different screen sizes. - **Tests** - Expanded test coverage to include scenarios for responsive behavior related to screen size and toast notifications. --- app/app.vue | 5 +- app/pages/game-lobby.vue | 25 + modules/i18n/locales/en.json | 4 +- modules/i18n/locales/fr.json | 4 +- .../game-lobby/features/game-lobby.feature | 10 + .../toasts/playwright-toasts.then-steps.ts | 6 + .../playwright-viewports.when-steps.ts | 7 + tests/stryker/incremental.json | 152199 ++++++++------- .../specs/__snapshots__/app.nuxt.spec.ts.snap | 2 +- .../pages/game-lobby/game-lobby.nuxt.spec.ts | 44 + 10 files changed, 76431 insertions(+), 75875 deletions(-) create mode 100644 tests/acceptance/features/playwright/step-definitions/viewports/playwright-viewports.when-steps.ts diff --git a/app/app.vue b/app/app.vue index 52c5fb42e5c..e30ae9b03f4 100644 --- a/app/app.vue +++ b/app/app.vue @@ -8,7 +8,10 @@ /> - + diff --git a/app/pages/game-lobby.vue b/app/pages/game-lobby.vue index d26efa5aa46..d96bb6c817d 100644 --- a/app/pages/game-lobby.vue +++ b/app/pages/game-lobby.vue @@ -39,6 +39,7 @@ \ No newline at end of file diff --git a/modules/i18n/locales/en.json b/modules/i18n/locales/en.json index 65b7c0ddf41..b975d8caf19 100644 --- a/modules/i18n/locales/en.json +++ b/modules/i18n/locales/en.json @@ -420,7 +420,9 @@ }, "gameLobby": { "startGame": "Start a game", - "seoDescription": "Create a new game right now with the Werewolves Assistant." + "seoDescription": "Create a new game right now with the Werewolves Assistant.", + "smallScreenDetected": "Small screen detected", + "smallScreenWarning": "Even if the Assistant is responsive, it is recommended to use a larger screen for a better experience." }, "game": { "loadingGame": "Loading game…", diff --git a/modules/i18n/locales/fr.json b/modules/i18n/locales/fr.json index 7f4e4ee15cb..87f09f2615d 100644 --- a/modules/i18n/locales/fr.json +++ b/modules/i18n/locales/fr.json @@ -420,7 +420,9 @@ }, "gameLobby": { "startGame": "Lancer une partie", - "seoDescription": "Créer une nouvelle partie avec l'Assistant Loups-Garous" + "seoDescription": "Créer une nouvelle partie avec l'Assistant Loups-Garous", + "smallScreenDetected": "Small screen detected", + "smallScreenWarning": "Even if the Assistant is responsive, it is recommended to use a larger screen for a better experience." }, "game": { "loadingGame": "Chargement de la partie…", diff --git a/tests/acceptance/features/game-lobby/features/game-lobby.feature b/tests/acceptance/features/game-lobby/features/game-lobby.feature index ac43e7ae45a..920182911fc 100644 --- a/tests/acceptance/features/game-lobby/features/game-lobby.feature +++ b/tests/acceptance/features/game-lobby/features/game-lobby.feature @@ -24,6 +24,16 @@ Feature: 🃏 Game Lobby Page | generator | nuxt | | color-scheme | dark | + Scenario: 🃏 Game Lobby page displays an info toast when small screen is detected + Given the user renders the app on the iPhone X + And the user is on game-lobby page + Then the toast with text "Even if the Assistant is responsive, it is recommended to use a larger screen for a better experience." should be visible + + Scenario: 🃏 Game Lobby page doesn't display an info toast when medium or large screen is detected + Given the user renders the app on the iPad Mini + And the user is on game-lobby page + Then the toast with text "Even if the Assistant is responsive, it is recommended to use a larger screen for a better experience." should be hidden + Scenario: 🃏 User adds a player Given the user is on game-lobby page Then the input with label "Player name" should be empty diff --git a/tests/acceptance/features/playwright/step-definitions/toasts/playwright-toasts.then-steps.ts b/tests/acceptance/features/playwright/step-definitions/toasts/playwright-toasts.then-steps.ts index c6ee97ac7e7..9eb47a6d6a0 100644 --- a/tests/acceptance/features/playwright/step-definitions/toasts/playwright-toasts.then-steps.ts +++ b/tests/acceptance/features/playwright/step-definitions/toasts/playwright-toasts.then-steps.ts @@ -7,4 +7,10 @@ Then(/^the toast with text "(?.+)" should be visible$/u, async function(th const toastsContainer = this.page.locator(".p-toast").first(); await expect(toastsContainer.getByRole("alert").getByText(text)).toBeVisible(); +}); + +Then(/^the toast with text "(?.+)" should be hidden$/u, async function(this: CustomWorld, text: string): Promise { + const toastsContainer = this.page.locator(".p-toast").first(); + + await expect(toastsContainer.getByRole("alert").getByText(text)).toBeHidden(); }); \ No newline at end of file diff --git a/tests/acceptance/features/playwright/step-definitions/viewports/playwright-viewports.when-steps.ts b/tests/acceptance/features/playwright/step-definitions/viewports/playwright-viewports.when-steps.ts new file mode 100644 index 00000000000..bb879408647 --- /dev/null +++ b/tests/acceptance/features/playwright/step-definitions/viewports/playwright-viewports.when-steps.ts @@ -0,0 +1,7 @@ +import { When } from "@cucumber/cucumber"; +import type { CustomWorld } from "@tests/acceptance/shared/types/word.types"; +import { devices } from "playwright-core"; + +When(/^the user renders the app on the (?iPhone X|iPad Mini)$/u, async function(this: CustomWorld, device: string): Promise { + await this.page.setViewportSize(devices[device].viewport); +}); \ No newline at end of file diff --git a/tests/stryker/incremental.json b/tests/stryker/incremental.json index 492ced45d06..c570cd85ba5 100644 --- a/tests/stryker/incremental.json +++ b/tests/stryker/incremental.json @@ -12,12 +12,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "939" + "942" ], "coveredBy": [ - "939", - "940", - "941", "942", "943", "944", @@ -28,9 +25,12 @@ "949", "950", "951", - "1622", - "1623", - "1626" + "952", + "953", + "954", + "1625", + "1626", + "1629" ], "location": { "end": { @@ -52,14 +52,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "944" + "947" ], "coveredBy": [ - "940", - "942", - "944", - "946", - "948" + "943", + "945", + "947", + "949", + "951" ], "location": { "end": { @@ -81,12 +81,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "939" + "942" ], "coveredBy": [ - "939", - "940", - "941", "942", "943", "944", @@ -97,9 +94,12 @@ "949", "950", "951", - "1622", - "1623", - "1626" + "952", + "953", + "954", + "1625", + "1626", + "1629" ], "location": { "end": { @@ -121,16 +121,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940", - "945", - "946", - "947", + "943", "948", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -152,16 +152,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940", - "945", - "946", - "947", + "943", "948", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -183,16 +183,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940", - "945", - "946", - "947", + "943", "948", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -214,16 +214,16 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "945" + "948" ], "coveredBy": [ - "940", - "945", - "946", - "947", + "943", "948", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -245,10 +245,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "945" + "948" ], "coveredBy": [ - "945" + "948" ], "location": { "end": { @@ -270,10 +270,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "945" + "948" ], "coveredBy": [ - "945" + "948" ], "location": { "end": { @@ -295,15 +295,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940", - "946", - "947", - "948", + "943", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -325,15 +325,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "948" + "951" ], "coveredBy": [ - "940", - "946", - "947", - "948", + "943", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -355,15 +355,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940", - "946", - "947", - "948", + "943", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -385,15 +385,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "948" + "951" ], "coveredBy": [ - "940", - "946", - "947", - "948", + "943", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -415,11 +415,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "948" + "951" ], "coveredBy": [ - "946", - "948" + "949", + "951" ], "location": { "end": { @@ -441,13 +441,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940", - "947", - "949", - "950" + "943", + "950", + "952", + "953" ], "location": { "end": { @@ -469,15 +469,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940", - "946", - "947", - "948", + "943", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -499,15 +499,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940", - "946", - "947", - "948", + "943", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -529,15 +529,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "945" + "948" ], "coveredBy": [ - "945", - "946", - "947", "948", "949", - "950" + "950", + "951", + "952", + "953" ], "location": { "end": { @@ -559,11 +559,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "946" + "949" ], "coveredBy": [ - "946", - "948" + "949", + "951" ], "location": { "end": { @@ -585,13 +585,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "947" + "950" ], "coveredBy": [ - "945", - "947", - "949", - "950" + "948", + "950", + "952", + "953" ], "location": { "end": { @@ -613,12 +613,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "939", - "940", - "941", "942", "943", "944", @@ -629,9 +626,12 @@ "949", "950", "951", - "1622", - "1623", - "1626" + "952", + "953", + "954", + "1625", + "1626", + "1629" ], "location": { "end": { @@ -653,12 +653,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "939", - "940", - "941", "942", "943", "944", @@ -669,9 +666,12 @@ "949", "950", "951", - "1622", - "1623", - "1626" + "952", + "953", + "954", + "1625", + "1626", + "1629" ], "location": { "end": { @@ -693,12 +693,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "939", - "940", - "941", "942", "943", "944", @@ -709,9 +706,12 @@ "949", "950", "951", - "1622", - "1623", - "1626" + "952", + "953", + "954", + "1625", + "1626", + "1629" ], "location": { "end": { @@ -733,12 +733,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940", - "942", - "944" + "943", + "945", + "947" ], "location": { "end": { @@ -760,10 +760,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940" + "943" ], "location": { "end": { @@ -785,10 +785,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "940" + "943" ], "coveredBy": [ - "940" + "943" ], "location": { "end": { @@ -816,20 +816,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "876" + "879" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -851,20 +851,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -886,20 +886,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -921,20 +921,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -956,20 +956,20 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "880" + "883" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -991,20 +991,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1026,20 +1026,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1061,20 +1061,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1096,20 +1096,20 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "880" + "883" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1131,20 +1131,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1166,20 +1166,20 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "880" + "883" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1201,20 +1201,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1236,20 +1236,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1271,11 +1271,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "879", - "883" + "882", + "886" ], "location": { "end": { @@ -1297,20 +1297,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "876" + "879" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1332,20 +1332,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "876" + "879" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1367,20 +1367,20 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "880" + "883" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1402,20 +1402,20 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "880" + "883" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1437,20 +1437,20 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "880" + "883" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1472,20 +1472,20 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "880" + "883" ], "coveredBy": [ - "876", - "877", - "878", "879", "880", "881", "882", "883", "884", - "1626", - "1912" + "885", + "886", + "887", + "1629", + "1915" ], "location": { "end": { @@ -1507,10 +1507,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "884" + "887" ], "coveredBy": [ - "884" + "887" ], "location": { "end": { @@ -1532,10 +1532,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "884" + "887" ], "coveredBy": [ - "884" + "887" ], "location": { "end": { @@ -1557,17 +1557,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "877" + "880" ], "coveredBy": [ - "877", - "878", - "879", "880", "881", "882", "883", - "884" + "884", + "885", + "886", + "887" ], "location": { "end": { @@ -1589,17 +1589,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "877" + "880" ], "coveredBy": [ - "877", - "878", - "879", "880", "881", "882", "883", - "884" + "884", + "885", + "886", + "887" ], "location": { "end": { @@ -1621,17 +1621,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "877" + "880" ], "coveredBy": [ - "877", - "878", - "879", "880", "881", "882", "883", - "884" + "884", + "885", + "886", + "887" ], "location": { "end": { @@ -1653,17 +1653,17 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "878" + "881" ], "coveredBy": [ - "877", - "878", - "879", "880", "881", "882", "883", - "884" + "884", + "885", + "886", + "887" ], "location": { "end": { @@ -1685,10 +1685,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "878" + "881" ], "coveredBy": [ - "878" + "881" ], "location": { "end": { @@ -1710,10 +1710,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "878" + "881" ], "coveredBy": [ - "878" + "881" ], "location": { "end": { @@ -1735,11 +1735,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "879", - "883" + "882", + "886" ], "location": { "end": { @@ -1761,11 +1761,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "879", - "883" + "882", + "886" ], "location": { "end": { @@ -1787,11 +1787,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "879" + "882" ], "coveredBy": [ - "879", - "883" + "882", + "886" ], "location": { "end": { @@ -1819,15 +1819,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1781" + "1784" ], "coveredBy": [ - "1781", - "1782", - "1783", "1784", "1785", - "1786" + "1786", + "1787", + "1788", + "1789" ], "location": { "end": { @@ -1849,15 +1849,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1781" + "1784" ], "coveredBy": [ - "1781", - "1782", - "1783", "1784", "1785", - "1786" + "1786", + "1787", + "1788", + "1789" ], "location": { "end": { @@ -1879,15 +1879,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1781" + "1784" ], "coveredBy": [ - "1781", - "1782", - "1783", "1784", "1785", - "1786" + "1786", + "1787", + "1788", + "1789" ], "location": { "end": { @@ -1915,19 +1915,19 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1004" + "1007" ], "coveredBy": [ - "999", - "1000", - "1001", "1002", "1003", "1004", "1005", "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -1949,19 +1949,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "999" + "1002" ], "coveredBy": [ - "999", - "1000", - "1001", "1002", "1003", "1004", "1005", "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -1983,19 +1983,19 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1004" + "1007" ], "coveredBy": [ - "999", - "1000", - "1001", "1002", "1003", "1004", "1005", "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2017,19 +2017,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "999" + "1002" ], "coveredBy": [ - "999", - "1000", - "1001", "1002", "1003", "1004", "1005", "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2051,19 +2051,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "999" + "1002" ], "coveredBy": [ - "999", - "1000", - "1001", "1002", "1003", "1004", "1005", "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2085,14 +2085,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1004" + "1007" ], "coveredBy": [ - "1004", - "1005", - "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2114,14 +2114,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1006" + "1009" ], "coveredBy": [ - "1004", - "1005", - "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2143,14 +2143,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1006" + "1009" ], "coveredBy": [ - "1004", - "1005", - "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2172,14 +2172,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1006" + "1009" ], "coveredBy": [ - "1004", - "1005", - "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2201,14 +2201,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1007" + "1010" ], "coveredBy": [ - "1004", - "1005", - "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2230,14 +2230,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1007" + "1010" ], "coveredBy": [ - "1004", - "1005", - "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2259,14 +2259,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1007" + "1010" ], "coveredBy": [ - "1004", - "1005", - "1006", "1007", - "1008" + "1008", + "1009", + "1010", + "1011" ], "location": { "end": { @@ -2294,12 +2294,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1984" + "1987" ], "coveredBy": [ - "1983", - "1984", - "1985" + "1986", + "1987", + "1988" ], "location": { "end": { @@ -2321,12 +2321,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1984" + "1987" ], "coveredBy": [ - "1983", - "1984", - "1985" + "1986", + "1987", + "1988" ], "location": { "end": { @@ -2354,12 +2354,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1978" + "1981" ], "coveredBy": [ - "1977", - "1978", - "1979" + "1980", + "1981", + "1982" ], "location": { "end": { @@ -2381,12 +2381,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1978" + "1981" ], "coveredBy": [ - "1977", - "1978", - "1979" + "1980", + "1981", + "1982" ], "location": { "end": { @@ -2414,12 +2414,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "832" + "835" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2433,7 +2430,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2455,12 +2455,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "832" + "835" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2474,7 +2471,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2496,12 +2496,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "833" + "836" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2515,7 +2512,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2537,12 +2537,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "834" + "837" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2556,7 +2553,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2578,12 +2578,9 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "835" + "838" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2597,7 +2594,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2619,12 +2619,9 @@ "testsCompleted": 11, "static": false, "killedBy": [ - "836" + "839" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2638,7 +2635,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2660,12 +2660,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "837" + "840" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2679,7 +2676,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2701,12 +2701,9 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "838" + "841" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2720,7 +2717,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2742,12 +2742,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "839" + "842" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2761,7 +2758,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2783,12 +2783,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "827" + "830" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2802,7 +2799,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2824,12 +2824,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "827" + "830" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2843,7 +2840,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2865,12 +2865,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "826" + "829" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2884,7 +2881,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2906,12 +2906,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "830" + "833" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -2925,7 +2922,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -2947,11 +2947,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "841" + "844" ], "coveredBy": [ - "841", - "842" + "844", + "845" ], "location": { "end": { @@ -2973,11 +2973,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "841" + "844" ], "coveredBy": [ - "841", - "842" + "844", + "845" ], "location": { "end": { @@ -2999,11 +2999,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "841" + "844" ], "coveredBy": [ - "841", - "842" + "844", + "845" ], "location": { "end": { @@ -3025,11 +3025,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "842" + "845" ], "coveredBy": [ - "841", - "842" + "844", + "845" ], "location": { "end": { @@ -3051,10 +3051,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "842" + "845" ], "coveredBy": [ - "842" + "845" ], "location": { "end": { @@ -3076,10 +3076,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "842" + "845" ], "coveredBy": [ - "842" + "845" ], "location": { "end": { @@ -3101,12 +3101,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "832" + "835" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -3120,7 +3117,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -3142,12 +3142,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "832" + "835" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -3161,7 +3158,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -3183,12 +3183,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "831" + "834" ], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -3202,7 +3199,10 @@ "839", "840", "841", - "842" + "842", + "843", + "844", + "845" ], "location": { "end": { @@ -3224,11 +3224,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "840" + "843" ], "coveredBy": [ - "831", - "840" + "834", + "843" ], "location": { "end": { @@ -3256,15 +3256,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1766" + "1769" ], "coveredBy": [ - "1766", - "1767", - "1768", "1769", "1770", - "1771" + "1771", + "1772", + "1773", + "1774" ], "location": { "end": { @@ -3286,15 +3286,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1766" + "1769" ], "coveredBy": [ - "1766", - "1767", - "1768", "1769", "1770", - "1771" + "1771", + "1772", + "1773", + "1774" ], "location": { "end": { @@ -3316,15 +3316,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1770" + "1773" ], "coveredBy": [ - "1766", - "1767", - "1768", "1769", "1770", - "1771" + "1771", + "1772", + "1773", + "1774" ], "location": { "end": { @@ -3346,10 +3346,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1770" + "1773" ], "coveredBy": [ - "1770" + "1773" ], "location": { "end": { @@ -3371,10 +3371,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1770" + "1773" ], "coveredBy": [ - "1770" + "1773" ], "location": { "end": { @@ -3396,15 +3396,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1766" + "1769" ], "coveredBy": [ - "1766", - "1767", - "1768", "1769", "1770", - "1771" + "1771", + "1772", + "1773", + "1774" ], "location": { "end": { @@ -3426,10 +3426,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1771" + "1774" ], "coveredBy": [ - "1771" + "1774" ], "location": { "end": { @@ -3451,10 +3451,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1771" + "1774" ], "coveredBy": [ - "1771" + "1774" ], "location": { "end": { @@ -3482,12 +3482,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1405" + "1408" ], "coveredBy": [ - "1405", - "1406", - "1407" + "1408", + "1409", + "1410" ], "location": { "end": { @@ -3509,12 +3509,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1405" + "1408" ], "coveredBy": [ - "1405", - "1406", - "1407" + "1408", + "1409", + "1410" ], "location": { "end": { @@ -3536,12 +3536,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1405" + "1408" ], "coveredBy": [ - "1405", - "1406", - "1407" + "1408", + "1409", + "1410" ], "location": { "end": { @@ -3563,12 +3563,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1405" + "1408" ], "coveredBy": [ - "1405", - "1406", - "1407" + "1408", + "1409", + "1410" ], "location": { "end": { @@ -3590,12 +3590,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1405" + "1408" ], "coveredBy": [ - "1405", - "1406", - "1407" + "1408", + "1409", + "1410" ], "location": { "end": { @@ -3617,12 +3617,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1405" + "1408" ], "coveredBy": [ - "1405", - "1406", - "1407" + "1408", + "1409", + "1410" ], "location": { "end": { @@ -3644,12 +3644,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1405" + "1408" ], "coveredBy": [ - "1405", - "1406", - "1407" + "1408", + "1409", + "1410" ], "location": { "end": { @@ -3671,10 +3671,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1407" + "1410" ], "coveredBy": [ - "1407" + "1410" ], "location": { "end": { @@ -3696,10 +3696,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1407" + "1410" ], "coveredBy": [ - "1407" + "1410" ], "location": { "end": { @@ -3721,10 +3721,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1406" + "1409" ], "coveredBy": [ - "1406" + "1409" ], "location": { "end": { @@ -3746,10 +3746,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1406" + "1409" ], "coveredBy": [ - "1406" + "1409" ], "location": { "end": { @@ -3771,10 +3771,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1406" + "1409" ], "coveredBy": [ - "1406" + "1409" ], "location": { "end": { @@ -3796,10 +3796,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1406" + "1409" ], "coveredBy": [ - "1406" + "1409" ], "location": { "end": { @@ -3821,10 +3821,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1406" + "1409" ], "coveredBy": [ - "1406" + "1409" ], "location": { "end": { @@ -3846,10 +3846,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1406" + "1409" ], "coveredBy": [ - "1406" + "1409" ], "location": { "end": { @@ -3877,19 +3877,19 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1414" + "1417" ], "coveredBy": [ - "1413", - "1414", - "1415", "1416", "1417", "1418", "1419", "1420", "1421", - "1422" + "1422", + "1423", + "1424", + "1425" ], "location": { "end": { @@ -3911,14 +3911,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1418" + "1421" ], "coveredBy": [ - "1418", - "1419", - "1420", "1421", - "1422" + "1422", + "1423", + "1424", + "1425" ], "location": { "end": { @@ -3940,14 +3940,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1418" + "1421" ], "coveredBy": [ - "1418", - "1419", - "1420", "1421", - "1422" + "1422", + "1423", + "1424", + "1425" ], "location": { "end": { @@ -3969,10 +3969,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1422" + "1425" ], "coveredBy": [ - "1422" + "1425" ], "location": { "end": { @@ -3994,10 +3994,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1422" + "1425" ], "coveredBy": [ - "1422" + "1425" ], "location": { "end": { @@ -4043,17 +4043,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "991" + "994" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4075,17 +4075,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "991" + "994" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4107,17 +4107,17 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "995" + "998" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4139,17 +4139,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "991" + "994" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4171,17 +4171,17 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "996" + "999" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4203,17 +4203,17 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "997" + "1000" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4235,17 +4235,17 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "998" + "1001" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4267,17 +4267,17 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "992" + "995" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4299,17 +4299,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "991" + "994" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4331,17 +4331,17 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "992" + "995" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -4363,17 +4363,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "991" + "994" ], "coveredBy": [ - "991", - "992", - "993", "994", "995", "996", "997", - "998" + "998", + "999", + "1000", + "1001" ], "location": { "end": { @@ -7215,16 +7215,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1089" + "1092" ], "coveredBy": [ - "1087", - "1088", - "1089", "1090", "1091", "1092", - "1093" + "1093", + "1094", + "1095", + "1096" ], "location": { "end": { @@ -7246,16 +7246,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1087" + "1090" ], "coveredBy": [ - "1087", - "1088", - "1089", "1090", "1091", "1092", - "1093" + "1093", + "1094", + "1095", + "1096" ], "location": { "end": { @@ -7277,16 +7277,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1087" + "1090" ], "coveredBy": [ - "1087", - "1088", - "1089", "1090", "1091", "1092", - "1093" + "1093", + "1094", + "1095", + "1096" ], "location": { "end": { @@ -7308,16 +7308,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1089" + "1092" ], "coveredBy": [ - "1087", - "1088", - "1089", "1090", "1091", "1092", - "1093" + "1093", + "1094", + "1095", + "1096" ], "location": { "end": { @@ -7339,16 +7339,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1087" + "1090" ], "coveredBy": [ - "1087", - "1088", - "1089", "1090", "1091", "1092", - "1093" + "1093", + "1094", + "1095", + "1096" ], "location": { "end": { @@ -7370,16 +7370,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1087" + "1090" ], "coveredBy": [ - "1087", - "1088", - "1089", "1090", "1091", "1092", - "1093" + "1093", + "1094", + "1095", + "1096" ], "location": { "end": { @@ -7401,16 +7401,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1087" + "1090" ], "coveredBy": [ - "1087", - "1088", - "1089", "1090", "1091", "1092", - "1093" + "1093", + "1094", + "1095", + "1096" ], "location": { "end": { @@ -7432,13 +7432,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1091" + "1094" ], "coveredBy": [ - "1089", - "1091", "1092", - "1093" + "1094", + "1095", + "1096" ], "location": { "end": { @@ -7460,13 +7460,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1089" + "1092" ], "coveredBy": [ - "1089", - "1091", "1092", - "1093" + "1094", + "1095", + "1096" ], "location": { "end": { @@ -7494,15 +7494,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "809" + "812" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7524,15 +7524,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "812" + "815" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7554,15 +7554,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "809" + "812" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7584,15 +7584,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "809" + "812" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7614,15 +7614,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "809" + "812" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7644,15 +7644,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "809" + "812" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7674,15 +7674,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "809" + "812" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7704,15 +7704,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "809" + "812" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7734,15 +7734,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "812" + "815" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7764,10 +7764,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "812" + "815" ], "coveredBy": [ - "812" + "815" ], "location": { "end": { @@ -7789,15 +7789,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "809" + "812" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7819,15 +7819,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "809" + "812" ], "coveredBy": [ - "809", - "810", - "811", "812", "813", - "814" + "814", + "815", + "816", + "817" ], "location": { "end": { @@ -7855,13 +7855,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1718" + "1721" ], "coveredBy": [ - "1718", - "1719", - "1720", - "1721" + "1721", + "1722", + "1723", + "1724" ], "location": { "end": { @@ -7883,13 +7883,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1718" + "1721" ], "coveredBy": [ - "1718", - "1719", - "1720", - "1721" + "1721", + "1722", + "1723", + "1724" ], "location": { "end": { @@ -7911,13 +7911,13 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1721" + "1724" ], "coveredBy": [ - "1718", - "1719", - "1720", - "1721" + "1721", + "1722", + "1723", + "1724" ], "location": { "end": { @@ -7939,13 +7939,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1718" + "1721" ], "coveredBy": [ - "1718", - "1719", - "1720", - "1721" + "1721", + "1722", + "1723", + "1724" ], "location": { "end": { @@ -7967,13 +7967,13 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1721" + "1724" ], "coveredBy": [ - "1718", - "1719", - "1720", - "1721" + "1721", + "1722", + "1723", + "1724" ], "location": { "end": { @@ -7995,10 +7995,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1721" + "1724" ], "coveredBy": [ - "1721" + "1724" ], "location": { "end": { @@ -8020,10 +8020,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1721" + "1724" ], "coveredBy": [ - "1721" + "1724" ], "location": { "end": { @@ -8045,13 +8045,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1718" + "1721" ], "coveredBy": [ - "1718", - "1719", - "1720", - "1721" + "1721", + "1722", + "1723", + "1724" ], "location": { "end": { @@ -8073,13 +8073,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1718" + "1721" ], "coveredBy": [ - "1718", - "1719", - "1720", - "1721" + "1721", + "1722", + "1723", + "1724" ], "location": { "end": { @@ -8101,13 +8101,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1718" + "1721" ], "coveredBy": [ - "1718", - "1719", - "1720", - "1721" + "1721", + "1722", + "1723", + "1724" ], "location": { "end": { @@ -8135,15 +8135,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1134" + "1137" ], "coveredBy": [ - "1134", - "1135", - "1136", "1137", "1138", - "1139" + "1139", + "1140", + "1141", + "1142" ], "location": { "end": { @@ -8165,15 +8165,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1134" + "1137" ], "coveredBy": [ - "1134", - "1135", - "1136", "1137", "1138", - "1139" + "1139", + "1140", + "1141", + "1142" ], "location": { "end": { @@ -8195,15 +8195,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1137" + "1140" ], "coveredBy": [ - "1134", - "1135", - "1136", "1137", "1138", - "1139" + "1139", + "1140", + "1141", + "1142" ], "location": { "end": { @@ -8225,11 +8225,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1137" + "1140" ], "coveredBy": [ - "1137", - "1138" + "1140", + "1141" ], "location": { "end": { @@ -8251,15 +8251,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1134" + "1137" ], "coveredBy": [ - "1134", - "1135", - "1136", "1137", "1138", - "1139" + "1139", + "1140", + "1141", + "1142" ], "location": { "end": { @@ -8281,15 +8281,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1134" + "1137" ], "coveredBy": [ - "1134", - "1135", - "1136", "1137", "1138", - "1139" + "1139", + "1140", + "1141", + "1142" ], "location": { "end": { @@ -8317,18 +8317,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1208" + "1211" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8350,18 +8350,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1205" + "1208" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8383,18 +8383,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1205" + "1208" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8416,18 +8416,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8449,18 +8449,18 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "1212" + "1215" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8482,18 +8482,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8515,18 +8515,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8548,18 +8548,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8581,12 +8581,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1208", - "1209", - "1210" + "1211", + "1212", + "1213" ], "location": { "end": { @@ -8608,12 +8608,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1208", - "1209", - "1210" + "1211", + "1212", + "1213" ], "location": { "end": { @@ -8635,18 +8635,18 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "1212" + "1215" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8668,18 +8668,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8701,18 +8701,18 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "1212" + "1215" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8734,18 +8734,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8767,18 +8767,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8800,18 +8800,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8833,12 +8833,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1208", - "1209", - "1210" + "1211", + "1212", + "1213" ], "location": { "end": { @@ -8860,12 +8860,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1209" + "1212" ], "coveredBy": [ - "1208", - "1209", - "1210" + "1211", + "1212", + "1213" ], "location": { "end": { @@ -8887,18 +8887,18 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "1212" + "1215" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8920,18 +8920,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1208" + "1211" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8953,18 +8953,18 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1211" + "1214" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -8986,18 +8986,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1208" + "1211" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -9019,18 +9019,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1208" + "1211" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -9052,18 +9052,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1208" + "1211" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -9085,12 +9085,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1208" + "1211" ], "coveredBy": [ - "1208", - "1209", - "1210" + "1211", + "1212", + "1213" ], "location": { "end": { @@ -9112,12 +9112,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1208" + "1211" ], "coveredBy": [ - "1208", - "1209", - "1210" + "1211", + "1212", + "1213" ], "location": { "end": { @@ -9139,18 +9139,18 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1211" + "1214" ], "coveredBy": [ - "1205", - "1206", - "1207", "1208", "1209", "1210", "1211", "1212", - "1213" + "1213", + "1214", + "1215", + "1216" ], "location": { "end": { @@ -9178,14 +9178,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1178" + "1181" ], "coveredBy": [ - "1178", - "1179", - "1180", "1181", - "1182" + "1182", + "1183", + "1184", + "1185" ], "location": { "end": { @@ -9207,14 +9207,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1178" + "1181" ], "coveredBy": [ - "1178", - "1179", - "1180", "1181", - "1182" + "1182", + "1183", + "1184", + "1185" ], "location": { "end": { @@ -9236,10 +9236,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1181" + "1184" ], "coveredBy": [ - "1181" + "1184" ], "location": { "end": { @@ -9261,14 +9261,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1178" + "1181" ], "coveredBy": [ - "1178", - "1179", - "1180", "1181", - "1182" + "1182", + "1183", + "1184", + "1185" ], "location": { "end": { @@ -9290,14 +9290,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1178" + "1181" ], "coveredBy": [ - "1178", - "1179", - "1180", "1181", - "1182" + "1182", + "1183", + "1184", + "1185" ], "location": { "end": { @@ -9325,14 +9325,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1443" + "1446" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", - "1447" + "1447", + "1448", + "1449", + "1450" ], "location": { "end": { @@ -9354,14 +9354,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1443" + "1446" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", - "1447" + "1447", + "1448", + "1449", + "1450" ], "location": { "end": { @@ -9383,14 +9383,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1443" + "1446" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", - "1447" + "1447", + "1448", + "1449", + "1450" ], "location": { "end": { @@ -9418,12 +9418,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1751" + "1754" ], "coveredBy": [ - "1751", - "1752", - "1753" + "1754", + "1755", + "1756" ], "location": { "end": { @@ -9445,12 +9445,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1753" + "1756" ], "coveredBy": [ - "1751", - "1752", - "1753" + "1754", + "1755", + "1756" ], "location": { "end": { @@ -9472,12 +9472,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1751" + "1754" ], "coveredBy": [ - "1751", - "1752", - "1753" + "1754", + "1755", + "1756" ], "location": { "end": { @@ -9499,10 +9499,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1753" + "1756" ], "coveredBy": [ - "1753" + "1756" ], "location": { "end": { @@ -9530,12 +9530,9 @@ "testsCompleted": 16, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -9563,7 +9560,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -9585,12 +9585,9 @@ "testsCompleted": 16, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -9618,7 +9615,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -9640,12 +9640,9 @@ "testsCompleted": 16, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -9673,7 +9670,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -9695,12 +9695,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -9728,7 +9725,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -9750,12 +9750,9 @@ "testsCompleted": 16, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -9783,7 +9780,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -9805,12 +9805,9 @@ "testsCompleted": 17, "static": false, "killedBy": [ - "251" + "254" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -9838,7 +9835,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -9860,12 +9860,9 @@ "testsCompleted": 18, "static": false, "killedBy": [ - "251" + "254" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -9893,7 +9890,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -9915,12 +9915,9 @@ "testsCompleted": 18, "static": false, "killedBy": [ - "251" + "254" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -9948,7 +9945,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -9970,12 +9970,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "258" + "261" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10003,7 +10000,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10025,12 +10025,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10058,7 +10055,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10080,12 +10080,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "258" + "261" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10113,7 +10110,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10135,12 +10135,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10168,7 +10165,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10190,14 +10190,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "251" + "254" ], "coveredBy": [ - "242", - "251", - "252", - "261", - "262" + "245", + "254", + "255", + "264", + "265" ], "location": { "end": { @@ -10219,14 +10219,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "242", - "251", - "252", - "261", - "262" + "245", + "254", + "255", + "264", + "265" ], "location": { "end": { @@ -10248,12 +10248,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10281,7 +10278,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10303,12 +10303,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10336,7 +10333,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10358,12 +10358,9 @@ "testsCompleted": 16, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10391,7 +10388,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10413,11 +10413,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "252", - "262" + "255", + "265" ], "location": { "end": { @@ -10439,11 +10439,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "252", - "262" + "255", + "265" ], "location": { "end": { @@ -10465,11 +10465,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "252" + "255" ], "coveredBy": [ - "252", - "262" + "255", + "265" ], "location": { "end": { @@ -10491,11 +10491,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "262" + "265" ], "coveredBy": [ - "252", - "262" + "255", + "265" ], "location": { "end": { @@ -10517,12 +10517,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10550,7 +10547,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10572,12 +10572,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "240" + "243" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10605,7 +10602,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10627,12 +10627,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10660,7 +10657,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10682,12 +10682,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10715,7 +10712,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10737,12 +10737,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10770,7 +10767,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10792,12 +10792,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10825,7 +10822,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10847,12 +10847,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10880,7 +10877,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10902,12 +10902,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "237" + "240" ], "coveredBy": [ - "237", - "238", - "239", "240", "241", "242", @@ -10935,7 +10932,10 @@ "264", "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -10957,33 +10957,33 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "240" + "243" ], "coveredBy": [ - "240", - "241", - "242", "243", "244", "245", "246", "247", + "248", "249", "250", - "251", + "252", "253", "254", - "255", "256", "257", + "258", "259", "260", - "261", + "262", "263", "264", - "265", "266", - "267" + "267", + "268", + "269", + "270" ], "location": { "end": { @@ -11011,13 +11011,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1815" + "1818" ], "coveredBy": [ - "1815", - "1816", - "1817", - "1818" + "1818", + "1819", + "1820", + "1821" ], "location": { "end": { @@ -11039,13 +11039,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1817" + "1820" ], "coveredBy": [ - "1815", - "1816", - "1817", - "1818" + "1818", + "1819", + "1820", + "1821" ], "location": { "end": { @@ -11073,15 +11073,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11103,15 +11103,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1074" + "1077" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11133,15 +11133,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11163,15 +11163,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1074" + "1077" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11193,15 +11193,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11223,15 +11223,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11253,15 +11253,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1074" + "1077" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11283,15 +11283,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1074" + "1077" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11313,15 +11313,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11343,15 +11343,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1071" + "1074" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11373,15 +11373,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1071" + "1074" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11403,15 +11403,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1071" + "1074" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11433,15 +11433,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1071" + "1074" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11463,15 +11463,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11493,15 +11493,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11523,15 +11523,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11553,15 +11553,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1074" + "1077" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11583,10 +11583,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1074" + "1077" ], "coveredBy": [ - "1074" + "1077" ], "location": { "end": { @@ -11608,15 +11608,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11638,15 +11638,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1076" + "1079" ], "coveredBy": [ - "1071", - "1072", - "1073", "1074", "1075", - "1076" + "1076", + "1077", + "1078", + "1079" ], "location": { "end": { @@ -11674,15 +11674,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1235" + "1238" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11704,15 +11704,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1230" + "1233" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11734,15 +11734,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1230" + "1233" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11764,15 +11764,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1230" + "1233" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11794,15 +11794,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1230" + "1233" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11824,15 +11824,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1230" + "1233" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11854,15 +11854,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1235" + "1238" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11884,15 +11884,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1235" + "1238" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11914,15 +11914,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1231" + "1234" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11944,15 +11944,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1231" + "1234" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -11974,15 +11974,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1231" + "1234" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -12004,10 +12004,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1235" + "1238" ], "coveredBy": [ - "1235" + "1238" ], "location": { "end": { @@ -12029,15 +12029,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1232" + "1235" ], "coveredBy": [ - "1230", - "1231", - "1232", "1233", "1234", - "1235" + "1235", + "1236", + "1237", + "1238" ], "location": { "end": { @@ -12065,17 +12065,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1243" + "1246" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12097,17 +12097,17 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1248" + "1251" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12129,17 +12129,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1243" + "1246" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12161,17 +12161,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1243" + "1246" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12193,17 +12193,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1243" + "1246" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12225,17 +12225,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1243" + "1246" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12257,17 +12257,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1243" + "1246" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12289,17 +12289,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1243" + "1246" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12321,12 +12321,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1248" + "1251" ], "coveredBy": [ - "1246", - "1248", - "1250" + "1249", + "1251", + "1253" ], "location": { "end": { @@ -12348,12 +12348,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1248" + "1251" ], "coveredBy": [ - "1246", - "1248", - "1250" + "1249", + "1251", + "1253" ], "location": { "end": { @@ -12375,17 +12375,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1245" + "1248" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12407,17 +12407,17 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1246" + "1249" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12439,17 +12439,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1245" + "1248" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12471,17 +12471,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1245" + "1248" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12503,17 +12503,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1245" + "1248" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12535,17 +12535,17 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1244" + "1247" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12567,17 +12567,17 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "1250" + "1253" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12599,17 +12599,17 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1249" + "1252" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12631,17 +12631,17 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1249" + "1252" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12663,17 +12663,17 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1244" + "1247" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12695,12 +12695,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1250" + "1253" ], "coveredBy": [ - "1246", - "1248", - "1250" + "1249", + "1251", + "1253" ], "location": { "end": { @@ -12722,17 +12722,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1245" + "1248" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12754,17 +12754,17 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1246" + "1249" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12786,17 +12786,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1245" + "1248" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12818,17 +12818,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1245" + "1248" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12850,17 +12850,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1245" + "1248" ], "coveredBy": [ - "1243", - "1244", - "1245", "1246", "1247", "1248", "1249", - "1250" + "1250", + "1251", + "1252", + "1253" ], "location": { "end": { @@ -12882,12 +12882,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1246" + "1249" ], "coveredBy": [ - "1246", - "1248", - "1250" + "1249", + "1251", + "1253" ], "location": { "end": { @@ -12915,13 +12915,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1772" + "1775" ], "coveredBy": [ - "1772", - "1773", - "1774", - "1775" + "1775", + "1776", + "1777", + "1778" ], "location": { "end": { @@ -12943,13 +12943,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1772" + "1775" ], "coveredBy": [ - "1772", - "1773", - "1774", - "1775" + "1775", + "1776", + "1777", + "1778" ], "location": { "end": { @@ -12971,13 +12971,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1772" + "1775" ], "coveredBy": [ - "1772", - "1773", - "1774", - "1775" + "1775", + "1776", + "1777", + "1778" ], "location": { "end": { @@ -12999,13 +12999,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1772" + "1775" ], "coveredBy": [ - "1772", - "1773", - "1774", - "1775" + "1775", + "1776", + "1777", + "1778" ], "location": { "end": { @@ -13027,13 +13027,13 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1775" + "1778" ], "coveredBy": [ - "1772", - "1773", - "1774", - "1775" + "1775", + "1776", + "1777", + "1778" ], "location": { "end": { @@ -13061,19 +13061,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13095,19 +13095,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13129,19 +13129,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13163,19 +13163,19 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "889" + "892" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13197,19 +13197,19 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "889" + "892" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13231,19 +13231,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13265,19 +13265,19 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "889" + "892" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13299,19 +13299,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13333,11 +13333,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "889" + "892" ], "coveredBy": [ - "889", - "890" + "892", + "893" ], "location": { "end": { @@ -13359,11 +13359,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "889" + "892" ], "coveredBy": [ - "889", - "890" + "892", + "893" ], "location": { "end": { @@ -13385,11 +13385,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "889" + "892" ], "coveredBy": [ - "889", - "890" + "892", + "893" ], "location": { "end": { @@ -13411,19 +13411,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13445,10 +13445,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "891" + "894" ], "coveredBy": [ - "891" + "894" ], "location": { "end": { @@ -13470,19 +13470,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13504,19 +13504,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13538,19 +13538,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13572,19 +13572,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "885" + "888" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13606,11 +13606,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "893" + "896" ], "coveredBy": [ - "892", - "893" + "895", + "896" ], "location": { "end": { @@ -13632,11 +13632,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "892" + "895" ], "coveredBy": [ - "892", - "893" + "895", + "896" ], "location": { "end": { @@ -13658,11 +13658,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "893" + "896" ], "coveredBy": [ - "892", - "893" + "895", + "896" ], "location": { "end": { @@ -13684,11 +13684,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "892" + "895" ], "coveredBy": [ - "892", - "893" + "895", + "896" ], "location": { "end": { @@ -13710,11 +13710,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "893" + "896" ], "coveredBy": [ - "892", - "893" + "895", + "896" ], "location": { "end": { @@ -13736,10 +13736,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "893" + "896" ], "coveredBy": [ - "893" + "896" ], "location": { "end": { @@ -13761,10 +13761,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "893" + "896" ], "coveredBy": [ - "893" + "896" ], "location": { "end": { @@ -13786,19 +13786,19 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "887" + "890" ], "coveredBy": [ - "885", - "886", - "887", "888", "889", "890", "891", "892", "893", - "894" + "894", + "895", + "896", + "897" ], "location": { "end": { @@ -13826,14 +13826,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1479" + "1482" ], "coveredBy": [ - "1479", - "1480", - "1481", "1482", - "1483" + "1483", + "1484", + "1485", + "1486" ], "location": { "end": { @@ -13855,14 +13855,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1479" + "1482" ], "coveredBy": [ - "1479", - "1480", - "1481", "1482", - "1483" + "1483", + "1484", + "1485", + "1486" ], "location": { "end": { @@ -13884,14 +13884,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1479" + "1482" ], "coveredBy": [ - "1479", - "1480", - "1481", "1482", - "1483" + "1483", + "1484", + "1485", + "1486" ], "location": { "end": { @@ -13913,14 +13913,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1479" + "1482" ], "coveredBy": [ - "1479", - "1480", - "1481", "1482", - "1483" + "1483", + "1484", + "1485", + "1486" ], "location": { "end": { @@ -13942,14 +13942,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1480" + "1483" ], "coveredBy": [ - "1479", - "1480", - "1481", "1482", - "1483" + "1483", + "1484", + "1485", + "1486" ], "location": { "end": { @@ -13977,32 +13977,32 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "160" + "190" ], "coveredBy": [ - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182" + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212" ], "location": { "end": { @@ -14024,32 +14024,32 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "160" + "190" ], "coveredBy": [ - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182" + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212" ], "location": { "end": { @@ -14071,32 +14071,32 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "160" + "190" ], "coveredBy": [ - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182" + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212" ], "location": { "end": { @@ -14118,32 +14118,32 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "160" + "190" ], "coveredBy": [ - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182" + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212" ], "location": { "end": { @@ -14165,32 +14165,32 @@ "testsCompleted": 23, "static": false, "killedBy": [ - "182" + "212" ], "coveredBy": [ - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182" + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212" ], "location": { "end": { @@ -14212,10 +14212,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "182" + "212" ], "coveredBy": [ - "182" + "212" ], "location": { "end": { @@ -14243,18 +14243,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14276,18 +14276,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14309,18 +14309,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "804" + "807" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14342,18 +14342,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14375,18 +14375,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14408,18 +14408,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14441,18 +14441,18 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "806" + "809" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14474,18 +14474,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14507,18 +14507,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "804" + "807" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14540,18 +14540,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14573,18 +14573,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "804" + "807" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14606,18 +14606,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14639,18 +14639,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14672,18 +14672,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14705,18 +14705,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14738,12 +14738,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "804" + "807" ], "coveredBy": [ - "804", - "806", - "808" + "807", + "809", + "811" ], "location": { "end": { @@ -14765,18 +14765,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14798,18 +14798,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14831,18 +14831,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14864,18 +14864,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14897,18 +14897,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14930,18 +14930,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14963,18 +14963,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "800" + "803" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -14996,18 +14996,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "801" + "804" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -15029,18 +15029,18 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "808" + "811" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -15062,18 +15062,18 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "807" + "810" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -15095,18 +15095,18 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "807" + "810" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -15128,18 +15128,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "801" + "804" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -15161,12 +15161,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "808" + "811" ], "coveredBy": [ - "804", - "806", - "808" + "807", + "809", + "811" ], "location": { "end": { @@ -15188,18 +15188,18 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "802" + "805" ], "coveredBy": [ - "800", - "801", - "802", "803", "804", "805", "806", "807", - "808" + "808", + "809", + "810", + "811" ], "location": { "end": { @@ -15227,18 +15227,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15260,18 +15260,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1034" + "1037" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15293,18 +15293,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15326,18 +15326,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15359,18 +15359,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15392,18 +15392,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1033" + "1036" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15425,11 +15425,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1033" + "1036" ], "coveredBy": [ - "1033", - "1034" + "1036", + "1037" ], "location": { "end": { @@ -15451,11 +15451,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1033" + "1036" ], "coveredBy": [ - "1033", - "1034" + "1036", + "1037" ], "location": { "end": { @@ -15477,11 +15477,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1033" + "1036" ], "coveredBy": [ - "1033", - "1034" + "1036", + "1037" ], "location": { "end": { @@ -15503,18 +15503,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15536,18 +15536,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15569,18 +15569,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15602,18 +15602,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15635,18 +15635,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15668,18 +15668,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1030" + "1033" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15701,12 +15701,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1036" + "1039" ], "coveredBy": [ - "1036", - "1037", - "1038" + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15728,12 +15728,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1037" + "1040" ], "coveredBy": [ - "1036", - "1037", - "1038" + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15755,12 +15755,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1036" + "1039" ], "coveredBy": [ - "1036", - "1037", - "1038" + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15782,12 +15782,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1036" + "1039" ], "coveredBy": [ - "1036", - "1037", - "1038" + "1039", + "1040", + "1041" ], "location": { "end": { @@ -15809,10 +15809,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1036" + "1039" ], "coveredBy": [ - "1036" + "1039" ], "location": { "end": { @@ -15834,10 +15834,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1036" + "1039" ], "coveredBy": [ - "1036" + "1039" ], "location": { "end": { @@ -15859,11 +15859,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1038" + "1041" ], "coveredBy": [ - "1037", - "1038" + "1040", + "1041" ], "location": { "end": { @@ -15885,11 +15885,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1037" + "1040" ], "coveredBy": [ - "1037", - "1038" + "1040", + "1041" ], "location": { "end": { @@ -15911,11 +15911,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1037" + "1040" ], "coveredBy": [ - "1037", - "1038" + "1040", + "1041" ], "location": { "end": { @@ -15937,10 +15937,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1037" + "1040" ], "coveredBy": [ - "1037" + "1040" ], "location": { "end": { @@ -15962,10 +15962,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1037" + "1040" ], "coveredBy": [ - "1037" + "1040" ], "location": { "end": { @@ -15987,18 +15987,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1035" + "1038" ], "coveredBy": [ - "1030", - "1031", - "1032", "1033", "1034", "1035", "1036", "1037", - "1038" + "1038", + "1039", + "1040", + "1041" ], "location": { "end": { @@ -16026,12 +16026,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16043,7 +16040,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16065,12 +16065,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16082,7 +16079,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16104,12 +16104,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16121,7 +16118,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16143,12 +16143,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "763" + "766" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16160,7 +16157,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16182,12 +16182,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "763" + "766" ], "coveredBy": [ - "763", - "767", - "770" + "766", + "770", + "773" ], "location": { "end": { @@ -16209,12 +16209,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16226,7 +16223,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16248,12 +16248,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16265,7 +16262,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16287,12 +16287,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16304,7 +16301,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16326,12 +16326,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16343,7 +16340,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16365,16 +16365,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "758", - "759", - "760", - "765", - "766", - "767", - "768" + "761", + "762", + "763", + "768", + "769", + "770", + "771" ], "location": { "end": { @@ -16396,12 +16396,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16413,7 +16410,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16435,12 +16435,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16452,7 +16449,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16474,12 +16474,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16491,7 +16488,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16513,12 +16513,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16530,7 +16527,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16552,12 +16552,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16569,7 +16566,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16591,12 +16591,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16608,7 +16605,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16630,12 +16630,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16647,7 +16644,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16669,12 +16669,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16686,7 +16683,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16708,12 +16708,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16725,7 +16722,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16747,12 +16747,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16764,7 +16761,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16786,12 +16786,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16803,7 +16800,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16825,12 +16825,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16842,7 +16839,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16864,12 +16864,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16881,7 +16878,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16903,12 +16903,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16920,7 +16917,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -16942,18 +16942,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "758", - "759", - "760", + "761", + "762", "763", - "765", "766", - "767", "768", - "770" + "769", + "770", + "771", + "773" ], "location": { "end": { @@ -16975,12 +16975,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "756" + "759" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -16992,7 +16989,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17014,12 +17014,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "756" + "759" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17031,7 +17028,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17053,12 +17053,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17070,7 +17067,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17092,12 +17092,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "756" + "759" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17109,7 +17106,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17131,12 +17131,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17148,7 +17145,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17170,16 +17170,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "758", - "759", - "760", - "765", - "766", - "767", - "768" + "761", + "762", + "763", + "768", + "769", + "770", + "771" ], "location": { "end": { @@ -17201,16 +17201,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "758", - "759", - "760", - "765", - "766", - "767", - "768" + "761", + "762", + "763", + "768", + "769", + "770", + "771" ], "location": { "end": { @@ -17232,16 +17232,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "758", - "759", - "760", - "765", - "766", - "767", - "768" + "761", + "762", + "763", + "768", + "769", + "770", + "771" ], "location": { "end": { @@ -17263,12 +17263,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "756" + "759" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17280,7 +17277,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17302,12 +17302,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "756" + "759" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17319,7 +17316,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17341,11 +17341,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "763" + "766" ], "coveredBy": [ - "763", - "767" + "766", + "770" ], "location": { "end": { @@ -17367,11 +17367,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "763" + "766" ], "coveredBy": [ - "763", - "767" + "766", + "770" ], "location": { "end": { @@ -17393,12 +17393,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "769" + "772" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17410,7 +17407,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17432,12 +17432,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "764" + "767" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17449,7 +17446,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17471,12 +17471,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "764" + "767" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17488,7 +17485,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17510,12 +17510,9 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "768" + "771" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17527,7 +17524,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17549,12 +17549,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "764" + "767" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17566,7 +17563,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17588,12 +17588,9 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "768" + "771" ], "coveredBy": [ - "756", - "757", - "758", "759", "760", "761", @@ -17605,7 +17602,10 @@ "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17627,15 +17627,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "758" + "761" ], "coveredBy": [ - "758", - "760", - "765", - "766", - "767", - "768" + "761", + "763", + "768", + "769", + "770", + "771" ], "location": { "end": { @@ -17657,23 +17657,23 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "761" + "764" ], "coveredBy": [ - "756", - "757", - "758", "759", + "760", "761", "762", - "763", "764", "765", "766", "767", "768", "769", - "770" + "770", + "771", + "772", + "773" ], "location": { "end": { @@ -17701,15 +17701,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1065" + "1068" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", "1069", - "1070" + "1070", + "1071", + "1072", + "1073" ], "location": { "end": { @@ -17731,15 +17731,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1065" + "1068" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", "1069", - "1070" + "1070", + "1071", + "1072", + "1073" ], "location": { "end": { @@ -17761,10 +17761,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1070" + "1073" ], "coveredBy": [ - "1070" + "1073" ], "location": { "end": { @@ -17786,15 +17786,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1069" + "1072" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", "1069", - "1070" + "1070", + "1071", + "1072", + "1073" ], "location": { "end": { @@ -17816,15 +17816,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1065" + "1068" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", "1069", - "1070" + "1070", + "1071", + "1072", + "1073" ], "location": { "end": { @@ -17846,15 +17846,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1065" + "1068" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", "1069", - "1070" + "1070", + "1071", + "1072", + "1073" ], "location": { "end": { @@ -17876,15 +17876,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1069" + "1072" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", "1069", - "1070" + "1070", + "1071", + "1072", + "1073" ], "location": { "end": { @@ -17906,11 +17906,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1069" + "1072" ], "coveredBy": [ - "1069", - "1070" + "1072", + "1073" ], "location": { "end": { @@ -17932,11 +17932,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1069" + "1072" ], "coveredBy": [ - "1069", - "1070" + "1072", + "1073" ], "location": { "end": { @@ -17958,11 +17958,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1069" + "1072" ], "coveredBy": [ - "1069", - "1070" + "1072", + "1073" ], "location": { "end": { @@ -17984,11 +17984,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1069" + "1072" ], "coveredBy": [ - "1069", - "1070" + "1072", + "1073" ], "location": { "end": { @@ -18010,11 +18010,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1069" + "1072" ], "coveredBy": [ - "1069", - "1070" + "1072", + "1073" ], "location": { "end": { @@ -18036,14 +18036,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1065" + "1068" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", - "1069" + "1069", + "1070", + "1071", + "1072" ], "location": { "end": { @@ -18065,14 +18065,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1065" + "1068" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", - "1069" + "1069", + "1070", + "1071", + "1072" ], "location": { "end": { @@ -18094,14 +18094,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1065" + "1068" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", - "1069" + "1069", + "1070", + "1071", + "1072" ], "location": { "end": { @@ -18123,14 +18123,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1065" + "1068" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", - "1069" + "1069", + "1070", + "1071", + "1072" ], "location": { "end": { @@ -18152,14 +18152,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1065" + "1068" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", - "1069" + "1069", + "1070", + "1071", + "1072" ], "location": { "end": { @@ -18181,15 +18181,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1067" + "1070" ], "coveredBy": [ - "1065", - "1066", - "1067", "1068", "1069", - "1070" + "1070", + "1071", + "1072", + "1073" ], "location": { "end": { @@ -18217,14 +18217,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18246,14 +18246,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1494" + "1497" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18275,14 +18275,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18304,14 +18304,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18333,14 +18333,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18362,14 +18362,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18391,14 +18391,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1494" + "1497" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18420,10 +18420,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1494" + "1497" ], "coveredBy": [ - "1494" + "1497" ], "location": { "end": { @@ -18445,10 +18445,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1494" + "1497" ], "coveredBy": [ - "1494" + "1497" ], "location": { "end": { @@ -18470,10 +18470,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1494" + "1497" ], "coveredBy": [ - "1494" + "1497" ], "location": { "end": { @@ -18495,14 +18495,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18524,14 +18524,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18553,14 +18553,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18582,14 +18582,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18611,14 +18611,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1491" + "1494" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18640,14 +18640,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1493" + "1496" ], "coveredBy": [ - "1491", - "1492", - "1493", "1494", - "1495" + "1495", + "1496", + "1497", + "1498" ], "location": { "end": { @@ -18675,18 +18675,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -18708,18 +18708,18 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "954" + "957" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -18741,18 +18741,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -18774,18 +18774,18 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "954" + "957" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -18807,18 +18807,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -18840,18 +18840,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -18873,18 +18873,18 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "954" + "957" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -18906,18 +18906,18 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "954" + "957" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -18939,18 +18939,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -18972,18 +18972,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19005,18 +19005,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19038,18 +19038,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19071,18 +19071,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "956" + "959" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19104,13 +19104,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "956" + "959" ], "coveredBy": [ - "954", - "956", "957", - "959" + "959", + "960", + "962" ], "location": { "end": { @@ -19132,13 +19132,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "956" + "959" ], "coveredBy": [ - "954", - "956", "957", - "959" + "959", + "960", + "962" ], "location": { "end": { @@ -19160,13 +19160,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "956" + "959" ], "coveredBy": [ - "954", - "956", "957", - "959" + "959", + "960", + "962" ], "location": { "end": { @@ -19188,18 +19188,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19221,18 +19221,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19254,18 +19254,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "952" + "955" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19287,18 +19287,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "953" + "956" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19320,18 +19320,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "953" + "956" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19353,18 +19353,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "953" + "956" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19386,18 +19386,18 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "959" + "962" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19419,13 +19419,13 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "959" + "962" ], "coveredBy": [ - "954", - "956", "957", - "959" + "959", + "960", + "962" ], "location": { "end": { @@ -19447,18 +19447,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "953" + "956" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19480,18 +19480,18 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "954" + "957" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19513,18 +19513,18 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "954" + "957" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19546,13 +19546,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "954" + "957" ], "coveredBy": [ - "954", - "956", "957", - "959" + "959", + "960", + "962" ], "location": { "end": { @@ -19574,18 +19574,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "955" + "958" ], "coveredBy": [ - "952", - "953", - "954", "955", "956", "957", "958", "959", - "960" + "960", + "961", + "962", + "963" ], "location": { "end": { @@ -19613,18 +19613,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -19646,18 +19646,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -19679,18 +19679,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -19712,18 +19712,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "900" + "903" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -19745,18 +19745,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -19778,18 +19778,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -19811,18 +19811,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -19844,18 +19844,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "899" + "902" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -19877,11 +19877,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "899" + "902" ], "coveredBy": [ - "899", - "900" + "902", + "903" ], "location": { "end": { @@ -19903,11 +19903,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "899" + "902" ], "coveredBy": [ - "899", - "900" + "902", + "903" ], "location": { "end": { @@ -19929,11 +19929,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "899" + "902" ], "coveredBy": [ - "899", - "900" + "902", + "903" ], "location": { "end": { @@ -19955,18 +19955,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -19988,18 +19988,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -20021,18 +20021,18 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "902" + "905" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -20054,11 +20054,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "902" + "905" ], "coveredBy": [ - "902", - "903" + "905", + "906" ], "location": { "end": { @@ -20080,11 +20080,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "902" + "905" ], "coveredBy": [ - "902", - "903" + "905", + "906" ], "location": { "end": { @@ -20106,11 +20106,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "902" + "905" ], "coveredBy": [ - "902", - "903" + "905", + "906" ], "location": { "end": { @@ -20132,11 +20132,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "902" + "905" ], "coveredBy": [ - "902", - "903" + "905", + "906" ], "location": { "end": { @@ -20158,11 +20158,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "903" + "906" ], "coveredBy": [ - "902", - "903" + "905", + "906" ], "location": { "end": { @@ -20184,11 +20184,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "902" + "905" ], "coveredBy": [ - "902", - "903" + "905", + "906" ], "location": { "end": { @@ -20210,11 +20210,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "902" + "905" ], "coveredBy": [ - "902", - "903" + "905", + "906" ], "location": { "end": { @@ -20236,18 +20236,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -20269,18 +20269,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -20302,18 +20302,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -20335,18 +20335,18 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "901" + "904" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -20368,18 +20368,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -20401,18 +20401,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "895" + "898" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -20434,18 +20434,18 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "897" + "900" ], "coveredBy": [ - "895", - "896", - "897", "898", "899", "900", "901", "902", - "903" + "903", + "904", + "905", + "906" ], "location": { "end": { @@ -20473,19 +20473,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20507,19 +20507,19 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "710" + "713" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20541,19 +20541,19 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "704" + "707" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20575,19 +20575,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20609,19 +20609,19 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "704" + "707" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20643,19 +20643,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20677,19 +20677,19 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "705" + "708" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20711,19 +20711,19 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "704" + "707" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20745,19 +20745,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20779,19 +20779,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20813,19 +20813,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20847,19 +20847,19 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "707" + "710" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -20881,12 +20881,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "707" + "710" ], "coveredBy": [ - "707", - "709", - "710" + "710", + "712", + "713" ], "location": { "end": { @@ -20908,12 +20908,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "707" + "710" ], "coveredBy": [ - "707", - "709", - "710" + "710", + "712", + "713" ], "location": { "end": { @@ -20935,12 +20935,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "707" + "710" ], "coveredBy": [ - "707", - "709", - "710" + "710", + "712", + "713" ], "location": { "end": { @@ -20962,10 +20962,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "704" + "707" ], "coveredBy": [ - "704" + "707" ], "location": { "end": { @@ -20987,19 +20987,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -21021,19 +21021,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -21055,19 +21055,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -21089,19 +21089,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -21123,19 +21123,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "701" + "704" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -21157,19 +21157,19 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "703" + "706" ], "coveredBy": [ - "701", - "702", - "703", "704", "705", "706", "707", "708", "709", - "710" + "710", + "711", + "712", + "713" ], "location": { "end": { @@ -21197,16 +21197,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21228,16 +21228,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "669" + "672" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21259,16 +21259,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21290,16 +21290,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21321,16 +21321,16 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "670" + "673" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21352,16 +21352,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21383,16 +21383,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21414,16 +21414,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21445,16 +21445,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21476,10 +21476,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "671" + "674" ], "location": { "end": { @@ -21501,10 +21501,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "671" + "674" ], "location": { "end": { @@ -21526,16 +21526,16 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21557,10 +21557,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21582,10 +21582,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21607,10 +21607,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21632,10 +21632,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21657,10 +21657,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21682,10 +21682,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21707,10 +21707,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21732,10 +21732,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21757,10 +21757,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21782,10 +21782,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21807,10 +21807,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21832,10 +21832,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21857,10 +21857,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21882,10 +21882,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21907,10 +21907,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "668" + "671" ], "coveredBy": [ - "668" + "671" ], "location": { "end": { @@ -21932,16 +21932,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21963,16 +21963,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -21994,16 +21994,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22025,16 +22025,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22056,16 +22056,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22087,16 +22087,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22118,16 +22118,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22149,16 +22149,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22180,16 +22180,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22211,11 +22211,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "671", - "672" + "674", + "675" ], "location": { "end": { @@ -22237,11 +22237,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "671", - "672" + "674", + "675" ], "location": { "end": { @@ -22263,11 +22263,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "671", - "672" + "674", + "675" ], "location": { "end": { @@ -22289,11 +22289,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "671", - "672" + "674", + "675" ], "location": { "end": { @@ -22315,11 +22315,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "671", - "672" + "674", + "675" ], "location": { "end": { @@ -22341,11 +22341,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "671", - "672" + "674", + "675" ], "location": { "end": { @@ -22367,11 +22367,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "671", - "672" + "674", + "675" ], "location": { "end": { @@ -22393,16 +22393,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22424,16 +22424,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22455,16 +22455,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22486,16 +22486,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22517,16 +22517,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22548,16 +22548,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "667" + "670" ], "coveredBy": [ - "667", - "668", - "669", "670", "671", "672", - "673" + "673", + "674", + "675", + "676" ], "location": { "end": { @@ -22585,18 +22585,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22618,18 +22618,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "738" + "741" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22651,18 +22651,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22684,18 +22684,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22717,18 +22717,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22750,18 +22750,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22783,18 +22783,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22816,18 +22816,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22849,18 +22849,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "738" + "741" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22882,10 +22882,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "738" + "741" ], "coveredBy": [ - "738" + "741" ], "location": { "end": { @@ -22907,10 +22907,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "738" + "741" ], "coveredBy": [ - "738" + "741" ], "location": { "end": { @@ -22932,10 +22932,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "738" + "741" ], "coveredBy": [ - "738" + "741" ], "location": { "end": { @@ -22957,18 +22957,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -22990,18 +22990,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23023,11 +23023,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "739", - "740" + "742", + "743" ], "location": { "end": { @@ -23049,18 +23049,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23082,18 +23082,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23115,18 +23115,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23148,18 +23148,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23181,18 +23181,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "740" + "743" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23214,18 +23214,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23247,18 +23247,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23280,18 +23280,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "735" + "738" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23313,11 +23313,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "739", - "743" + "742", + "746" ], "location": { "end": { @@ -23339,11 +23339,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "739", - "743" + "742", + "746" ], "location": { "end": { @@ -23365,11 +23365,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "739", - "743" + "742", + "746" ], "location": { "end": { @@ -23391,18 +23391,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23424,18 +23424,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23457,18 +23457,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "739" + "742" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23490,18 +23490,18 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "743" + "746" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23523,18 +23523,18 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "743" + "746" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23556,18 +23556,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "736" + "739" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23589,18 +23589,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "736" + "739" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23622,18 +23622,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "736" + "739" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23655,11 +23655,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "743" + "746" ], "coveredBy": [ - "739", - "743" + "742", + "746" ], "location": { "end": { @@ -23681,18 +23681,18 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "737" + "740" ], "coveredBy": [ - "735", - "736", - "737", "738", "739", "740", "741", "742", - "743" + "743", + "744", + "745", + "746" ], "location": { "end": { @@ -23720,13 +23720,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1859" + "1862" ], "coveredBy": [ - "1859", - "1860", - "1861", - "1862" + "1862", + "1863", + "1864", + "1865" ], "location": { "end": { @@ -23748,13 +23748,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1859" + "1862" ], "coveredBy": [ - "1859", - "1860", - "1861", - "1862" + "1862", + "1863", + "1864", + "1865" ], "location": { "end": { @@ -23776,13 +23776,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1859" + "1862" ], "coveredBy": [ - "1859", - "1860", - "1861", - "1862" + "1862", + "1863", + "1864", + "1865" ], "location": { "end": { @@ -23804,13 +23804,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1861" + "1864" ], "coveredBy": [ - "1859", - "1860", - "1861", - "1862" + "1862", + "1863", + "1864", + "1865" ], "location": { "end": { @@ -23838,13 +23838,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1886" + "1889" ], "coveredBy": [ - "1886", - "1887", - "1888", - "1889" + "1889", + "1890", + "1891", + "1892" ], "location": { "end": { @@ -23866,13 +23866,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1886" + "1889" ], "coveredBy": [ - "1886", - "1887", - "1888", - "1889" + "1889", + "1890", + "1891", + "1892" ], "location": { "end": { @@ -23894,13 +23894,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1886" + "1889" ], "coveredBy": [ - "1886", - "1887", - "1888", - "1889" + "1889", + "1890", + "1891", + "1892" ], "location": { "end": { @@ -23922,13 +23922,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1888" + "1891" ], "coveredBy": [ - "1886", - "1887", - "1888", - "1889" + "1889", + "1890", + "1891", + "1892" ], "location": { "end": { @@ -23956,14 +23956,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1654" + "1657" ], "coveredBy": [ - "1650", - "1651", - "1652", "1653", - "1654" + "1654", + "1655", + "1656", + "1657" ], "location": { "end": { @@ -23985,14 +23985,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1650" + "1653" ], "coveredBy": [ - "1650", - "1651", - "1652", "1653", - "1654" + "1654", + "1655", + "1656", + "1657" ], "location": { "end": { @@ -24014,14 +24014,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1650" + "1653" ], "coveredBy": [ - "1650", - "1651", - "1652", "1653", - "1654" + "1654", + "1655", + "1656", + "1657" ], "location": { "end": { @@ -24043,14 +24043,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1650" + "1653" ], "coveredBy": [ - "1650", - "1651", - "1652", "1653", - "1654" + "1654", + "1655", + "1656", + "1657" ], "location": { "end": { @@ -24072,14 +24072,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1654" + "1657" ], "coveredBy": [ - "1650", - "1651", - "1652", "1653", - "1654" + "1654", + "1655", + "1656", + "1657" ], "location": { "end": { @@ -24101,14 +24101,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1652" + "1655" ], "coveredBy": [ - "1650", - "1651", - "1652", "1653", - "1654" + "1654", + "1655", + "1656", + "1657" ], "location": { "end": { @@ -24136,14 +24136,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1532" + "1535" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24165,14 +24165,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1528" + "1531" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24194,14 +24194,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1532" + "1535" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24223,14 +24223,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1528" + "1531" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24252,14 +24252,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1528" + "1531" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24281,14 +24281,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1528" + "1531" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24310,14 +24310,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1532" + "1535" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24339,10 +24339,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1532" + "1535" ], "coveredBy": [ - "1532" + "1535" ], "location": { "end": { @@ -24364,10 +24364,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1532" + "1535" ], "coveredBy": [ - "1532" + "1535" ], "location": { "end": { @@ -24389,10 +24389,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1532" + "1535" ], "coveredBy": [ - "1532" + "1535" ], "location": { "end": { @@ -24414,14 +24414,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1528" + "1531" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24443,14 +24443,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1528" + "1531" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24472,14 +24472,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1530" + "1533" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24501,14 +24501,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1530" + "1533" ], "coveredBy": [ - "1528", - "1529", - "1530", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -24536,14 +24536,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1655" + "1658" ], "coveredBy": [ - "1655", - "1656", - "1657", "1658", - "1659" + "1659", + "1660", + "1661", + "1662" ], "location": { "end": { @@ -24565,14 +24565,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1655" + "1658" ], "coveredBy": [ - "1655", - "1656", - "1657", "1658", - "1659" + "1659", + "1660", + "1661", + "1662" ], "location": { "end": { @@ -24594,14 +24594,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1655" + "1658" ], "coveredBy": [ - "1655", - "1656", - "1657", "1658", - "1659" + "1659", + "1660", + "1661", + "1662" ], "location": { "end": { @@ -24623,14 +24623,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1655" + "1658" ], "coveredBy": [ - "1655", - "1656", - "1657", "1658", - "1659" + "1659", + "1660", + "1661", + "1662" ], "location": { "end": { @@ -24652,14 +24652,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1655" + "1658" ], "coveredBy": [ - "1655", - "1656", - "1657", "1658", - "1659" + "1659", + "1660", + "1661", + "1662" ], "location": { "end": { @@ -24681,14 +24681,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1658" + "1661" ], "coveredBy": [ - "1655", - "1656", - "1657", "1658", - "1659" + "1659", + "1660", + "1661", + "1662" ], "location": { "end": { @@ -24710,14 +24710,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1657" + "1660" ], "coveredBy": [ - "1655", - "1656", - "1657", "1658", - "1659" + "1659", + "1660", + "1661", + "1662" ], "location": { "end": { @@ -24745,15 +24745,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -24775,15 +24775,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1548" + "1551" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -24805,15 +24805,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -24835,15 +24835,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -24865,15 +24865,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -24895,15 +24895,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -24925,15 +24925,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -24955,15 +24955,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1548" + "1551" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -24985,15 +24985,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -25015,15 +25015,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -25045,15 +25045,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -25075,15 +25075,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1543" + "1546" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -25105,10 +25105,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1548" + "1551" ], "coveredBy": [ - "1548" + "1551" ], "location": { "end": { @@ -25130,10 +25130,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1548" + "1551" ], "coveredBy": [ - "1548" + "1551" ], "location": { "end": { @@ -25155,15 +25155,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1545" + "1548" ], "coveredBy": [ - "1543", - "1544", - "1545", "1546", "1547", - "1548" + "1548", + "1549", + "1550", + "1551" ], "location": { "end": { @@ -25191,13 +25191,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1907" + "1910" ], "coveredBy": [ - "1907", - "1908", - "1909", - "1910" + "1910", + "1911", + "1912", + "1913" ], "location": { "end": { @@ -25219,13 +25219,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1907" + "1910" ], "coveredBy": [ - "1907", - "1908", - "1909", - "1910" + "1910", + "1911", + "1912", + "1913" ], "location": { "end": { @@ -25247,13 +25247,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1907" + "1910" ], "coveredBy": [ - "1907", - "1908", - "1909", - "1910" + "1910", + "1911", + "1912", + "1913" ], "location": { "end": { @@ -25275,13 +25275,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1909" + "1912" ], "coveredBy": [ - "1907", - "1908", - "1909", - "1910" + "1910", + "1911", + "1912", + "1913" ], "location": { "end": { @@ -25309,13 +25309,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1903" + "1906" ], "coveredBy": [ - "1903", - "1904", - "1905", - "1906" + "1906", + "1907", + "1908", + "1909" ], "location": { "end": { @@ -25337,13 +25337,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1903" + "1906" ], "coveredBy": [ - "1903", - "1904", - "1905", - "1906" + "1906", + "1907", + "1908", + "1909" ], "location": { "end": { @@ -25365,13 +25365,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1903" + "1906" ], "coveredBy": [ - "1903", - "1904", - "1905", - "1906" + "1906", + "1907", + "1908", + "1909" ], "location": { "end": { @@ -25393,13 +25393,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1905" + "1908" ], "coveredBy": [ - "1903", - "1904", - "1905", - "1906" + "1906", + "1907", + "1908", + "1909" ], "location": { "end": { @@ -25427,15 +25427,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1511" + "1514" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25457,15 +25457,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1510" + "1513" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25487,15 +25487,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1506" + "1509" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25517,10 +25517,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1510" + "1513" ], "coveredBy": [ - "1510" + "1513" ], "location": { "end": { @@ -25542,15 +25542,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1506" + "1509" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25572,10 +25572,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1510" + "1513" ], "coveredBy": [ - "1510" + "1513" ], "location": { "end": { @@ -25597,15 +25597,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1506" + "1509" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25627,15 +25627,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1506" + "1509" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25657,15 +25657,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1506" + "1509" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25687,15 +25687,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1506" + "1509" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25717,15 +25717,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1511" + "1514" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25747,15 +25747,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1508" + "1511" ], "coveredBy": [ - "1506", - "1507", - "1508", "1509", "1510", - "1511" + "1511", + "1512", + "1513", + "1514" ], "location": { "end": { @@ -25783,13 +25783,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1843", - "1844", - "1845", - "1846" + "1846", + "1847", + "1848", + "1849" ], "location": { "end": { @@ -25811,13 +25811,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1843", - "1844", - "1845", - "1846" + "1846", + "1847", + "1848", + "1849" ], "location": { "end": { @@ -25839,13 +25839,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1843", - "1844", - "1845", - "1846" + "1846", + "1847", + "1848", + "1849" ], "location": { "end": { @@ -25867,13 +25867,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1843", - "1844", - "1845", - "1846" + "1846", + "1847", + "1848", + "1849" ], "location": { "end": { @@ -25895,13 +25895,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1843", - "1844", - "1845", - "1846" + "1846", + "1847", + "1848", + "1849" ], "location": { "end": { @@ -25923,13 +25923,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1843" + "1846" ], "coveredBy": [ - "1843", - "1844", - "1845", - "1846" + "1846", + "1847", + "1848", + "1849" ], "location": { "end": { @@ -25951,13 +25951,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1845" + "1848" ], "coveredBy": [ - "1843", - "1844", - "1845", - "1846" + "1846", + "1847", + "1848", + "1849" ], "location": { "end": { @@ -25985,13 +25985,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1811" + "1814" ], "coveredBy": [ - "1811", - "1812", - "1813", - "1814" + "1814", + "1815", + "1816", + "1817" ], "location": { "end": { @@ -26013,13 +26013,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1811" + "1814" ], "coveredBy": [ - "1811", - "1812", - "1813", - "1814" + "1814", + "1815", + "1816", + "1817" ], "location": { "end": { @@ -26041,13 +26041,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1811" + "1814" ], "coveredBy": [ - "1811", - "1812", - "1813", - "1814" + "1814", + "1815", + "1816", + "1817" ], "location": { "end": { @@ -26069,13 +26069,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1811" + "1814" ], "coveredBy": [ - "1811", - "1812", - "1813", - "1814" + "1814", + "1815", + "1816", + "1817" ], "location": { "end": { @@ -26097,13 +26097,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1811" + "1814" ], "coveredBy": [ - "1811", - "1812", - "1813", - "1814" + "1814", + "1815", + "1816", + "1817" ], "location": { "end": { @@ -26125,13 +26125,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1811" + "1814" ], "coveredBy": [ - "1811", - "1812", - "1813", - "1814" + "1814", + "1815", + "1816", + "1817" ], "location": { "end": { @@ -26153,13 +26153,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1811" + "1814" ], "coveredBy": [ - "1811", - "1812", - "1813", - "1814" + "1814", + "1815", + "1816", + "1817" ], "location": { "end": { @@ -26181,13 +26181,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1813" + "1816" ], "coveredBy": [ - "1811", - "1812", - "1813", - "1814" + "1814", + "1815", + "1816", + "1817" ], "location": { "end": { @@ -26215,13 +26215,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1890" + "1893" ], "coveredBy": [ - "1890", - "1891", - "1892", - "1893" + "1893", + "1894", + "1895", + "1896" ], "location": { "end": { @@ -26243,13 +26243,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1890" + "1893" ], "coveredBy": [ - "1890", - "1891", - "1892", - "1893" + "1893", + "1894", + "1895", + "1896" ], "location": { "end": { @@ -26271,13 +26271,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1890" + "1893" ], "coveredBy": [ - "1890", - "1891", - "1892", - "1893" + "1893", + "1894", + "1895", + "1896" ], "location": { "end": { @@ -26299,13 +26299,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1892" + "1895" ], "coveredBy": [ - "1890", - "1891", - "1892", - "1893" + "1893", + "1894", + "1895", + "1896" ], "location": { "end": { @@ -26333,14 +26333,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1734" + "1737" ], "coveredBy": [ - "1734", - "1735", - "1736", "1737", - "1738" + "1738", + "1739", + "1740", + "1741" ], "location": { "end": { @@ -26362,14 +26362,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1734" + "1737" ], "coveredBy": [ - "1734", - "1735", - "1736", "1737", - "1738" + "1738", + "1739", + "1740", + "1741" ], "location": { "end": { @@ -26391,14 +26391,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1738" + "1741" ], "coveredBy": [ - "1734", - "1735", - "1736", "1737", - "1738" + "1738", + "1739", + "1740", + "1741" ], "location": { "end": { @@ -26420,14 +26420,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1734" + "1737" ], "coveredBy": [ - "1734", - "1735", - "1736", "1737", - "1738" + "1738", + "1739", + "1740", + "1741" ], "location": { "end": { @@ -26449,14 +26449,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1734" + "1737" ], "coveredBy": [ - "1734", - "1735", - "1736", "1737", - "1738" + "1738", + "1739", + "1740", + "1741" ], "location": { "end": { @@ -26478,14 +26478,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1734" + "1737" ], "coveredBy": [ - "1734", - "1735", - "1736", "1737", - "1738" + "1738", + "1739", + "1740", + "1741" ], "location": { "end": { @@ -26507,14 +26507,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1734" + "1737" ], "coveredBy": [ - "1734", - "1735", - "1736", "1737", - "1738" + "1738", + "1739", + "1740", + "1741" ], "location": { "end": { @@ -26536,10 +26536,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1738" + "1741" ], "coveredBy": [ - "1738" + "1741" ], "location": { "end": { @@ -26561,10 +26561,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1738" + "1741" ], "coveredBy": [ - "1738" + "1741" ], "location": { "end": { @@ -26586,14 +26586,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1736" + "1739" ], "coveredBy": [ - "1734", - "1735", - "1736", "1737", - "1738" + "1738", + "1739", + "1740", + "1741" ], "location": { "end": { @@ -26621,15 +26621,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26651,15 +26651,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26681,15 +26681,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26711,15 +26711,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26741,15 +26741,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1451" + "1454" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26771,15 +26771,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26801,10 +26801,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1451" + "1454" ], "coveredBy": [ - "1451" + "1454" ], "location": { "end": { @@ -26826,10 +26826,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1451" + "1454" ], "coveredBy": [ - "1451" + "1454" ], "location": { "end": { @@ -26851,15 +26851,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26881,15 +26881,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1453" + "1456" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26911,15 +26911,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26941,15 +26941,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1453" + "1456" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -26971,10 +26971,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1453" + "1456" ], "coveredBy": [ - "1453" + "1456" ], "location": { "end": { @@ -26996,10 +26996,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1453" + "1456" ], "coveredBy": [ - "1453" + "1456" ], "location": { "end": { @@ -27021,10 +27021,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1453" + "1456" ], "coveredBy": [ - "1453" + "1456" ], "location": { "end": { @@ -27046,15 +27046,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -27076,15 +27076,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -27106,15 +27106,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -27136,15 +27136,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1450" + "1453" ], "coveredBy": [ - "1448", - "1449", - "1450", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -27172,13 +27172,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1863" + "1866" ], "coveredBy": [ - "1863", - "1864", - "1865", - "1866" + "1866", + "1867", + "1868", + "1869" ], "location": { "end": { @@ -27200,13 +27200,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1863" + "1866" ], "coveredBy": [ - "1863", - "1864", - "1865", - "1866" + "1866", + "1867", + "1868", + "1869" ], "location": { "end": { @@ -27228,13 +27228,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1863" + "1866" ], "coveredBy": [ - "1863", - "1864", - "1865", - "1866" + "1866", + "1867", + "1868", + "1869" ], "location": { "end": { @@ -27256,13 +27256,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1863" + "1866" ], "coveredBy": [ - "1863", - "1864", - "1865", - "1866" + "1866", + "1867", + "1868", + "1869" ], "location": { "end": { @@ -27284,13 +27284,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1865" + "1868" ], "coveredBy": [ - "1863", - "1864", - "1865", - "1866" + "1866", + "1867", + "1868", + "1869" ], "location": { "end": { @@ -27318,12 +27318,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -27333,7 +27330,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -27355,12 +27355,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -27370,7 +27367,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -27392,12 +27392,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "724" + "727" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -27407,7 +27404,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -27429,12 +27429,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -27444,7 +27441,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -27466,11 +27466,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "724" + "727" ], "coveredBy": [ - "724", - "732" + "727", + "735" ], "location": { "end": { @@ -27492,11 +27492,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "724" + "727" ], "coveredBy": [ - "724", - "732" + "727", + "735" ], "location": { "end": { @@ -27518,12 +27518,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -27533,7 +27530,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -27555,12 +27555,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -27570,7 +27567,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -27592,12 +27592,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "724" + "727" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -27607,7 +27604,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -27629,10 +27629,10 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "724" + "727" ], "coveredBy": [ - "724" + "727" ], "location": { "end": { @@ -27654,11 +27654,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "725" + "728" ], "coveredBy": [ - "725", - "726" + "728", + "729" ], "location": { "end": { @@ -27680,11 +27680,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "725" + "728" ], "coveredBy": [ - "725", - "726" + "728", + "729" ], "location": { "end": { @@ -27706,11 +27706,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "725", - "726" + "728", + "729" ], "location": { "end": { @@ -27732,11 +27732,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "725" + "728" ], "coveredBy": [ - "725", - "726" + "728", + "729" ], "location": { "end": { @@ -27758,11 +27758,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "725" + "728" ], "coveredBy": [ - "725", - "726" + "728", + "729" ], "location": { "end": { @@ -27784,10 +27784,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "726" + "729" ], "location": { "end": { @@ -27809,11 +27809,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "725", - "726" + "728", + "729" ], "location": { "end": { @@ -27835,10 +27835,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "726" + "729" ], "location": { "end": { @@ -27860,10 +27860,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "726" + "729" ], "location": { "end": { @@ -27885,10 +27885,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "726" + "729" ], "location": { "end": { @@ -27910,10 +27910,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "726" + "729" ], "location": { "end": { @@ -27935,10 +27935,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "726" + "729" ], "location": { "end": { @@ -27960,10 +27960,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "726" + "729" ], "location": { "end": { @@ -27985,10 +27985,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "725" + "728" ], "coveredBy": [ - "725" + "728" ], "location": { "end": { @@ -28010,10 +28010,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "725" + "728" ], "coveredBy": [ - "725" + "728" ], "location": { "end": { @@ -28035,14 +28035,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "728" + "731" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28064,14 +28064,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "730" + "733" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28093,14 +28093,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "728" + "731" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28122,14 +28122,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "730" + "733" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28151,14 +28151,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "730" + "733" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28180,14 +28180,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "730" + "733" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28209,14 +28209,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "730" + "733" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28238,14 +28238,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "728" + "731" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28267,14 +28267,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "728" + "731" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28296,14 +28296,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "728" + "731" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28325,14 +28325,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "729" + "732" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28354,14 +28354,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "729" + "732" ], "coveredBy": [ - "728", - "729", - "730", + "731", + "732", "733", - "734" + "736", + "737" ], "location": { "end": { @@ -28383,12 +28383,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28398,7 +28395,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28420,12 +28420,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28435,7 +28432,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28457,12 +28457,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "728" + "731" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28472,7 +28469,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28494,12 +28494,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28509,7 +28506,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28531,12 +28531,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28546,7 +28543,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28568,12 +28568,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28583,7 +28580,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28605,12 +28605,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28620,7 +28617,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28642,10 +28642,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "731" + "734" ], "coveredBy": [ - "731" + "734" ], "location": { "end": { @@ -28667,10 +28667,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "731" + "734" ], "coveredBy": [ - "731" + "734" ], "location": { "end": { @@ -28692,10 +28692,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "731" + "734" ], "coveredBy": [ - "731" + "734" ], "location": { "end": { @@ -28717,12 +28717,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "732" + "735" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28732,7 +28729,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28754,12 +28754,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "732" + "735" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28769,7 +28766,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28791,12 +28791,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "732" + "735" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28806,7 +28803,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28828,12 +28828,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "733" + "736" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28843,7 +28840,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28865,12 +28865,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "732" + "735" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28880,7 +28877,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28902,12 +28902,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28917,7 +28914,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28939,12 +28939,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "732" + "735" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -28954,7 +28951,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -28976,11 +28976,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "733" + "736" ], "coveredBy": [ - "733", - "734" + "736", + "737" ], "location": { "end": { @@ -29002,12 +29002,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "733" + "736" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -29017,7 +29014,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -29039,10 +29039,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "733" + "736" ], "coveredBy": [ - "733" + "736" ], "location": { "end": { @@ -29064,10 +29064,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "733" + "736" ], "coveredBy": [ - "733" + "736" ], "location": { "end": { @@ -29089,12 +29089,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "732" + "735" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -29104,7 +29101,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -29126,12 +29126,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "734" + "737" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -29141,7 +29138,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -29163,12 +29163,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "732" + "735" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -29178,7 +29175,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -29200,12 +29200,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "722" + "725" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -29215,7 +29212,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -29237,12 +29237,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "732" + "735" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -29252,7 +29249,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -29274,10 +29274,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "734" + "737" ], "coveredBy": [ - "734" + "737" ], "location": { "end": { @@ -29299,12 +29299,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "734" + "737" ], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -29314,7 +29311,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -29336,10 +29336,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "734" + "737" ], "coveredBy": [ - "734" + "737" ], "location": { "end": { @@ -29361,10 +29361,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "734" + "737" ], "coveredBy": [ - "734" + "737" ], "location": { "end": { @@ -29392,15 +29392,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29422,15 +29422,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29452,15 +29452,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29482,15 +29482,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1323" + "1326" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29512,10 +29512,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1323" + "1326" ], "coveredBy": [ - "1323" + "1326" ], "location": { "end": { @@ -29537,15 +29537,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29567,15 +29567,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29597,15 +29597,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29627,15 +29627,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29657,15 +29657,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29687,15 +29687,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29717,15 +29717,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29747,15 +29747,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29777,15 +29777,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29807,15 +29807,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29837,10 +29837,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1324" + "1327" ], "coveredBy": [ - "1324" + "1327" ], "location": { "end": { @@ -29862,15 +29862,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29892,15 +29892,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29922,15 +29922,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29952,15 +29952,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -29982,15 +29982,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -30012,15 +30012,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1319" + "1322" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -30042,15 +30042,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1321" + "1324" ], "coveredBy": [ - "1319", - "1320", - "1321", "1322", "1323", - "1324" + "1324", + "1325", + "1326", + "1327" ], "location": { "end": { @@ -30078,14 +30078,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1688" + "1691" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30107,14 +30107,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1692" + "1695" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30136,14 +30136,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1688" + "1691" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30165,14 +30165,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1688" + "1691" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30194,14 +30194,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1688" + "1691" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30223,14 +30223,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1692" + "1695" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30252,14 +30252,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1688" + "1691" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30281,14 +30281,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1688" + "1691" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30310,14 +30310,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1688" + "1691" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30339,14 +30339,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1688" + "1691" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30368,10 +30368,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1692" + "1695" ], "coveredBy": [ - "1692" + "1695" ], "location": { "end": { @@ -30393,10 +30393,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1692" + "1695" ], "coveredBy": [ - "1692" + "1695" ], "location": { "end": { @@ -30418,14 +30418,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1690" + "1693" ], "coveredBy": [ - "1688", - "1689", - "1690", "1691", - "1692" + "1692", + "1693", + "1694", + "1695" ], "location": { "end": { @@ -30453,35 +30453,35 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "134" + "164" ], "coveredBy": [ - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159" + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189" ], "location": { "end": { @@ -30503,35 +30503,35 @@ "testsCompleted": 26, "static": false, "killedBy": [ - "159" + "189" ], "coveredBy": [ - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159" + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189" ], "location": { "end": { @@ -30559,14 +30559,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1699" + "1702" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30588,14 +30588,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1703" + "1706" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30617,14 +30617,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1699" + "1702" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30646,14 +30646,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1699" + "1702" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30675,14 +30675,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1699" + "1702" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30704,14 +30704,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1703" + "1706" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30733,14 +30733,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1699" + "1702" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30762,14 +30762,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1699" + "1702" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30791,14 +30791,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1699" + "1702" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30820,14 +30820,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1699" + "1702" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30849,10 +30849,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1703" + "1706" ], "coveredBy": [ - "1703" + "1706" ], "location": { "end": { @@ -30874,10 +30874,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1703" + "1706" ], "coveredBy": [ - "1703" + "1706" ], "location": { "end": { @@ -30899,14 +30899,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1701" + "1704" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30928,14 +30928,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1701" + "1704" ], "coveredBy": [ - "1699", - "1700", - "1701", "1702", - "1703" + "1703", + "1704", + "1705", + "1706" ], "location": { "end": { @@ -30963,16 +30963,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1272" + "1275" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -30994,16 +30994,16 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1277" + "1280" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31025,16 +31025,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1272" + "1275" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31056,16 +31056,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1272" + "1275" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31087,16 +31087,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1276" + "1279" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31118,16 +31118,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1272" + "1275" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31149,16 +31149,16 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1277" + "1280" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31180,16 +31180,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1272" + "1275" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31211,16 +31211,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1272" + "1275" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31242,16 +31242,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1272" + "1275" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31273,16 +31273,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1272" + "1275" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31304,16 +31304,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1272" + "1275" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31335,16 +31335,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1276" + "1279" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31366,11 +31366,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1277" + "1280" ], "coveredBy": [ - "1277", - "1278" + "1280", + "1281" ], "location": { "end": { @@ -31392,11 +31392,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1277" + "1280" ], "coveredBy": [ - "1277", - "1278" + "1280", + "1281" ], "location": { "end": { @@ -31418,11 +31418,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1278" + "1281" ], "coveredBy": [ - "1277", - "1278" + "1280", + "1281" ], "location": { "end": { @@ -31444,16 +31444,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1274" + "1277" ], "coveredBy": [ - "1272", - "1273", - "1274", "1275", "1276", "1277", - "1278" + "1278", + "1279", + "1280", + "1281" ], "location": { "end": { @@ -31481,13 +31481,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1880" + "1883" ], "coveredBy": [ - "1880", - "1881", - "1882", - "1883" + "1883", + "1884", + "1885", + "1886" ], "location": { "end": { @@ -31509,13 +31509,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1880" + "1883" ], "coveredBy": [ - "1880", - "1881", - "1882", - "1883" + "1883", + "1884", + "1885", + "1886" ], "location": { "end": { @@ -31537,13 +31537,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1880" + "1883" ], "coveredBy": [ - "1880", - "1881", - "1882", - "1883" + "1883", + "1884", + "1885", + "1886" ], "location": { "end": { @@ -31565,13 +31565,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1882" + "1885" ], "coveredBy": [ - "1880", - "1881", - "1882", - "1883" + "1883", + "1884", + "1885", + "1886" ], "location": { "end": { @@ -31599,13 +31599,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1876" + "1879" ], "coveredBy": [ - "1876", - "1877", - "1878", - "1879" + "1879", + "1880", + "1881", + "1882" ], "location": { "end": { @@ -31627,13 +31627,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1876" + "1879" ], "coveredBy": [ - "1876", - "1877", - "1878", - "1879" + "1879", + "1880", + "1881", + "1882" ], "location": { "end": { @@ -31655,13 +31655,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1876" + "1879" ], "coveredBy": [ - "1876", - "1877", - "1878", - "1879" + "1879", + "1880", + "1881", + "1882" ], "location": { "end": { @@ -31683,13 +31683,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1876" + "1879" ], "coveredBy": [ - "1876", - "1877", - "1878", - "1879" + "1879", + "1880", + "1881", + "1882" ], "location": { "end": { @@ -31711,13 +31711,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1878" + "1881" ], "coveredBy": [ - "1876", - "1877", - "1878", - "1879" + "1879", + "1880", + "1881", + "1882" ], "location": { "end": { @@ -31745,14 +31745,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1722" + "1725" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -31774,14 +31774,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1726" + "1729" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -31803,14 +31803,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1722" + "1725" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -31832,14 +31832,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1722" + "1725" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -31861,14 +31861,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1722" + "1725" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -31890,14 +31890,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1722" + "1725" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -31919,14 +31919,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1722" + "1725" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -31948,14 +31948,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1722" + "1725" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -31977,14 +31977,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1726" + "1729" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -32006,14 +32006,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1724" + "1727" ], "coveredBy": [ - "1722", - "1723", - "1724", "1725", - "1726" + "1726", + "1727", + "1728", + "1729" ], "location": { "end": { @@ -32041,14 +32041,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1717" + "1720" ], "coveredBy": [ - "1713", - "1714", - "1715", "1716", - "1717" + "1717", + "1718", + "1719", + "1720" ], "location": { "end": { @@ -32070,14 +32070,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1713" + "1716" ], "coveredBy": [ - "1713", - "1714", - "1715", "1716", - "1717" + "1717", + "1718", + "1719", + "1720" ], "location": { "end": { @@ -32099,14 +32099,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1713" + "1716" ], "coveredBy": [ - "1713", - "1714", - "1715", "1716", - "1717" + "1717", + "1718", + "1719", + "1720" ], "location": { "end": { @@ -32128,14 +32128,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1717" + "1720" ], "coveredBy": [ - "1713", - "1714", - "1715", "1716", - "1717" + "1717", + "1718", + "1719", + "1720" ], "location": { "end": { @@ -32157,10 +32157,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1717" + "1720" ], "coveredBy": [ - "1717" + "1720" ], "location": { "end": { @@ -32182,10 +32182,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1717" + "1720" ], "coveredBy": [ - "1717" + "1720" ], "location": { "end": { @@ -32207,10 +32207,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1717" + "1720" ], "coveredBy": [ - "1717" + "1720" ], "location": { "end": { @@ -32232,14 +32232,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1713" + "1716" ], "coveredBy": [ - "1713", - "1714", - "1715", "1716", - "1717" + "1717", + "1718", + "1719", + "1720" ], "location": { "end": { @@ -32261,14 +32261,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1713" + "1716" ], "coveredBy": [ - "1713", - "1714", - "1715", "1716", - "1717" + "1717", + "1718", + "1719", + "1720" ], "location": { "end": { @@ -32290,14 +32290,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1715" + "1718" ], "coveredBy": [ - "1713", - "1714", - "1715", "1716", - "1717" + "1717", + "1718", + "1719", + "1720" ], "location": { "end": { @@ -32350,16 +32350,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1048" + "1051" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32381,16 +32381,16 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1054" + "1057" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32412,16 +32412,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1048" + "1051" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32443,16 +32443,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1048" + "1051" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32474,16 +32474,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1048" + "1051" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32505,16 +32505,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1052" + "1055" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32536,11 +32536,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1052" + "1055" ], "coveredBy": [ - "1052", - "1054" + "1055", + "1057" ], "location": { "end": { @@ -32562,11 +32562,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1052" + "1055" ], "coveredBy": [ - "1052", - "1054" + "1055", + "1057" ], "location": { "end": { @@ -32588,11 +32588,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1052" + "1055" ], "coveredBy": [ - "1052", - "1054" + "1055", + "1057" ], "location": { "end": { @@ -32614,16 +32614,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1048" + "1051" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32645,16 +32645,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1048" + "1051" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32676,16 +32676,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1048" + "1051" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32707,16 +32707,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1048" + "1051" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32738,16 +32738,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1050" + "1053" ], "coveredBy": [ - "1048", - "1049", - "1050", "1051", "1052", "1053", - "1054" + "1054", + "1055", + "1056", + "1057" ], "location": { "end": { @@ -32775,15 +32775,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1217" + "1220" ], "coveredBy": [ - "1214", - "1215", - "1216", "1217", "1218", - "1219" + "1219", + "1220", + "1221", + "1222" ], "location": { "end": { @@ -32805,15 +32805,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1214" + "1217" ], "coveredBy": [ - "1214", - "1215", - "1216", "1217", "1218", - "1219" + "1219", + "1220", + "1221", + "1222" ], "location": { "end": { @@ -32835,15 +32835,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1214" + "1217" ], "coveredBy": [ - "1214", - "1215", - "1216", "1217", "1218", - "1219" + "1219", + "1220", + "1221", + "1222" ], "location": { "end": { @@ -32865,15 +32865,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1219" + "1222" ], "coveredBy": [ - "1214", - "1215", - "1216", "1217", "1218", - "1219" + "1219", + "1220", + "1221", + "1222" ], "location": { "end": { @@ -32895,11 +32895,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1219" + "1222" ], "coveredBy": [ - "1217", - "1219" + "1220", + "1222" ], "location": { "end": { @@ -32921,11 +32921,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1219" + "1222" ], "coveredBy": [ - "1217", - "1219" + "1220", + "1222" ], "location": { "end": { @@ -32947,11 +32947,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1219" + "1222" ], "coveredBy": [ - "1217", - "1219" + "1220", + "1222" ], "location": { "end": { @@ -32973,15 +32973,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1214" + "1217" ], "coveredBy": [ - "1214", - "1215", - "1216", "1217", "1218", - "1219" + "1219", + "1220", + "1221", + "1222" ], "location": { "end": { @@ -33003,15 +33003,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1214" + "1217" ], "coveredBy": [ - "1214", - "1215", - "1216", "1217", "1218", - "1219" + "1219", + "1220", + "1221", + "1222" ], "location": { "end": { @@ -33033,15 +33033,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1217" + "1220" ], "coveredBy": [ - "1214", - "1215", - "1216", "1217", "1218", - "1219" + "1219", + "1220", + "1221", + "1222" ], "location": { "end": { @@ -33063,15 +33063,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1216" + "1219" ], "coveredBy": [ - "1214", - "1215", - "1216", "1217", "1218", - "1219" + "1219", + "1220", + "1221", + "1222" ], "location": { "end": { @@ -33093,15 +33093,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1217" + "1220" ], "coveredBy": [ - "1214", - "1215", - "1216", "1217", "1218", - "1219" + "1219", + "1220", + "1221", + "1222" ], "location": { "end": { @@ -33123,10 +33123,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1217" + "1220" ], "coveredBy": [ - "1217" + "1220" ], "location": { "end": { @@ -33148,10 +33148,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1217" + "1220" ], "coveredBy": [ - "1217" + "1220" ], "location": { "end": { @@ -33173,10 +33173,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1217" + "1220" ], "coveredBy": [ - "1217" + "1220" ], "location": { "end": { @@ -33204,12 +33204,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "268" + "271" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33220,7 +33217,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33242,12 +33242,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "274" + "277" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33258,7 +33255,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33280,12 +33280,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "271" + "274" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33296,7 +33293,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33318,12 +33318,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "270" + "273" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33334,7 +33331,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33356,12 +33356,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "275" + "278" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33372,7 +33369,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33394,12 +33394,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "272" + "275" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33410,7 +33407,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33432,12 +33432,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "268" + "271" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33448,7 +33445,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33470,12 +33470,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "268" + "271" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33486,7 +33483,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33508,12 +33508,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "268" + "271" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33524,7 +33521,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33546,12 +33546,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "274" + "277" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33562,7 +33559,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33584,12 +33584,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "274" + "277" ], "coveredBy": [ - "270", - "274", - "279" + "273", + "277", + "282" ], "location": { "end": { @@ -33611,12 +33611,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "274" + "277" ], "coveredBy": [ - "270", - "274", - "279" + "273", + "277", + "282" ], "location": { "end": { @@ -33638,12 +33638,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "274" + "277" ], "coveredBy": [ - "270", - "274", - "279" + "273", + "277", + "282" ], "location": { "end": { @@ -33665,12 +33665,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "275" + "278" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33681,7 +33678,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33703,12 +33703,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "268" + "271" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33719,7 +33716,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33741,12 +33741,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "275" + "278" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -33757,7 +33754,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -33779,15 +33779,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "275" + "278" ], "coveredBy": [ - "272", - "273", "275", "276", - "280", - "281" + "278", + "279", + "283", + "284" ], "location": { "end": { @@ -33809,15 +33809,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "276" + "279" ], "coveredBy": [ - "272", - "273", "275", "276", - "280", - "281" + "278", + "279", + "283", + "284" ], "location": { "end": { @@ -33839,15 +33839,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "275" + "278" ], "coveredBy": [ - "272", - "273", "275", "276", - "280", - "281" + "278", + "279", + "283", + "284" ], "location": { "end": { @@ -33869,12 +33869,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "275" + "278" ], "coveredBy": [ "275", - "280", - "281" + "278", + "283" ], "location": { "end": { @@ -33896,12 +33896,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "275" + "278" ], "coveredBy": [ "275", - "280", - "281" + "278", + "283" ], "location": { "end": { @@ -33923,12 +33923,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "275" + "278" ], "coveredBy": [ "275", - "280", - "281" + "278", + "283" ], "location": { "end": { @@ -33950,12 +33950,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "275" + "278" ], "coveredBy": [ "275", - "280", - "281" + "278", + "283" ], "location": { "end": { @@ -33977,12 +33977,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "276" + "279" ], "coveredBy": [ - "272", - "273", - "276" + "276", + "279", + "284" ], "location": { "end": { @@ -34004,12 +34004,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "276" + "279" ], "coveredBy": [ - "272", - "273", - "276" + "276", + "279", + "284" ], "location": { "end": { @@ -34031,12 +34031,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "276" + "279" ], "coveredBy": [ - "272", - "273", - "276" + "276", + "279", + "284" ], "location": { "end": { @@ -34058,12 +34058,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "268" + "271" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34074,7 +34071,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34096,12 +34096,9 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "277" + "280" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34112,7 +34109,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34134,10 +34134,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "277" + "280" ], "coveredBy": [ - "277" + "280" ], "location": { "end": { @@ -34159,10 +34159,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "277" + "280" ], "coveredBy": [ - "277" + "280" ], "location": { "end": { @@ -34184,10 +34184,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "277" + "280" ], "coveredBy": [ - "277" + "280" ], "location": { "end": { @@ -34209,10 +34209,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "277" + "280" ], "coveredBy": [ - "277" + "280" ], "location": { "end": { @@ -34234,12 +34234,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "268" + "271" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34250,7 +34247,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34272,12 +34272,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "268" + "271" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34288,7 +34285,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34310,12 +34310,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "269" + "272" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34326,7 +34323,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34348,12 +34348,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "281" + "284" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34364,7 +34361,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34386,12 +34386,9 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "280" + "283" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34402,7 +34399,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34424,12 +34424,9 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "280" + "283" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34440,7 +34437,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34462,12 +34462,9 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "280" + "283" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34478,7 +34475,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34500,11 +34500,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "280" + "283" ], "coveredBy": [ - "272", - "280" + "275", + "283" ], "location": { "end": { @@ -34526,12 +34526,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "281" + "284" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34542,7 +34539,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34564,12 +34564,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "269" + "272" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34580,7 +34577,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34602,12 +34602,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "271" + "274" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34618,7 +34615,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34640,12 +34640,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "270" + "273" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34656,7 +34653,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34678,12 +34678,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "271" + "274" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34694,7 +34691,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34716,12 +34716,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "270" + "273" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34732,7 +34729,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34754,12 +34754,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "270" + "273" ], "coveredBy": [ - "270", - "274", - "279" + "273", + "277", + "282" ], "location": { "end": { @@ -34781,12 +34781,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "271" + "274" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34797,7 +34794,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34819,12 +34819,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "272" + "275" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -34835,7 +34832,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -34857,11 +34857,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "272" + "275" ], "coveredBy": [ - "272", - "273" + "275", + "276" ], "location": { "end": { @@ -34883,11 +34883,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "273" + "276" ], "coveredBy": [ - "272", - "273" + "275", + "276" ], "location": { "end": { @@ -34909,11 +34909,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "272" + "275" ], "coveredBy": [ - "272", - "273" + "275", + "276" ], "location": { "end": { @@ -34935,11 +34935,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "272" + "275" ], "coveredBy": [ - "272", - "273" + "275", + "276" ], "location": { "end": { @@ -34961,11 +34961,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "272" + "275" ], "coveredBy": [ - "272", - "273" + "275", + "276" ], "location": { "end": { @@ -34987,10 +34987,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "272" + "275" ], "coveredBy": [ - "272" + "275" ], "location": { "end": { @@ -35012,10 +35012,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "273" + "276" ], "coveredBy": [ - "273" + "276" ], "location": { "end": { @@ -35037,12 +35037,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "271" + "274" ], "coveredBy": [ - "268", - "269", - "270", "271", "272", "273", @@ -35053,7 +35050,10 @@ "278", "279", "280", - "281" + "281", + "282", + "283", + "284" ], "location": { "end": { @@ -35081,12 +35081,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "387" + "390" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35105,7 +35102,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35127,12 +35127,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "392" + "395" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35151,7 +35148,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35173,12 +35173,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "392" + "395" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35197,7 +35194,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35219,12 +35219,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "387" + "390" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35243,7 +35240,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35265,12 +35265,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "387" + "390" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35289,7 +35286,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35311,12 +35311,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "392" + "395" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35335,7 +35332,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35357,12 +35357,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "392" + "395" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35381,7 +35378,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35403,12 +35403,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "392" + "395" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35427,7 +35424,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35449,12 +35449,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "392" + "395" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35473,7 +35470,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35495,12 +35495,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "392" + "395" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35519,7 +35516,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35541,12 +35541,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "387" + "390" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35565,7 +35562,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35587,12 +35587,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "401" + "404" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35611,7 +35608,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35633,12 +35633,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "401" + "404" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35657,7 +35654,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35679,12 +35679,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "387" + "390" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35703,7 +35700,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35725,12 +35725,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "387" + "390" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35749,7 +35746,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35771,12 +35771,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "401" + "404" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35795,7 +35792,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35817,12 +35817,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "401" + "404" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35841,7 +35838,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35863,12 +35863,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "401" + "404" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35887,7 +35884,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35909,12 +35909,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "401" + "404" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35933,7 +35930,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -35955,12 +35955,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "401" + "404" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -35979,7 +35976,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -36001,15 +36001,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "393" + "396" ], "coveredBy": [ - "393", - "394", - "395", + "396", "397", "398", - "399" + "400", + "401", + "402" ], "location": { "end": { @@ -36031,15 +36031,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "393" + "396" ], "coveredBy": [ - "393", - "394", - "395", + "396", "397", "398", - "399" + "400", + "401", + "402" ], "location": { "end": { @@ -36061,15 +36061,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "393" + "396" ], "coveredBy": [ - "393", - "394", - "395", + "396", "397", "398", - "399" + "400", + "401", + "402" ], "location": { "end": { @@ -36091,15 +36091,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "398" + "401" ], "coveredBy": [ - "393", - "394", - "395", + "396", "397", "398", - "399" + "400", + "401", + "402" ], "location": { "end": { @@ -36121,11 +36121,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "398" + "401" ], "coveredBy": [ - "397", - "398" + "400", + "401" ], "location": { "end": { @@ -36147,13 +36147,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "393" + "396" ], "coveredBy": [ - "393", - "394", - "395", - "399" + "396", + "397", + "398", + "402" ], "location": { "end": { @@ -36175,13 +36175,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "393" + "396" ], "coveredBy": [ - "393", - "394", - "395", - "399" + "396", + "397", + "398", + "402" ], "location": { "end": { @@ -36203,13 +36203,13 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "399" + "402" ], "coveredBy": [ - "393", - "394", - "395", - "399" + "396", + "397", + "398", + "402" ], "location": { "end": { @@ -36231,10 +36231,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "399" + "402" ], "coveredBy": [ - "399" + "402" ], "location": { "end": { @@ -36256,10 +36256,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "399" + "402" ], "coveredBy": [ - "399" + "402" ], "location": { "end": { @@ -36281,12 +36281,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "395" + "398" ], "coveredBy": [ - "393", - "394", - "395" + "396", + "397", + "398" ], "location": { "end": { @@ -36308,15 +36308,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "402" + "405" ], "coveredBy": [ - "402", - "403", - "404", + "405", "406", "407", - "408" + "409", + "410", + "411" ], "location": { "end": { @@ -36338,15 +36338,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "402" + "405" ], "coveredBy": [ - "402", - "403", - "404", + "405", "406", "407", - "408" + "409", + "410", + "411" ], "location": { "end": { @@ -36368,15 +36368,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "402" + "405" ], "coveredBy": [ - "402", - "403", - "404", + "405", "406", "407", - "408" + "409", + "410", + "411" ], "location": { "end": { @@ -36398,15 +36398,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "407" + "410" ], "coveredBy": [ - "402", - "403", - "404", + "405", "406", "407", - "408" + "409", + "410", + "411" ], "location": { "end": { @@ -36428,10 +36428,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "407" + "410" ], "coveredBy": [ - "407" + "410" ], "location": { "end": { @@ -36453,14 +36453,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "402" + "405" ], "coveredBy": [ - "402", - "403", - "404", + "405", "406", - "408" + "407", + "409", + "411" ], "location": { "end": { @@ -36482,14 +36482,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "402" + "405" ], "coveredBy": [ - "402", - "403", - "404", + "405", "406", - "408" + "407", + "409", + "411" ], "location": { "end": { @@ -36511,14 +36511,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "408" + "411" ], "coveredBy": [ - "402", - "403", - "404", + "405", "406", - "408" + "407", + "409", + "411" ], "location": { "end": { @@ -36540,10 +36540,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "408" + "411" ], "coveredBy": [ - "408" + "411" ], "location": { "end": { @@ -36565,10 +36565,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "408" + "411" ], "coveredBy": [ - "408" + "411" ], "location": { "end": { @@ -36590,13 +36590,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "404" + "407" ], "coveredBy": [ - "402", - "403", - "404", - "406" + "405", + "406", + "407", + "409" ], "location": { "end": { @@ -36618,12 +36618,9 @@ "testsCompleted": 17, "static": false, "killedBy": [ - "403" + "406" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -36642,7 +36639,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -36664,14 +36664,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "403" + "406" ], "coveredBy": [ - "403", - "404", - "405", "406", - "407" + "407", + "408", + "409", + "410" ], "location": { "end": { @@ -36693,14 +36693,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "403" + "406" ], "coveredBy": [ - "403", - "404", - "405", "406", - "407" + "407", + "408", + "409", + "410" ], "location": { "end": { @@ -36722,14 +36722,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "405" + "408" ], "coveredBy": [ - "403", - "404", - "405", "406", - "407" + "407", + "408", + "409", + "410" ], "location": { "end": { @@ -36751,14 +36751,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "405" + "408" ], "coveredBy": [ - "403", - "404", - "405", "406", - "407" + "407", + "408", + "409", + "410" ], "location": { "end": { @@ -36780,14 +36780,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "403" + "406" ], "coveredBy": [ - "403", - "404", - "405", "406", - "407" + "407", + "408", + "409", + "410" ], "location": { "end": { @@ -36809,14 +36809,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "403" + "406" ], "coveredBy": [ - "403", - "404", - "405", "406", - "407" + "407", + "408", + "409", + "410" ], "location": { "end": { @@ -36838,11 +36838,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "405" + "408" ], "coveredBy": [ - "405", - "406" + "408", + "409" ], "location": { "end": { @@ -36864,12 +36864,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "394" + "397" ], "coveredBy": [ - "387", - "388", - "389", "390", "391", "392", @@ -36888,7 +36885,10 @@ "405", "406", "407", - "408" + "408", + "409", + "410", + "411" ], "location": { "end": { @@ -36910,14 +36910,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "394" + "397" ], "coveredBy": [ - "394", - "395", - "396", "397", - "398" + "398", + "399", + "400", + "401" ], "location": { "end": { @@ -36939,14 +36939,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "394" + "397" ], "coveredBy": [ - "394", - "395", - "396", "397", - "398" + "398", + "399", + "400", + "401" ], "location": { "end": { @@ -36968,14 +36968,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "396" + "399" ], "coveredBy": [ - "394", - "395", - "396", "397", - "398" + "398", + "399", + "400", + "401" ], "location": { "end": { @@ -36997,14 +36997,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "396" + "399" ], "coveredBy": [ - "394", - "395", - "396", "397", - "398" + "398", + "399", + "400", + "401" ], "location": { "end": { @@ -37026,14 +37026,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "394" + "397" ], "coveredBy": [ - "394", - "395", - "396", "397", - "398" + "398", + "399", + "400", + "401" ], "location": { "end": { @@ -37055,14 +37055,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "394" + "397" ], "coveredBy": [ - "394", - "395", - "396", "397", - "398" + "398", + "399", + "400", + "401" ], "location": { "end": { @@ -37084,11 +37084,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "396" + "399" ], "coveredBy": [ - "396", - "397" + "399", + "400" ], "location": { "end": { @@ -37116,13 +37116,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1670" + "1673" ], "coveredBy": [ - "1670", - "1671", - "1672", - "1673" + "1673", + "1674", + "1675", + "1676" ], "location": { "end": { @@ -37144,13 +37144,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1670" + "1673" ], "coveredBy": [ - "1670", - "1671", - "1672", - "1673" + "1673", + "1674", + "1675", + "1676" ], "location": { "end": { @@ -37172,13 +37172,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1671" + "1674" ], "coveredBy": [ - "1670", - "1671", - "1672", - "1673" + "1673", + "1674", + "1675", + "1676" ], "location": { "end": { @@ -37200,10 +37200,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1671" + "1674" ], "coveredBy": [ - "1671" + "1674" ], "location": { "end": { @@ -37231,12 +37231,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "438" + "441" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37261,7 +37258,10 @@ "462", "463", "464", - "465" + "465", + "466", + "467", + "468" ], "location": { "end": { @@ -37283,12 +37283,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "438" + "441" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37313,7 +37310,10 @@ "462", "463", "464", - "465" + "465", + "466", + "467", + "468" ], "location": { "end": { @@ -37335,12 +37335,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "438" + "441" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37365,7 +37362,10 @@ "462", "463", "464", - "465" + "465", + "466", + "467", + "468" ], "location": { "end": { @@ -37387,12 +37387,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "439" + "442" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37417,7 +37414,10 @@ "462", "463", "464", - "465" + "465", + "466", + "467", + "468" ], "location": { "end": { @@ -37439,11 +37439,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "439" + "442" ], "coveredBy": [ - "439", - "440" + "442", + "443" ], "location": { "end": { @@ -37465,11 +37465,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "439" + "442" ], "coveredBy": [ - "439", - "440" + "442", + "443" ], "location": { "end": { @@ -37491,12 +37491,9 @@ "testsCompleted": 34, "static": false, "killedBy": [ - "464" + "467" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37521,7 +37518,10 @@ "462", "463", "464", - "465" + "465", + "466", + "467", + "468" ], "location": { "end": { @@ -37543,12 +37543,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "438" + "441" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37573,7 +37570,10 @@ "462", "463", "464", - "465" + "465", + "466", + "467", + "468" ], "location": { "end": { @@ -37595,12 +37595,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "438" + "441" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37624,7 +37621,10 @@ "461", "462", "463", - "464" + "464", + "465", + "466", + "467" ], "location": { "end": { @@ -37646,12 +37646,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "438" + "441" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37676,7 +37673,10 @@ "462", "463", "464", - "465" + "465", + "466", + "467", + "468" ], "location": { "end": { @@ -37698,12 +37698,9 @@ "testsCompleted": 34, "static": false, "killedBy": [ - "464" + "467" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37728,7 +37725,10 @@ "462", "463", "464", - "465" + "465", + "466", + "467", + "468" ], "location": { "end": { @@ -37750,12 +37750,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "438" + "441" ], "coveredBy": [ - "438", - "439", - "440", "441", "442", "443", @@ -37780,7 +37777,10 @@ "462", "463", "464", - "465" + "465", + "466", + "467", + "468" ], "location": { "end": { @@ -37802,11 +37802,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "464" + "467" ], "coveredBy": [ - "464", - "465" + "467", + "468" ], "location": { "end": { @@ -37828,11 +37828,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "464" + "467" ], "coveredBy": [ - "464", - "465" + "467", + "468" ], "location": { "end": { @@ -39443,14 +39443,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1432" + "1435" ], "coveredBy": [ - "1432", - "1433", - "1434", "1435", - "1436" + "1436", + "1437", + "1438", + "1439" ], "location": { "end": { @@ -39472,14 +39472,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1433" + "1436" ], "coveredBy": [ - "1432", - "1433", - "1434", "1435", - "1436" + "1436", + "1437", + "1438", + "1439" ], "location": { "end": { @@ -39507,15 +39507,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1055" + "1058" ], "coveredBy": [ - "1055", - "1056", - "1057", "1058", "1059", - "1060" + "1060", + "1061", + "1062", + "1063" ], "location": { "end": { @@ -39537,15 +39537,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1055" + "1058" ], "coveredBy": [ - "1055", - "1056", - "1057", "1058", "1059", - "1060" + "1060", + "1061", + "1062", + "1063" ], "location": { "end": { @@ -39567,15 +39567,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1055" + "1058" ], "coveredBy": [ - "1055", - "1056", - "1057", "1058", "1059", - "1060" + "1060", + "1061", + "1062", + "1063" ], "location": { "end": { @@ -39597,15 +39597,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1055" + "1058" ], "coveredBy": [ - "1055", - "1056", - "1057", "1058", "1059", - "1060" + "1060", + "1061", + "1062", + "1063" ], "location": { "end": { @@ -39633,14 +39633,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1268" + "1271" ], "coveredBy": [ - "1267", - "1268", - "1269", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -39662,11 +39662,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1270" + "1273" ], "coveredBy": [ - "1270", - "1271" + "1273", + "1274" ], "location": { "end": { @@ -39688,11 +39688,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1271" + "1274" ], "coveredBy": [ - "1270", - "1271" + "1273", + "1274" ], "location": { "end": { @@ -39714,11 +39714,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1270" + "1273" ], "coveredBy": [ - "1270", - "1271" + "1273", + "1274" ], "location": { "end": { @@ -39740,11 +39740,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1270" + "1273" ], "coveredBy": [ - "1270", - "1271" + "1273", + "1274" ], "location": { "end": { @@ -39766,10 +39766,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1270" + "1273" ], "coveredBy": [ - "1270" + "1273" ], "location": { "end": { @@ -39797,12 +39797,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -39812,10 +39809,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -39837,12 +39837,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1268" + "1271" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -39852,10 +39849,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -39877,12 +39877,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -39892,10 +39889,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -39917,12 +39917,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1268" + "1271" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -39932,10 +39929,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -39957,12 +39957,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1268" + "1271" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -39972,10 +39969,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -39997,12 +39997,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1268" + "1271" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40012,10 +40009,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40037,12 +40037,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40052,10 +40049,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40077,12 +40077,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1268" + "1271" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40092,10 +40089,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40117,12 +40117,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40132,10 +40129,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40157,12 +40157,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40171,7 +40168,10 @@ "632", "633", "634", - "635" + "635", + "636", + "637", + "638" ], "location": { "end": { @@ -40193,17 +40193,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "626" + "629" ], "coveredBy": [ - "626", - "628", + "629", "631", - "633", - "1268", - "1269", - "1270", - "1271" + "634", + "636", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40225,12 +40225,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "627" + "630" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40240,10 +40237,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40265,12 +40265,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40280,10 +40277,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40305,12 +40305,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "627" + "630" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40320,10 +40317,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40345,12 +40345,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40360,10 +40357,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40385,12 +40385,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40400,10 +40397,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40425,12 +40425,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40440,10 +40437,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40465,12 +40465,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40480,10 +40477,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40505,12 +40505,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "627" + "630" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40520,10 +40517,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40545,14 +40545,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "627" + "630" ], "coveredBy": [ - "627", - "628", - "632", - "633", - "1271" + "630", + "631", + "635", + "636", + "1274" ], "location": { "end": { @@ -40574,14 +40574,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "627" + "630" ], "coveredBy": [ - "627", - "628", - "632", - "633", - "1271" + "630", + "631", + "635", + "636", + "1274" ], "location": { "end": { @@ -40603,12 +40603,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40618,10 +40615,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40643,12 +40643,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40658,10 +40655,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40683,12 +40683,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "624" + "627" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40698,10 +40695,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40723,12 +40723,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "632" + "635" ], "coveredBy": [ - "624", - "625", - "626", "627", "628", "629", @@ -40738,10 +40735,13 @@ "633", "634", "635", - "1268", - "1269", - "1270", - "1271" + "636", + "637", + "638", + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -40763,14 +40763,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "632" + "635" ], "coveredBy": [ - "627", - "628", - "632", - "633", - "1271" + "630", + "631", + "635", + "636", + "1274" ], "location": { "end": { @@ -40792,14 +40792,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "632" + "635" ], "coveredBy": [ - "627", - "628", - "632", - "633", - "1271" + "630", + "631", + "635", + "636", + "1274" ], "location": { "end": { @@ -40821,10 +40821,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "635" + "638" ], "coveredBy": [ - "635" + "638" ], "location": { "end": { @@ -40846,10 +40846,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "635" + "638" ], "coveredBy": [ - "635" + "638" ], "location": { "end": { @@ -40877,10 +40877,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1343" + "1346" ], "coveredBy": [ - "1343" + "1346" ], "location": { "end": { @@ -40902,10 +40902,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1343" + "1346" ], "coveredBy": [ - "1343" + "1346" ], "location": { "end": { @@ -40927,10 +40927,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1347" + "1350" ], "coveredBy": [ - "1347" + "1350" ], "location": { "end": { @@ -40952,10 +40952,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1347" + "1350" ], "coveredBy": [ - "1347" + "1350" ], "location": { "end": { @@ -40983,19 +40983,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "981" + "984" ], "coveredBy": [ - "981", - "982", - "983", "984", "985", "986", "987", "988", "989", - "990" + "990", + "991", + "992", + "993" ], "location": { "end": { @@ -41017,19 +41017,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "981" + "984" ], "coveredBy": [ - "981", - "982", - "983", "984", "985", "986", "987", "988", "989", - "990" + "990", + "991", + "992", + "993" ], "location": { "end": { @@ -41051,19 +41051,19 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "982" + "985" ], "coveredBy": [ - "981", - "982", - "983", "984", "985", "986", "987", "988", "989", - "990" + "990", + "991", + "992", + "993" ], "location": { "end": { @@ -41085,19 +41085,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "981" + "984" ], "coveredBy": [ - "981", - "982", - "983", "984", "985", "986", "987", "988", "989", - "990" + "990", + "991", + "992", + "993" ], "location": { "end": { @@ -41119,19 +41119,19 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "990" + "993" ], "coveredBy": [ - "981", - "982", - "983", "984", "985", "986", "987", "988", "989", - "990" + "990", + "991", + "992", + "993" ], "location": { "end": { @@ -41153,19 +41153,19 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "982" + "985" ], "coveredBy": [ - "981", - "982", - "983", "984", "985", "986", "987", "988", "989", - "990" + "990", + "991", + "992", + "993" ], "location": { "end": { @@ -41187,11 +41187,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "982" + "985" ], "coveredBy": [ - "982", - "983" + "985", + "986" ], "location": { "end": { @@ -41213,19 +41213,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "981" + "984" ], "coveredBy": [ - "981", - "982", - "983", "984", "985", "986", "987", "988", "989", - "990" + "990", + "991", + "992", + "993" ], "location": { "end": { @@ -41247,19 +41247,19 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "990" + "993" ], "coveredBy": [ - "981", - "982", - "983", "984", "985", "986", "987", "988", "989", - "990" + "990", + "991", + "992", + "993" ], "location": { "end": { @@ -44762,12 +44762,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "510" + "513" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -44780,7 +44777,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -44802,12 +44802,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -44820,7 +44817,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -44842,12 +44842,9 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "514" + "517" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -44860,7 +44857,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -44882,12 +44882,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "512" + "515" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -44900,7 +44897,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -44922,12 +44922,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "511" + "514" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -44940,7 +44937,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -44962,12 +44962,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -44980,7 +44977,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45002,12 +45002,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "511" + "514" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -45020,7 +45017,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45042,12 +45042,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "511" + "514" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -45060,7 +45057,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45082,13 +45082,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "511" + "514" ], "coveredBy": [ - "511", - "512", - "513", - "514" + "514", + "515", + "516", + "517" ], "location": { "end": { @@ -45110,12 +45110,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -45128,7 +45125,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45150,12 +45150,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -45168,7 +45165,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45190,12 +45190,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -45208,7 +45205,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45230,12 +45230,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -45248,7 +45245,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45270,12 +45270,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "507", - "508", - "509", "510", "511", "512", @@ -45288,7 +45285,10 @@ "519", "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45310,16 +45310,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "513" + "516" ], "coveredBy": [ - "511", - "512", - "513", "514", "515", "516", - "517" + "517", + "518", + "519", + "520" ], "location": { "end": { @@ -45341,16 +45341,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "511" + "514" ], "coveredBy": [ - "511", - "512", - "513", "514", "515", "516", - "517" + "517", + "518", + "519", + "520" ], "location": { "end": { @@ -45372,13 +45372,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "513" + "516" ], "coveredBy": [ - "511", - "512", - "513", - "514" + "514", + "515", + "516", + "517" ], "location": { "end": { @@ -45400,16 +45400,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "513" + "516" ], "coveredBy": [ - "511", - "512", - "513", "514", "515", "516", - "517" + "517", + "518", + "519", + "520" ], "location": { "end": { @@ -45431,16 +45431,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "513" + "516" ], "coveredBy": [ - "511", - "512", - "513", "514", "515", "516", - "517" + "517", + "518", + "519", + "520" ], "location": { "end": { @@ -45462,16 +45462,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "511", - "512", - "513", "514", "515", "516", - "517" + "517", + "518", + "519", + "520" ], "location": { "end": { @@ -45493,16 +45493,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "511", - "512", - "513", "514", "515", "516", - "517" + "517", + "518", + "519", + "520" ], "location": { "end": { @@ -45524,10 +45524,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "515" + "518" ], "coveredBy": [ - "515" + "518" ], "location": { "end": { @@ -45549,15 +45549,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "516" + "519" ], "coveredBy": [ - "511", - "512", - "513", "514", + "515", "516", - "517" + "517", + "519", + "520" ], "location": { "end": { @@ -45579,15 +45579,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "516" + "519" ], "coveredBy": [ - "511", - "512", - "513", "514", + "515", "516", - "517" + "517", + "519", + "520" ], "location": { "end": { @@ -45609,15 +45609,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "516" + "519" ], "coveredBy": [ - "511", - "512", - "513", "514", + "515", "516", - "517" + "517", + "519", + "520" ], "location": { "end": { @@ -45639,15 +45639,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "516" + "519" ], "coveredBy": [ - "511", - "512", - "513", "514", + "515", "516", - "517" + "517", + "519", + "520" ], "location": { "end": { @@ -45669,10 +45669,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "517" + "520" ], "coveredBy": [ - "517" + "520" ], "location": { "end": { @@ -45694,10 +45694,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "517" + "520" ], "coveredBy": [ - "517" + "520" ], "location": { "end": { @@ -45719,14 +45719,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "519" + "522" ], "coveredBy": [ - "518", - "519", - "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45748,14 +45748,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "519" + "522" ], "coveredBy": [ - "518", - "519", - "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45777,14 +45777,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "518" + "521" ], "coveredBy": [ - "518", - "519", - "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45806,14 +45806,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "518" + "521" ], "coveredBy": [ - "518", - "519", - "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45835,14 +45835,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "518" + "521" ], "coveredBy": [ - "518", - "519", - "520", "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45864,10 +45864,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "518" + "521" ], "coveredBy": [ - "518" + "521" ], "location": { "end": { @@ -45889,13 +45889,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "521" + "524" ], "coveredBy": [ - "519", - "520", - "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45917,13 +45917,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "519" + "522" ], "coveredBy": [ - "519", - "520", - "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45945,13 +45945,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "519" + "522" ], "coveredBy": [ - "519", - "520", - "521", - "522" + "522", + "523", + "524", + "525" ], "location": { "end": { @@ -45973,10 +45973,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "519" + "522" ], "coveredBy": [ - "519" + "522" ], "location": { "end": { @@ -45998,12 +45998,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "521" + "524" ], "coveredBy": [ - "520", - "521", - "522" + "523", + "524", + "525" ], "location": { "end": { @@ -46031,16 +46031,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1370" + "1373" ], "coveredBy": [ - "1370", - "1371", - "1372", "1373", "1374", "1375", - "1376" + "1376", + "1377", + "1378", + "1379" ], "location": { "end": { @@ -46062,12 +46062,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1375" + "1378" ], "coveredBy": [ - "1371", - "1375", - "1376" + "1374", + "1378", + "1379" ], "location": { "end": { @@ -46089,16 +46089,16 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1371" + "1374" ], "coveredBy": [ - "1370", - "1371", - "1372", "1373", "1374", "1375", - "1376" + "1376", + "1377", + "1378", + "1379" ], "location": { "end": { @@ -46120,12 +46120,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1371" + "1374" ], "coveredBy": [ - "1371", - "1375", - "1376" + "1374", + "1378", + "1379" ], "location": { "end": { @@ -46147,16 +46147,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1372" + "1375" ], "coveredBy": [ - "1370", - "1371", - "1372", "1373", "1374", "1375", - "1376" + "1376", + "1377", + "1378", + "1379" ], "location": { "end": { @@ -46184,16 +46184,16 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1242" + "1245" ], "coveredBy": [ - "1236", - "1237", - "1238", "1239", "1240", "1241", - "1242" + "1242", + "1243", + "1244", + "1245" ], "location": { "end": { @@ -46215,16 +46215,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1240" + "1243" ], "coveredBy": [ - "1236", - "1237", - "1238", "1239", "1240", "1241", - "1242" + "1242", + "1243", + "1244", + "1245" ], "location": { "end": { @@ -46246,16 +46246,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1238" + "1241" ], "coveredBy": [ - "1236", - "1237", - "1238", "1239", "1240", "1241", - "1242" + "1242", + "1243", + "1244", + "1245" ], "location": { "end": { @@ -46277,16 +46277,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1236" + "1239" ], "coveredBy": [ - "1236", - "1237", - "1238", "1239", "1240", "1241", - "1242" + "1242", + "1243", + "1244", + "1245" ], "location": { "end": { @@ -46314,14 +46314,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1408" + "1411" ], "coveredBy": [ - "1408", - "1409", - "1410", "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46343,14 +46343,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1408" + "1411" ], "coveredBy": [ - "1408", - "1409", - "1410", "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46372,14 +46372,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1409" + "1412" ], "coveredBy": [ - "1408", - "1409", - "1410", "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46401,14 +46401,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1412" + "1415" ], "coveredBy": [ - "1408", - "1409", - "1410", "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46430,14 +46430,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1409" + "1412" ], "coveredBy": [ - "1408", - "1409", - "1410", "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46459,14 +46459,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1408" + "1411" ], "coveredBy": [ - "1408", - "1409", - "1410", "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46488,14 +46488,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1409" + "1412" ], "coveredBy": [ - "1408", - "1409", - "1410", "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46517,14 +46517,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1408" + "1411" ], "coveredBy": [ - "1408", - "1409", - "1410", "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46546,14 +46546,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1408" + "1411" ], "coveredBy": [ - "1408", - "1409", - "1410", "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46575,13 +46575,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1409" + "1412" ], "coveredBy": [ - "1409", - "1410", - "1411", - "1412" + "1412", + "1413", + "1414", + "1415" ], "location": { "end": { @@ -46609,12 +46609,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46624,7 +46621,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46646,12 +46646,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46661,7 +46658,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46683,12 +46683,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46698,7 +46695,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46720,12 +46720,9 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "503" + "506" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46735,7 +46732,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46757,12 +46757,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "496" + "499" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46772,7 +46769,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46794,12 +46794,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46809,7 +46806,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46831,12 +46831,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "496" + "499" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46846,7 +46843,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46868,12 +46868,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46883,7 +46880,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46905,12 +46905,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46920,7 +46917,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46942,12 +46942,9 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "503" + "506" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46957,7 +46954,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -46979,12 +46979,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -46994,7 +46991,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -47016,12 +47016,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -47031,7 +47028,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -47053,12 +47053,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", "497", "498", "499", @@ -47068,7 +47065,10 @@ "503", "504", "505", - "506" + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -47090,16 +47090,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "496" + "499" ], "coveredBy": [ - "496", - "497", - "498", - "503", - "504", - "505", - "506" + "499", + "500", + "501", + "506", + "507", + "508", + "509" ], "location": { "end": { @@ -47121,18 +47121,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "494" + "497" ], "coveredBy": [ - "494", - "495", - "496", + "497", "498", "499", - "500", "501", "502", - "503" + "503", + "504", + "505", + "506" ], "location": { "end": { @@ -47160,14 +47160,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1501" + "1504" ], "coveredBy": [ - "1501", - "1502", - "1503", "1504", - "1505" + "1505", + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47189,14 +47189,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1505" + "1508" ], "coveredBy": [ - "1501", - "1502", - "1503", "1504", - "1505" + "1505", + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47218,14 +47218,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1501" + "1504" ], "coveredBy": [ - "1501", - "1502", - "1503", "1504", - "1505" + "1505", + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47247,14 +47247,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1501" + "1504" ], "coveredBy": [ - "1501", - "1502", - "1503", "1504", - "1505" + "1505", + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47276,14 +47276,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1501" + "1504" ], "coveredBy": [ - "1501", - "1502", - "1503", "1504", - "1505" + "1505", + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47305,14 +47305,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1501" + "1504" ], "coveredBy": [ - "1501", - "1502", - "1503", "1504", - "1505" + "1505", + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47334,14 +47334,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1501" + "1504" ], "coveredBy": [ - "1501", - "1502", - "1503", "1504", - "1505" + "1505", + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47363,12 +47363,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1503" + "1506" ], "coveredBy": [ - "1503", - "1504", - "1505" + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47390,12 +47390,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1503" + "1506" ], "coveredBy": [ - "1503", - "1504", - "1505" + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47417,14 +47417,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1501" + "1504" ], "coveredBy": [ - "1501", - "1502", - "1503", "1504", - "1505" + "1505", + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47446,14 +47446,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1501" + "1504" ], "coveredBy": [ - "1501", - "1502", - "1503", "1504", - "1505" + "1505", + "1506", + "1507", + "1508" ], "location": { "end": { @@ -47481,15 +47481,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1569" + "1572" ], "coveredBy": [ - "1569", - "1570", - "1571", "1572", "1573", - "1574" + "1574", + "1575", + "1576", + "1577" ], "location": { "end": { @@ -47511,15 +47511,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1569" + "1572" ], "coveredBy": [ - "1569", - "1570", - "1571", "1572", "1573", - "1574" + "1574", + "1575", + "1576", + "1577" ], "location": { "end": { @@ -47541,15 +47541,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1569" + "1572" ], "coveredBy": [ - "1569", - "1570", - "1571", "1572", "1573", - "1574" + "1574", + "1575", + "1576", + "1577" ], "location": { "end": { @@ -47571,15 +47571,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1574" + "1577" ], "coveredBy": [ - "1569", - "1570", - "1571", "1572", "1573", - "1574" + "1574", + "1575", + "1576", + "1577" ], "location": { "end": { @@ -47601,10 +47601,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1574" + "1577" ], "coveredBy": [ - "1574" + "1577" ], "location": { "end": { @@ -47626,10 +47626,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1574" + "1577" ], "coveredBy": [ - "1574" + "1577" ], "location": { "end": { @@ -47657,12 +47657,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -47671,7 +47668,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -47693,12 +47693,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -47707,7 +47704,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -47729,12 +47729,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "485" + "488" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -47743,7 +47740,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -47765,12 +47765,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -47779,7 +47776,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -47801,12 +47801,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "490" + "493" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -47815,7 +47812,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -47837,12 +47837,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -47851,7 +47848,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -47873,12 +47873,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "490" + "493" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -47887,7 +47884,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -47909,12 +47909,12 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "490" + "493" ], "coveredBy": [ - "483", - "488", - "490" + "486", + "491", + "493" ], "location": { "end": { @@ -47936,12 +47936,9 @@ "testsCompleted": 17, "static": false, "killedBy": [ - "491" + "494" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -47950,7 +47947,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -47972,12 +47972,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -47986,7 +47983,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48008,12 +48008,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48022,7 +48019,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48044,12 +48044,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48058,7 +48055,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48080,12 +48080,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48094,7 +48091,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48116,12 +48116,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48130,7 +48127,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48152,15 +48152,15 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "490" + "493" ], "coveredBy": [ - "484", - "485", + "487", "488", - "489", - "490", - "491" + "491", + "492", + "493", + "494" ], "location": { "end": { @@ -48182,15 +48182,15 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "490" + "493" ], "coveredBy": [ - "484", - "485", + "487", "488", - "489", - "490", - "491" + "491", + "492", + "493", + "494" ], "location": { "end": { @@ -48212,15 +48212,15 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "490" + "493" ], "coveredBy": [ - "484", - "485", + "487", "488", - "489", - "490", - "491" + "491", + "492", + "493", + "494" ], "location": { "end": { @@ -48242,12 +48242,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48256,7 +48253,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48278,12 +48278,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48292,7 +48289,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48314,12 +48314,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48328,7 +48325,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48350,12 +48350,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48364,7 +48361,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48386,12 +48386,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48400,7 +48397,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48422,12 +48422,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "488" + "491" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48436,7 +48433,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48458,12 +48458,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "482" + "485" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48472,7 +48469,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48494,12 +48494,9 @@ "testsCompleted": 11, "static": false, "killedBy": [ - "488" + "491" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48508,7 +48505,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48530,12 +48530,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "489" + "492" ], "coveredBy": [ - "485", - "489", - "491" + "488", + "492", + "494" ], "location": { "end": { @@ -48557,12 +48557,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "483" + "486" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48571,7 +48568,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48593,12 +48593,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "483" + "486" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48607,7 +48604,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48629,12 +48629,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "483" + "486" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48643,7 +48640,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48665,12 +48665,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "484" + "487" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48679,7 +48676,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48701,12 +48701,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "484" + "487" ], "coveredBy": [ - "482", - "483", - "484", "485", "486", "487", @@ -48715,7 +48712,10 @@ "490", "491", "492", - "493" + "493", + "494", + "495", + "496" ], "location": { "end": { @@ -48737,12 +48737,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "485" + "488" ], "coveredBy": [ - "485", - "489", - "491" + "488", + "492", + "494" ], "location": { "end": { @@ -48764,13 +48764,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "483" + "486" ], "coveredBy": [ - "483", - "484", - "485", - "486" + "486", + "487", + "488", + "489" ], "location": { "end": { @@ -48792,13 +48792,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "483" + "486" ], "coveredBy": [ - "483", - "484", - "485", - "486" + "486", + "487", + "488", + "489" ], "location": { "end": { @@ -48820,13 +48820,13 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "486" + "489" ], "coveredBy": [ - "483", - "484", - "485", - "486" + "486", + "487", + "488", + "489" ], "location": { "end": { @@ -48854,17 +48854,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "492" + "495" ], "coveredBy": [ - "492", - "493", - "1693", - "1694", - "1695", + "495", + "496", "1696", "1697", - "1698" + "1698", + "1699", + "1700", + "1701" ], "location": { "end": { @@ -48886,17 +48886,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "492" + "495" ], "coveredBy": [ - "492", - "493", - "1693", - "1694", - "1695", + "495", + "496", "1696", "1697", - "1698" + "1698", + "1699", + "1700", + "1701" ], "location": { "end": { @@ -48918,17 +48918,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1693" + "1696" ], "coveredBy": [ - "492", - "493", - "1693", - "1694", - "1695", + "495", + "496", "1696", "1697", - "1698" + "1698", + "1699", + "1700", + "1701" ], "location": { "end": { @@ -48950,17 +48950,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1693" + "1696" ], "coveredBy": [ - "492", - "493", - "1693", - "1694", - "1695", + "495", + "496", "1696", "1697", - "1698" + "1698", + "1699", + "1700", + "1701" ], "location": { "end": { @@ -48982,17 +48982,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1693" + "1696" ], "coveredBy": [ - "492", - "493", - "1693", - "1694", - "1695", + "495", + "496", "1696", "1697", - "1698" + "1698", + "1699", + "1700", + "1701" ], "location": { "end": { @@ -49014,17 +49014,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1693" + "1696" ], "coveredBy": [ - "492", - "493", - "1693", - "1694", - "1695", + "495", + "496", "1696", "1697", - "1698" + "1698", + "1699", + "1700", + "1701" ], "location": { "end": { @@ -49052,13 +49052,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1925" + "1928" ], "coveredBy": [ - "492", - "493", - "1925", - "1926" + "495", + "496", + "1928", + "1929" ], "location": { "end": { @@ -49080,13 +49080,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1925" + "1928" ], "coveredBy": [ - "492", - "493", - "1925", - "1926" + "495", + "496", + "1928", + "1929" ], "location": { "end": { @@ -49108,13 +49108,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1925" + "1928" ], "coveredBy": [ - "492", - "493", - "1925", - "1926" + "495", + "496", + "1928", + "1929" ], "location": { "end": { @@ -49142,12 +49142,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "534" + "537" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49159,7 +49156,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49181,12 +49181,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "539" + "542" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49198,7 +49195,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49220,12 +49220,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49237,7 +49234,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49259,12 +49259,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "539" + "542" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49276,7 +49273,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49298,12 +49298,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49315,7 +49312,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49337,12 +49337,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "539" + "542" ], "coveredBy": [ - "536", - "537", - "538", "539", "540", "541", @@ -49352,7 +49349,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49374,12 +49374,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "534" + "537" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49391,7 +49388,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49413,12 +49413,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "536" + "539" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49430,7 +49427,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49452,12 +49452,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "534" + "537" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49469,7 +49466,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49491,12 +49491,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "534" + "537" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49508,7 +49505,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49530,12 +49530,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "534" + "537" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49547,7 +49544,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49569,12 +49569,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "534" + "537" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49586,7 +49583,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49608,12 +49608,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49625,7 +49622,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49647,12 +49647,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49664,7 +49661,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49686,12 +49686,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "534" + "537" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49703,7 +49700,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49725,12 +49725,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49742,7 +49739,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49764,12 +49764,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "534" + "537" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49781,7 +49778,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49803,12 +49803,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49820,7 +49817,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49842,12 +49842,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49859,7 +49856,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49881,12 +49881,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49898,7 +49895,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49920,12 +49920,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49937,7 +49934,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49959,12 +49959,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "538" + "541" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -49976,7 +49973,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -49998,16 +49998,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "540" + "543" ], "coveredBy": [ - "540", - "541", - "542", + "543", + "544", "545", - "546", - "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -50029,16 +50029,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "540" + "543" ], "coveredBy": [ - "540", - "541", - "542", + "543", + "544", "545", - "546", - "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -50060,16 +50060,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "540" + "543" ], "coveredBy": [ - "540", - "541", - "542", + "543", + "544", "545", - "546", - "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -50091,16 +50091,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "546" + "549" ], "coveredBy": [ - "540", - "541", - "542", + "543", + "544", "545", - "546", - "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -50122,10 +50122,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "546" + "549" ], "coveredBy": [ - "546" + "549" ], "location": { "end": { @@ -50147,15 +50147,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "547" + "550" ], "coveredBy": [ - "540", - "541", - "542", + "543", + "544", "545", - "547", - "548" + "548", + "550", + "551" ], "location": { "end": { @@ -50177,15 +50177,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "548" + "551" ], "coveredBy": [ - "540", - "541", - "542", + "543", + "544", "545", - "547", - "548" + "548", + "550", + "551" ], "location": { "end": { @@ -50207,12 +50207,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "542" + "545" ], "coveredBy": [ - "534", - "535", - "536", "537", "538", "539", @@ -50224,7 +50221,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -50246,13 +50246,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "542" + "545" ], "coveredBy": [ - "542", - "544", "545", - "546" + "547", + "548", + "549" ], "location": { "end": { @@ -50274,13 +50274,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "542" + "545" ], "coveredBy": [ - "542", - "544", "545", - "546" + "547", + "548", + "549" ], "location": { "end": { @@ -50302,13 +50302,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "544" + "547" ], "coveredBy": [ - "542", - "544", "545", - "546" + "547", + "548", + "549" ], "location": { "end": { @@ -50330,13 +50330,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "544" + "547" ], "coveredBy": [ - "542", - "544", "545", - "546" + "547", + "548", + "549" ], "location": { "end": { @@ -50358,13 +50358,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "542" + "545" ], "coveredBy": [ - "542", - "544", "545", - "546" + "547", + "548", + "549" ], "location": { "end": { @@ -50386,13 +50386,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "542" + "545" ], "coveredBy": [ - "542", - "544", "545", - "546" + "547", + "548", + "549" ], "location": { "end": { @@ -50414,11 +50414,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "544" + "547" ], "coveredBy": [ - "544", - "545" + "547", + "548" ], "location": { "end": { @@ -50446,16 +50446,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1484" + "1487" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50477,16 +50477,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1484" + "1487" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50508,16 +50508,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1484" + "1487" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50539,16 +50539,16 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "1490" + "1493" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50570,10 +50570,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1490" + "1493" ], "coveredBy": [ - "1490" + "1493" ], "location": { "end": { @@ -50595,16 +50595,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1484" + "1487" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50626,16 +50626,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1484" + "1487" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50657,16 +50657,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1485" + "1488" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50688,16 +50688,16 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1485" + "1488" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50719,16 +50719,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1485" + "1488" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50750,16 +50750,16 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1486" + "1489" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50781,16 +50781,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1484" + "1487" ], "coveredBy": [ - "1484", - "1485", - "1486", "1487", "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50812,12 +50812,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1484" + "1487" ], "coveredBy": [ - "1484", - "1485", - "1486" + "1487", + "1488", + "1489" ], "location": { "end": { @@ -50839,12 +50839,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1484" + "1487" ], "coveredBy": [ - "1484", - "1485", - "1486" + "1487", + "1488", + "1489" ], "location": { "end": { @@ -50866,14 +50866,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1487" + "1490" ], "coveredBy": [ - "1486", - "1487", - "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50895,14 +50895,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1486" + "1489" ], "coveredBy": [ - "1486", - "1487", - "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50924,14 +50924,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1486" + "1489" ], "coveredBy": [ - "1486", - "1487", - "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50953,14 +50953,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1486" + "1489" ], "coveredBy": [ - "1486", - "1487", - "1488", "1489", - "1490" + "1490", + "1491", + "1492", + "1493" ], "location": { "end": { @@ -50982,11 +50982,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1486" + "1489" ], "coveredBy": [ - "1486", - "1487" + "1489", + "1490" ], "location": { "end": { @@ -51008,11 +51008,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1486" + "1489" ], "coveredBy": [ - "1486", - "1487" + "1489", + "1490" ], "location": { "end": { @@ -51040,13 +51040,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "183" + "213" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51068,13 +51068,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "183" + "213" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51096,13 +51096,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "183" + "213" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51124,13 +51124,13 @@ "testsCompleted": 30, "static": false, "killedBy": [ - "186" + "216" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51152,10 +51152,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "186" + "216" ], "coveredBy": [ - "186" + "216" ], "location": { "end": { @@ -51177,13 +51177,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "183" + "213" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51205,13 +51205,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "183" + "213" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51233,13 +51233,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "184" + "214" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51261,12 +51261,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "184" + "214" ], "coveredBy": [ - "184", - "185", - "186" + "214", + "215", + "216" ], "location": { "end": { @@ -51288,13 +51288,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "183" + "213" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51316,13 +51316,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "183" + "213" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51344,13 +51344,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "183" + "213" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51372,13 +51372,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "183" + "213" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51400,13 +51400,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "184" + "214" ], "coveredBy": [ - "183", - "184", - "185", - "186" + "213", + "214", + "215", + "216" ], "location": { "end": { @@ -51428,12 +51428,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "184" + "214" ], "coveredBy": [ - "184", - "185", - "186" + "214", + "215", + "216" ], "location": { "end": { @@ -51455,12 +51455,12 @@ "testsCompleted": 29, "static": false, "killedBy": [ - "186" + "216" ], "coveredBy": [ - "184", - "185", - "186" + "214", + "215", + "216" ], "location": { "end": { @@ -51488,17 +51488,17 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1129" + "1132" ], "coveredBy": [ - "1126", - "1127", - "1128", "1129", "1130", "1131", "1132", - "1133" + "1133", + "1134", + "1135", + "1136" ], "location": { "end": { @@ -51520,17 +51520,17 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1127" + "1130" ], "coveredBy": [ - "1126", - "1127", - "1128", "1129", "1130", "1131", "1132", - "1133" + "1133", + "1134", + "1135", + "1136" ], "location": { "end": { @@ -51552,11 +51552,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1132" + "1135" ], "coveredBy": [ - "1132", - "1133" + "1135", + "1136" ], "location": { "end": { @@ -51578,11 +51578,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1132" + "1135" ], "coveredBy": [ - "1132", - "1133" + "1135", + "1136" ], "location": { "end": { @@ -51604,12 +51604,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1131" + "1134" ], "coveredBy": [ - "1127", "1130", - "1131" + "1133", + "1134" ], "location": { "end": { @@ -51631,12 +51631,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1131" + "1134" ], "coveredBy": [ - "1127", "1130", - "1131" + "1133", + "1134" ], "location": { "end": { @@ -51658,12 +51658,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1131" + "1134" ], "coveredBy": [ - "1127", "1130", - "1131" + "1133", + "1134" ], "location": { "end": { @@ -51685,12 +51685,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1131" + "1134" ], "coveredBy": [ - "1127", "1130", - "1131" + "1133", + "1134" ], "location": { "end": { @@ -51712,12 +51712,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1131" + "1134" ], "coveredBy": [ - "1127", "1130", - "1131" + "1133", + "1134" ], "location": { "end": { @@ -51739,12 +51739,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1131" + "1134" ], "coveredBy": [ - "1127", "1130", - "1131" + "1133", + "1134" ], "location": { "end": { @@ -51766,12 +51766,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1131" + "1134" ], "coveredBy": [ - "1127", "1130", - "1131" + "1133", + "1134" ], "location": { "end": { @@ -51793,13 +51793,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1128" + "1131" ], "coveredBy": [ - "1127", - "1128", - "1129", - "1130" + "1130", + "1131", + "1132", + "1133" ], "location": { "end": { @@ -51821,13 +51821,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1127" + "1130" ], "coveredBy": [ - "1127", - "1128", - "1129", - "1130" + "1130", + "1131", + "1132", + "1133" ], "location": { "end": { @@ -51849,13 +51849,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1128" + "1131" ], "coveredBy": [ - "1127", - "1128", - "1129", - "1130" + "1130", + "1131", + "1132", + "1133" ], "location": { "end": { @@ -51877,11 +51877,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1128" + "1131" ], "coveredBy": [ - "1128", - "1129" + "1131", + "1132" ], "location": { "end": { @@ -51903,11 +51903,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1128" + "1131" ], "coveredBy": [ - "1128", - "1129" + "1131", + "1132" ], "location": { "end": { @@ -51929,11 +51929,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1127" + "1130" ], "coveredBy": [ - "1127", - "1130" + "1130", + "1133" ], "location": { "end": { @@ -51961,18 +51961,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -51994,18 +51994,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "977" + "980" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52027,18 +52027,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "977" + "980" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52060,13 +52060,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "977" + "980" ], "coveredBy": [ - "977", - "978", - "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52088,13 +52088,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "977" + "980" ], "coveredBy": [ - "977", - "978", - "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52116,13 +52116,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "977" + "980" ], "coveredBy": [ - "977", - "978", - "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52144,18 +52144,18 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "979" + "982" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52177,13 +52177,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "979" + "982" ], "coveredBy": [ - "977", - "978", - "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52205,13 +52205,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "979" + "982" ], "coveredBy": [ - "977", - "978", - "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52233,13 +52233,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "979" + "982" ], "coveredBy": [ - "977", - "978", - "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52261,13 +52261,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "979" + "982" ], "coveredBy": [ - "977", - "978", - "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52289,13 +52289,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "979" + "982" ], "coveredBy": [ - "977", - "978", - "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52317,12 +52317,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "979" + "982" ], "coveredBy": [ - "977", - "979", - "980" + "980", + "982", + "983" ], "location": { "end": { @@ -52344,12 +52344,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "979" + "982" ], "coveredBy": [ - "977", - "979", - "980" + "980", + "982", + "983" ], "location": { "end": { @@ -52371,18 +52371,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52404,18 +52404,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "977" + "980" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52437,18 +52437,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "977" + "980" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52470,18 +52470,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52503,18 +52503,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52536,18 +52536,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52569,18 +52569,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "973" + "976" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52602,18 +52602,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52635,18 +52635,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52668,18 +52668,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52701,18 +52701,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52734,18 +52734,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "972" + "975" ], "coveredBy": [ - "972", - "973", - "974", "975", "976", "977", "978", "979", - "980" + "980", + "981", + "982", + "983" ], "location": { "end": { @@ -52767,13 +52767,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "973" + "976" ], "coveredBy": [ - "973", - "975", - "977", - "979" + "976", + "978", + "980", + "982" ], "location": { "end": { @@ -52801,12 +52801,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -52814,7 +52811,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -52836,12 +52836,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -52849,7 +52846,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -52871,12 +52871,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -52884,7 +52881,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -52906,12 +52906,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -52919,7 +52916,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -52941,12 +52941,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -52954,7 +52951,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -52976,12 +52976,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -52989,7 +52986,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53011,12 +53011,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1012" + "1015" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53024,7 +53021,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53046,12 +53046,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1012" + "1015" ], "coveredBy": [ - "1012", - "1017", - "1018" + "1015", + "1020", + "1021" ], "location": { "end": { @@ -53073,12 +53073,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1012" + "1015" ], "coveredBy": [ - "1012", - "1017", - "1018" + "1015", + "1020", + "1021" ], "location": { "end": { @@ -53100,12 +53100,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1010" + "1013" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53113,7 +53110,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53135,12 +53135,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53148,7 +53145,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53170,12 +53170,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53183,7 +53180,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53205,12 +53205,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53218,7 +53215,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53240,12 +53240,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53253,7 +53250,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53275,12 +53275,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1010" + "1013" ], "coveredBy": [ - "1010", "1013", - "1015" + "1016", + "1018" ], "location": { "end": { @@ -53302,12 +53302,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53315,7 +53312,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53337,12 +53337,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53350,7 +53347,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53372,12 +53372,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1009" + "1012" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53385,7 +53382,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53407,12 +53407,9 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "1018" + "1021" ], "coveredBy": [ - "1009", - "1010", - "1011", "1012", "1013", "1014", @@ -53420,7 +53417,10 @@ "1016", "1017", "1018", - "1019" + "1019", + "1020", + "1021", + "1022" ], "location": { "end": { @@ -53442,12 +53442,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1018" + "1021" ], "coveredBy": [ - "1012", - "1017", - "1018" + "1015", + "1020", + "1021" ], "location": { "end": { @@ -53469,12 +53469,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1018" + "1021" ], "coveredBy": [ - "1012", - "1017", - "1018" + "1015", + "1020", + "1021" ], "location": { "end": { @@ -53502,12 +53502,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -53531,7 +53528,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -53553,12 +53553,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -53582,7 +53579,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -53604,12 +53604,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -53633,7 +53630,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -53655,12 +53655,9 @@ "testsCompleted": 25, "static": false, "killedBy": [ - "322" + "325" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -53684,7 +53681,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -53706,10 +53706,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "322" + "325" ], "coveredBy": [ - "322" + "325" ], "location": { "end": { @@ -53731,12 +53731,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -53760,7 +53757,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -53782,12 +53782,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -53811,7 +53808,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -53833,12 +53833,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -53862,7 +53859,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -53884,12 +53884,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -53913,7 +53910,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -53935,12 +53935,9 @@ "testsCompleted": 25, "static": false, "killedBy": [ - "322" + "325" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -53964,7 +53961,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -53986,10 +53986,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "322" + "325" ], "coveredBy": [ - "322" + "325" ], "location": { "end": { @@ -54011,10 +54011,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "322" + "325" ], "coveredBy": [ - "322" + "325" ], "location": { "end": { @@ -54036,12 +54036,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54065,7 +54062,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54087,12 +54087,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54116,7 +54113,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54138,12 +54138,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54167,7 +54164,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54189,12 +54189,9 @@ "testsCompleted": 25, "static": false, "killedBy": [ - "322" + "325" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54218,7 +54215,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54240,10 +54240,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "322" + "325" ], "coveredBy": [ - "322" + "325" ], "location": { "end": { @@ -54265,10 +54265,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "322" + "325" ], "coveredBy": [ - "322" + "325" ], "location": { "end": { @@ -54290,12 +54290,9 @@ "testsCompleted": 26, "static": false, "killedBy": [ - "323" + "326" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54319,7 +54316,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54341,12 +54341,9 @@ "testsCompleted": 26, "static": false, "killedBy": [ - "323" + "326" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54370,7 +54367,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54392,12 +54392,9 @@ "testsCompleted": 27, "static": false, "killedBy": [ - "324" + "327" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54421,7 +54418,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54443,12 +54443,9 @@ "testsCompleted": 26, "static": false, "killedBy": [ - "323" + "326" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54472,7 +54469,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54494,12 +54494,9 @@ "testsCompleted": 27, "static": false, "killedBy": [ - "324" + "327" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54523,7 +54520,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54545,10 +54545,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "324" + "327" ], "coveredBy": [ - "324" + "327" ], "location": { "end": { @@ -54570,12 +54570,9 @@ "testsCompleted": 26, "static": false, "killedBy": [ - "323" + "326" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54599,7 +54596,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54621,12 +54621,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54650,7 +54647,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54672,12 +54672,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54701,7 +54698,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54723,12 +54723,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "298" + "301" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54752,7 +54749,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54774,12 +54774,9 @@ "testsCompleted": 26, "static": false, "killedBy": [ - "323" + "326" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54803,7 +54800,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -54825,12 +54825,9 @@ "testsCompleted": 26, "static": false, "killedBy": [ - "323" + "326" ], "coveredBy": [ - "298", - "299", - "300", "301", "302", "303", @@ -54854,7 +54851,10 @@ "321", "322", "323", - "324" + "324", + "325", + "326", + "327" ], "location": { "end": { @@ -56503,12 +56503,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "853" + "856" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56518,7 +56515,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56540,12 +56540,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "849" + "852" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56555,7 +56552,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56577,12 +56577,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "853" + "856" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56592,7 +56589,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56614,12 +56614,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "849" + "852" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56629,7 +56626,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56651,12 +56651,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "849" + "852" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56666,7 +56663,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56688,12 +56688,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "849" + "852" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56703,7 +56700,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56725,12 +56725,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "853" + "856" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56740,7 +56737,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56762,12 +56762,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "855" + "858" ], "coveredBy": [ - "853", - "855", - "856" + "856", + "858", + "859" ], "location": { "end": { @@ -56789,12 +56789,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "853" + "856" ], "coveredBy": [ - "853", - "855", - "856" + "856", + "858", + "859" ], "location": { "end": { @@ -56816,12 +56816,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "855" + "858" ], "coveredBy": [ - "853", - "855", - "856" + "856", + "858", + "859" ], "location": { "end": { @@ -56843,12 +56843,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "857" + "860" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56858,7 +56855,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56880,12 +56880,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "849" + "852" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56895,7 +56892,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56917,12 +56917,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "857" + "860" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56932,7 +56929,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56954,12 +56954,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "849" + "852" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -56969,7 +56966,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -56991,12 +56991,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "849" + "852" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -57006,7 +57003,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -57028,12 +57028,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "849" + "852" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -57043,7 +57040,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -57065,12 +57065,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "857" + "860" ], "coveredBy": [ - "849", - "850", - "851", "852", "853", "854", @@ -57080,7 +57077,10 @@ "858", "859", "860", - "861" + "861", + "862", + "863", + "864" ], "location": { "end": { @@ -57102,12 +57102,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "859" + "862" ], "coveredBy": [ - "857", - "859", - "860" + "860", + "862", + "863" ], "location": { "end": { @@ -57129,12 +57129,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "857" + "860" ], "coveredBy": [ - "857", - "859", - "860" + "860", + "862", + "863" ], "location": { "end": { @@ -57156,12 +57156,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "859" + "862" ], "coveredBy": [ - "857", - "859", - "860" + "860", + "862", + "863" ], "location": { "end": { @@ -57189,19 +57189,19 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1221" + "1224" ], "coveredBy": [ - "1220", - "1221", - "1222", "1223", "1224", "1225", "1226", "1227", "1228", - "1229" + "1229", + "1230", + "1231", + "1232" ], "location": { "end": { @@ -57223,14 +57223,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1225" + "1228" ], "coveredBy": [ - "1225", - "1226", - "1227", "1228", - "1229" + "1229", + "1230", + "1231", + "1232" ], "location": { "end": { @@ -57252,14 +57252,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1225" + "1228" ], "coveredBy": [ - "1225", - "1226", - "1227", "1228", - "1229" + "1229", + "1230", + "1231", + "1232" ], "location": { "end": { @@ -57281,10 +57281,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1229" + "1232" ], "coveredBy": [ - "1229" + "1232" ], "location": { "end": { @@ -57306,10 +57306,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1229" + "1232" ], "coveredBy": [ - "1229" + "1232" ], "location": { "end": { @@ -57355,11 +57355,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1674" + "1677" ], "coveredBy": [ - "1674", - "1675" + "1677", + "1678" ], "location": { "end": { @@ -57381,11 +57381,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1674" + "1677" ], "coveredBy": [ - "1674", - "1675" + "1677", + "1678" ], "location": { "end": { @@ -57413,18 +57413,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57446,18 +57446,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "935" + "938" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57479,18 +57479,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "933" + "936" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57512,18 +57512,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "933" + "936" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57545,18 +57545,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "933" + "936" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57578,18 +57578,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "933" + "936" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57611,18 +57611,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57644,18 +57644,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57677,18 +57677,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "933" + "936" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57710,18 +57710,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57743,18 +57743,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57776,18 +57776,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57809,18 +57809,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57842,18 +57842,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57875,18 +57875,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57908,18 +57908,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ - "930", - "931", - "932", "933", "934", "935", "936", "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -57941,14 +57941,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "933" + "936" ], "coveredBy": [ - "933", - "934", - "935", + "936", "937", - "938" + "938", + "940", + "941" ], "location": { "end": { @@ -57970,14 +57970,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "937" + "940" ], "coveredBy": [ - "933", - "934", - "935", + "936", "937", - "938" + "938", + "940", + "941" ], "location": { "end": { @@ -57999,14 +57999,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "937" + "940" ], "coveredBy": [ - "933", - "934", - "935", + "936", "937", - "938" + "938", + "940", + "941" ], "location": { "end": { @@ -58028,14 +58028,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "933" + "936" ], "coveredBy": [ - "933", - "934", - "935", + "936", "937", - "938" + "938", + "940", + "941" ], "location": { "end": { @@ -58057,14 +58057,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "934" + "937" ], "coveredBy": [ - "933", - "934", - "935", + "936", "937", - "938" + "938", + "940", + "941" ], "location": { "end": { @@ -58092,14 +58092,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1279" + "1282" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58121,14 +58121,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1279" + "1282" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58150,14 +58150,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1283" + "1286" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58179,14 +58179,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1279" + "1282" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58208,10 +58208,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1283" + "1286" ], "coveredBy": [ - "1283" + "1286" ], "location": { "end": { @@ -58233,10 +58233,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1283" + "1286" ], "coveredBy": [ - "1283" + "1286" ], "location": { "end": { @@ -58258,14 +58258,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1282" + "1285" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58287,14 +58287,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1279" + "1282" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58316,14 +58316,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1279" + "1282" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58345,14 +58345,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1279" + "1282" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58374,14 +58374,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1279" + "1282" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58403,14 +58403,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1279" + "1282" ], "coveredBy": [ - "1279", - "1280", - "1281", "1282", - "1283" + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { @@ -58432,10 +58432,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1282" + "1285" ], "coveredBy": [ - "1282" + "1285" ], "location": { "end": { @@ -58463,12 +58463,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "523" + "526" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58476,7 +58473,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58498,12 +58498,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "523" + "526" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58511,7 +58508,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58533,10 +58533,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "530" + "533" ], "coveredBy": [ - "530" + "533" ], "location": { "end": { @@ -58558,12 +58558,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "523" + "526" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58571,7 +58568,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58593,12 +58593,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "531" + "534" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58606,7 +58603,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58628,12 +58628,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "523" + "526" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58641,7 +58638,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58663,12 +58663,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "531" + "534" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58676,7 +58673,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58698,12 +58698,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "523" + "526" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58711,7 +58708,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58733,12 +58733,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58746,7 +58743,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58768,12 +58768,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58781,7 +58778,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58803,12 +58803,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58816,7 +58813,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58838,12 +58838,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58851,7 +58848,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58873,12 +58873,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "523" + "526" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58886,7 +58883,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58908,12 +58908,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58921,7 +58918,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58943,12 +58943,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58956,7 +58953,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -58978,12 +58978,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -58991,7 +58988,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59013,12 +59013,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59026,7 +59023,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59048,12 +59048,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59061,7 +59058,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59083,12 +59083,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59096,7 +59093,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59118,12 +59118,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59131,7 +59128,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59153,12 +59153,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59166,7 +59163,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59188,12 +59188,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59201,7 +59198,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59223,12 +59223,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59236,7 +59233,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59258,12 +59258,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59271,7 +59268,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59293,12 +59293,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59306,7 +59303,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59328,12 +59328,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "526" + "529" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59341,7 +59338,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59363,12 +59363,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59376,7 +59373,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59398,12 +59398,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59411,7 +59408,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59433,12 +59433,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59446,7 +59443,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59468,12 +59468,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59481,7 +59478,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59503,12 +59503,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59516,7 +59513,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59538,12 +59538,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59551,7 +59548,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59573,12 +59573,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59586,7 +59583,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59608,12 +59608,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59621,7 +59618,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59643,12 +59643,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59656,7 +59653,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59678,12 +59678,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59691,7 +59688,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59713,12 +59713,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59726,7 +59723,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59748,12 +59748,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59761,7 +59758,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59783,12 +59783,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59796,7 +59793,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59818,12 +59818,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "525" + "528" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -59831,7 +59828,10 @@ "530", "531", "532", - "533" + "533", + "534", + "535", + "536" ], "location": { "end": { @@ -59853,10 +59853,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "533" + "536" ], "coveredBy": [ - "533" + "536" ], "location": { "end": { @@ -59878,10 +59878,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "533" + "536" ], "coveredBy": [ - "533" + "536" ], "location": { "end": { @@ -59903,10 +59903,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "533" + "536" ], "coveredBy": [ - "533" + "536" ], "location": { "end": { @@ -59928,10 +59928,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "533" + "536" ], "coveredBy": [ - "533" + "536" ], "location": { "end": { @@ -59953,10 +59953,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "533" + "536" ], "coveredBy": [ - "533" + "536" ], "location": { "end": { @@ -59978,10 +59978,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "533" + "536" ], "coveredBy": [ - "533" + "536" ], "location": { "end": { @@ -60009,12 +60009,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "821" + "824" ], "coveredBy": [ - "815", - "816", - "817", "818", "819", "820", @@ -60022,7 +60019,10 @@ "822", "823", "824", - "825" + "825", + "826", + "827", + "828" ], "location": { "end": { @@ -60044,12 +60044,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "817" + "820" ], "coveredBy": [ - "815", - "816", - "817", "818", "819", "820", @@ -60057,7 +60054,10 @@ "822", "823", "824", - "825" + "825", + "826", + "827", + "828" ], "location": { "end": { @@ -60079,11 +60079,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "824" + "827" ], "coveredBy": [ - "824", - "825" + "827", + "828" ], "location": { "end": { @@ -60105,11 +60105,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "824" + "827" ], "coveredBy": [ - "824", - "825" + "827", + "828" ], "location": { "end": { @@ -60131,12 +60131,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "823" + "826" ], "coveredBy": [ - "817", - "822", - "823" + "820", + "825", + "826" ], "location": { "end": { @@ -60158,12 +60158,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "823" + "826" ], "coveredBy": [ - "817", - "822", - "823" + "820", + "825", + "826" ], "location": { "end": { @@ -60185,12 +60185,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "823" + "826" ], "coveredBy": [ - "817", - "822", - "823" + "820", + "825", + "826" ], "location": { "end": { @@ -60212,12 +60212,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "823" + "826" ], "coveredBy": [ - "817", - "822", - "823" + "820", + "825", + "826" ], "location": { "end": { @@ -60239,12 +60239,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "823" + "826" ], "coveredBy": [ - "817", - "822", - "823" + "820", + "825", + "826" ], "location": { "end": { @@ -60266,12 +60266,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "823" + "826" ], "coveredBy": [ - "817", - "822", - "823" + "820", + "825", + "826" ], "location": { "end": { @@ -60293,12 +60293,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "823" + "826" ], "coveredBy": [ - "817", - "822", - "823" + "820", + "825", + "826" ], "location": { "end": { @@ -60320,15 +60320,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "818" + "821" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60350,15 +60350,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "817" + "820" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60380,15 +60380,15 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "820" + "823" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60410,15 +60410,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "817" + "820" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60440,15 +60440,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "817" + "820" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60470,15 +60470,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "818" + "821" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60500,15 +60500,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "817" + "820" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60530,15 +60530,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "818" + "821" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60560,15 +60560,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "817" + "820" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60590,15 +60590,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "818" + "821" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60620,15 +60620,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "818" + "821" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60650,15 +60650,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "818" + "821" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60680,15 +60680,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "818" + "821" ], "coveredBy": [ - "817", - "818", - "819", "820", "821", - "822" + "822", + "823", + "824", + "825" ], "location": { "end": { @@ -60710,13 +60710,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "818" + "821" ], "coveredBy": [ - "818", - "819", - "820", - "821" + "821", + "822", + "823", + "824" ], "location": { "end": { @@ -60738,13 +60738,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "818" + "821" ], "coveredBy": [ - "818", - "819", - "820", - "821" + "821", + "822", + "823", + "824" ], "location": { "end": { @@ -60766,11 +60766,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "817" + "820" ], "coveredBy": [ - "817", - "822" + "820", + "825" ], "location": { "end": { @@ -60798,10 +60798,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1855" + "1858" ], "coveredBy": [ - "1855" + "1858" ], "location": { "end": { @@ -60823,10 +60823,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1855" + "1858" ], "coveredBy": [ - "1855" + "1858" ], "location": { "end": { @@ -60848,10 +60848,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1856" + "1859" ], "coveredBy": [ - "1856" + "1859" ], "location": { "end": { @@ -60873,10 +60873,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1856" + "1859" ], "coveredBy": [ - "1856" + "1859" ], "location": { "end": { @@ -60898,10 +60898,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1857" + "1860" ], "coveredBy": [ - "1857" + "1860" ], "location": { "end": { @@ -60923,10 +60923,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1857" + "1860" ], "coveredBy": [ - "1857" + "1860" ], "location": { "end": { @@ -60948,10 +60948,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1858" + "1861" ], "coveredBy": [ - "1858" + "1861" ], "location": { "end": { @@ -60973,10 +60973,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1858" + "1861" ], "coveredBy": [ - "1858" + "1861" ], "location": { "end": { @@ -61004,12 +61004,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61022,7 +61019,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61044,12 +61044,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61062,7 +61059,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61084,11 +61084,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "472" + "475" ], "coveredBy": [ - "470", - "472" + "473", + "475" ], "location": { "end": { @@ -61110,12 +61110,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61128,7 +61125,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61150,12 +61150,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "469" + "472" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61168,7 +61165,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61190,12 +61190,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "469" + "472" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61208,7 +61205,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61230,12 +61230,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61248,7 +61245,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61270,12 +61270,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "474" + "477" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61288,7 +61285,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61310,12 +61310,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61328,7 +61325,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61350,12 +61350,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61368,7 +61365,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61390,12 +61390,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61408,7 +61405,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61430,12 +61430,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61448,7 +61445,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61470,12 +61470,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61488,7 +61485,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61510,12 +61510,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "468" + "471" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61528,7 +61525,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61550,12 +61550,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61568,7 +61565,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61590,12 +61590,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61608,7 +61605,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61630,12 +61630,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "466" + "469" ], "coveredBy": [ - "466", - "467", - "468", "469", "470", "471", @@ -61648,7 +61645,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61670,16 +61670,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "475" + "478" ], "coveredBy": [ - "475", - "476", - "477", "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61701,16 +61701,16 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "480" + "483" ], "coveredBy": [ - "475", - "476", - "477", "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61732,16 +61732,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "475" + "478" ], "coveredBy": [ - "475", - "476", - "477", "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61763,16 +61763,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "475" + "478" ], "coveredBy": [ - "475", - "476", - "477", "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61794,16 +61794,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "475" + "478" ], "coveredBy": [ - "475", - "476", - "477", "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61825,16 +61825,16 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "477" + "480" ], "coveredBy": [ - "475", - "476", - "477", "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61856,16 +61856,16 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "476" + "479" ], "coveredBy": [ - "475", - "476", - "477", "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61887,16 +61887,16 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "476" + "479" ], "coveredBy": [ - "475", - "476", - "477", "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61918,14 +61918,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "476" + "479" ], "coveredBy": [ - "475", - "476", "478", - "480", - "481" + "479", + "481", + "483", + "484" ], "location": { "end": { @@ -61947,16 +61947,16 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "481" + "484" ], "coveredBy": [ - "475", - "476", - "477", "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -61984,12 +61984,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "325" + "328" ], "coveredBy": [ - "325", - "326", - "327", "328", "329", "330", @@ -62004,7 +62001,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -62026,12 +62026,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "325" + "328" ], "coveredBy": [ - "325", - "326", - "327", "328", "329", "330", @@ -62046,7 +62043,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -62068,12 +62068,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "325" + "328" ], "coveredBy": [ - "325", - "326", - "327", "328", "329", "330", @@ -62088,7 +62085,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -62110,12 +62110,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "330" + "333" ], "coveredBy": [ - "325", - "326", - "327", "328", "329", "330", @@ -62130,7 +62127,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -62152,12 +62152,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "325" + "328" ], "coveredBy": [ - "325", - "326", - "327", "328", "329", "330", @@ -62172,7 +62169,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -62194,12 +62194,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "325" + "328" ], "coveredBy": [ - "325", - "326", - "327", "328", "329", "330", @@ -62214,7 +62211,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -62236,12 +62236,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "325" + "328" ], "coveredBy": [ - "325", - "326", - "327", "328", "329", "330", @@ -62256,7 +62253,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -62278,11 +62278,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "331" + "334" ], "coveredBy": [ - "331", - "332" + "334", + "335" ], "location": { "end": { @@ -62304,11 +62304,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "331" + "334" ], "coveredBy": [ - "331", - "332" + "334", + "335" ], "location": { "end": { @@ -62330,11 +62330,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "331" + "334" ], "coveredBy": [ - "331", - "332" + "334", + "335" ], "location": { "end": { @@ -62356,11 +62356,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "332" + "335" ], "coveredBy": [ - "331", - "332" + "334", + "335" ], "location": { "end": { @@ -62382,10 +62382,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "332" + "335" ], "coveredBy": [ - "332" + "335" ], "location": { "end": { @@ -62407,10 +62407,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "332" + "335" ], "coveredBy": [ - "332" + "335" ], "location": { "end": { @@ -62432,15 +62432,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "333" + "336" ], "coveredBy": [ - "333", - "334", - "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -62462,15 +62462,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "337" + "340" ], "coveredBy": [ - "333", - "334", - "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -62492,15 +62492,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "338" + "341" ], "coveredBy": [ - "333", - "334", - "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -62522,15 +62522,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "334" + "337" ], "coveredBy": [ - "333", - "334", - "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -62552,11 +62552,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "334" + "337" ], "coveredBy": [ - "334", - "335" + "337", + "338" ], "location": { "end": { @@ -62578,11 +62578,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "334" + "337" ], "coveredBy": [ - "334", - "335" + "337", + "338" ], "location": { "end": { @@ -62604,11 +62604,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "335" + "338" ], "coveredBy": [ - "334", - "335" + "337", + "338" ], "location": { "end": { @@ -62630,11 +62630,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "335" + "338" ], "coveredBy": [ - "334", - "335" + "337", + "338" ], "location": { "end": { @@ -62656,15 +62656,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "338" + "341" ], "coveredBy": [ - "333", - "334", - "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -62686,10 +62686,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "339" + "342" ], "coveredBy": [ - "339" + "342" ], "location": { "end": { @@ -62711,10 +62711,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "339" + "342" ], "coveredBy": [ - "339" + "342" ], "location": { "end": { @@ -62736,10 +62736,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "340" + "343" ], "coveredBy": [ - "340" + "343" ], "location": { "end": { @@ -62761,10 +62761,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "340" + "343" ], "coveredBy": [ - "340" + "343" ], "location": { "end": { @@ -62786,10 +62786,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "341" + "344" ], "coveredBy": [ - "341" + "344" ], "location": { "end": { @@ -62811,10 +62811,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "341" + "344" ], "coveredBy": [ - "341" + "344" ], "location": { "end": { @@ -62836,10 +62836,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "342" + "345" ], "coveredBy": [ - "342" + "345" ], "location": { "end": { @@ -62861,10 +62861,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "342" + "345" ], "coveredBy": [ - "342" + "345" ], "location": { "end": { @@ -62892,12 +62892,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "371" + "374" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -62913,7 +62910,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -62935,12 +62935,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -62956,7 +62953,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -62978,12 +62978,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "371" + "374" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -62999,7 +62996,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63021,12 +63021,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63042,7 +63039,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63064,12 +63064,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63085,7 +63082,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63107,12 +63107,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "371" + "374" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63128,7 +63125,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63150,12 +63150,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "372" + "375" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63171,7 +63168,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63193,12 +63193,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63214,7 +63211,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63236,12 +63236,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "372" + "375" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63257,7 +63254,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63279,12 +63279,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63300,7 +63297,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63322,12 +63322,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63343,7 +63340,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63365,12 +63365,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "372" + "375" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63386,7 +63383,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63408,12 +63408,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "373" + "376" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63429,7 +63426,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63451,12 +63451,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63472,7 +63469,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63494,12 +63494,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "373" + "376" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63515,7 +63512,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63537,12 +63537,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63558,7 +63555,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63580,12 +63580,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63601,7 +63598,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63623,12 +63623,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "368" + "371" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63644,7 +63641,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63666,12 +63666,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63687,7 +63684,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63709,12 +63709,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "370" + "373" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63730,7 +63727,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63752,12 +63752,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "371" + "374" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63773,7 +63770,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63795,12 +63795,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "372" + "375" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63816,7 +63813,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63838,12 +63838,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "373" + "376" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63859,7 +63856,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63881,12 +63881,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63902,7 +63899,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63924,12 +63924,9 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "377" + "380" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -63945,7 +63942,10 @@ "383", "384", "385", - "386" + "386", + "387", + "388", + "389" ], "location": { "end": { @@ -63967,11 +63967,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "374" + "377" ], "coveredBy": [ - "374", - "375" + "377", + "378" ], "location": { "end": { @@ -63993,11 +63993,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "375" + "378" ], "coveredBy": [ - "374", - "375" + "377", + "378" ], "location": { "end": { @@ -64019,11 +64019,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "375" + "378" ], "coveredBy": [ - "374", - "375" + "377", + "378" ], "location": { "end": { @@ -64045,11 +64045,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "375" + "378" ], "coveredBy": [ - "374", - "375" + "377", + "378" ], "location": { "end": { @@ -64071,11 +64071,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "376" + "379" ], "coveredBy": [ - "376", - "377" + "379", + "380" ], "location": { "end": { @@ -64097,11 +64097,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "376" + "379" ], "coveredBy": [ - "376", - "377" + "379", + "380" ], "location": { "end": { @@ -64123,10 +64123,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "378" + "381" ], "coveredBy": [ - "378" + "381" ], "location": { "end": { @@ -64148,10 +64148,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "378" + "381" ], "coveredBy": [ - "378" + "381" ], "location": { "end": { @@ -64173,11 +64173,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "379" + "382" ], "coveredBy": [ - "379", - "380" + "382", + "383" ], "location": { "end": { @@ -64199,11 +64199,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "380" + "383" ], "coveredBy": [ - "379", - "380" + "382", + "383" ], "location": { "end": { @@ -64225,11 +64225,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "381" + "384" ], "coveredBy": [ - "381", - "382" + "384", + "385" ], "location": { "end": { @@ -64251,11 +64251,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "382" + "385" ], "coveredBy": [ - "381", - "382" + "384", + "385" ], "location": { "end": { @@ -64277,11 +64277,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "383" + "386" ], "coveredBy": [ - "383", - "384" + "386", + "387" ], "location": { "end": { @@ -64303,11 +64303,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "384" + "387" ], "coveredBy": [ - "383", - "384" + "386", + "387" ], "location": { "end": { @@ -64329,11 +64329,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "385" + "388" ], "coveredBy": [ - "385", - "386" + "388", + "389" ], "location": { "end": { @@ -64355,11 +64355,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "386" + "389" ], "coveredBy": [ - "385", - "386" + "388", + "389" ], "location": { "end": { @@ -64405,10 +64405,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1097" + "1100" ], "coveredBy": [ - "1097" + "1100" ], "location": { "end": { @@ -64430,10 +64430,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1097" + "1100" ], "coveredBy": [ - "1097" + "1100" ], "location": { "end": { @@ -64455,10 +64455,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1098" + "1101" ], "coveredBy": [ - "1098" + "1101" ], "location": { "end": { @@ -64480,10 +64480,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1098" + "1101" ], "coveredBy": [ - "1098" + "1101" ], "location": { "end": { @@ -64505,10 +64505,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1099" + "1102" ], "coveredBy": [ - "1099" + "1102" ], "location": { "end": { @@ -64530,10 +64530,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1099" + "1102" ], "coveredBy": [ - "1099" + "1102" ], "location": { "end": { @@ -64555,10 +64555,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1100" + "1103" ], "coveredBy": [ - "1100" + "1103" ], "location": { "end": { @@ -64580,10 +64580,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1100" + "1103" ], "coveredBy": [ - "1100" + "1103" ], "location": { "end": { @@ -64605,10 +64605,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1101" + "1104" ], "coveredBy": [ - "1101" + "1104" ], "location": { "end": { @@ -64630,10 +64630,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1101" + "1104" ], "coveredBy": [ - "1101" + "1104" ], "location": { "end": { @@ -64655,10 +64655,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1103" + "1106" ], "coveredBy": [ - "1103" + "1106" ], "location": { "end": { @@ -64680,10 +64680,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1103" + "1106" ], "coveredBy": [ - "1103" + "1106" ], "location": { "end": { @@ -64705,10 +64705,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1104" + "1107" ], "coveredBy": [ - "1104" + "1107" ], "location": { "end": { @@ -64730,10 +64730,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1104" + "1107" ], "coveredBy": [ - "1104" + "1107" ], "location": { "end": { @@ -64761,19 +64761,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1150" + "1153" ], "coveredBy": [ - "1150", - "1151", - "1152", "1153", "1154", "1155", "1156", "1157", "1158", - "1159" + "1159", + "1160", + "1161", + "1162" ], "location": { "end": { @@ -64795,19 +64795,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1150" + "1153" ], "coveredBy": [ - "1150", - "1151", - "1152", "1153", "1154", "1155", "1156", "1157", "1158", - "1159" + "1159", + "1160", + "1161", + "1162" ], "location": { "end": { @@ -64829,19 +64829,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1150" + "1153" ], "coveredBy": [ - "1150", - "1151", - "1152", "1153", "1154", "1155", "1156", "1157", "1158", - "1159" + "1159", + "1160", + "1161", + "1162" ], "location": { "end": { @@ -64863,19 +64863,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1150" + "1153" ], "coveredBy": [ - "1150", - "1151", - "1152", "1153", "1154", "1155", "1156", "1157", "1158", - "1159" + "1159", + "1160", + "1161", + "1162" ], "location": { "end": { @@ -64897,10 +64897,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1159" + "1162" ], "coveredBy": [ - "1159" + "1162" ], "location": { "end": { @@ -64922,10 +64922,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1159" + "1162" ], "coveredBy": [ - "1159" + "1162" ], "location": { "end": { @@ -64947,10 +64947,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1157" + "1160" ], "coveredBy": [ - "1157" + "1160" ], "location": { "end": { @@ -64972,10 +64972,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1157" + "1160" ], "coveredBy": [ - "1157" + "1160" ], "location": { "end": { @@ -65003,12 +65003,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "711" + "714" ], "coveredBy": [ - "711", - "712", - "713", "714", "715", "716", @@ -65016,7 +65013,10 @@ "718", "719", "720", - "721" + "721", + "722", + "723", + "724" ], "location": { "end": { @@ -65038,12 +65038,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "711" + "714" ], "coveredBy": [ - "711", - "712", - "713", "714", "715", "716", @@ -65051,7 +65048,10 @@ "718", "719", "720", - "721" + "721", + "722", + "723", + "724" ], "location": { "end": { @@ -65073,10 +65073,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "717" + "720" ], "coveredBy": [ - "717" + "720" ], "location": { "end": { @@ -65098,10 +65098,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "717" + "720" ], "coveredBy": [ - "717" + "720" ], "location": { "end": { @@ -65123,10 +65123,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "718" + "721" ], "coveredBy": [ - "718" + "721" ], "location": { "end": { @@ -65148,10 +65148,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "718" + "721" ], "coveredBy": [ - "718" + "721" ], "location": { "end": { @@ -65173,10 +65173,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "719" + "722" ], "coveredBy": [ - "719" + "722" ], "location": { "end": { @@ -65198,10 +65198,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "719" + "722" ], "coveredBy": [ - "719" + "722" ], "location": { "end": { @@ -65223,10 +65223,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "720" + "723" ], "coveredBy": [ - "720" + "723" ], "location": { "end": { @@ -65248,10 +65248,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "720" + "723" ], "coveredBy": [ - "720" + "723" ], "location": { "end": { @@ -65273,10 +65273,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "721" + "724" ], "coveredBy": [ - "721" + "724" ], "location": { "end": { @@ -65298,10 +65298,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "721" + "724" ], "coveredBy": [ - "721" + "724" ], "location": { "end": { @@ -65329,12 +65329,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1255" + "1258" ], "coveredBy": [ - "1254", - "1255", - "1256" + "1257", + "1258", + "1259" ], "location": { "end": { @@ -65356,12 +65356,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1255" + "1258" ], "coveredBy": [ - "1254", - "1255", - "1256" + "1257", + "1258", + "1259" ], "location": { "end": { @@ -65383,12 +65383,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1254" + "1257" ], "coveredBy": [ - "1254", - "1255", - "1256" + "1257", + "1258", + "1259" ], "location": { "end": { @@ -65410,12 +65410,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1254" + "1257" ], "coveredBy": [ - "1254", - "1255", - "1256" + "1257", + "1258", + "1259" ], "location": { "end": { @@ -65437,10 +65437,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1254" + "1257" ], "coveredBy": [ - "1254" + "1257" ], "location": { "end": { @@ -65462,11 +65462,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1255" + "1258" ], "coveredBy": [ - "1255", - "1256" + "1258", + "1259" ], "location": { "end": { @@ -65488,11 +65488,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1256" + "1259" ], "coveredBy": [ - "1255", - "1256" + "1258", + "1259" ], "location": { "end": { @@ -65514,11 +65514,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1255" + "1258" ], "coveredBy": [ - "1255", - "1256" + "1258", + "1259" ], "location": { "end": { @@ -65540,11 +65540,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1256" + "1259" ], "coveredBy": [ - "1255", - "1256" + "1258", + "1259" ], "location": { "end": { @@ -65566,10 +65566,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1256" + "1259" ], "coveredBy": [ - "1256" + "1259" ], "location": { "end": { @@ -65591,10 +65591,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1256" + "1259" ], "coveredBy": [ - "1256" + "1259" ], "location": { "end": { @@ -65622,18 +65622,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1296" + "1299" ], "coveredBy": [ - "1296", - "1297", - "1298", "1299", "1300", "1301", "1302", "1303", - "1304" + "1304", + "1305", + "1306", + "1307" ], "location": { "end": { @@ -65655,18 +65655,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1296" + "1299" ], "coveredBy": [ - "1296", - "1297", - "1298", "1299", "1300", "1301", "1302", "1303", - "1304" + "1304", + "1305", + "1306", + "1307" ], "location": { "end": { @@ -65688,18 +65688,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1296" + "1299" ], "coveredBy": [ - "1296", - "1297", - "1298", "1299", "1300", "1301", "1302", "1303", - "1304" + "1304", + "1305", + "1306", + "1307" ], "location": { "end": { @@ -65721,18 +65721,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1296" + "1299" ], "coveredBy": [ - "1296", - "1297", - "1298", "1299", "1300", "1301", "1302", "1303", - "1304" + "1304", + "1305", + "1306", + "1307" ], "location": { "end": { @@ -65754,10 +65754,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1302" + "1305" ], "coveredBy": [ - "1302" + "1305" ], "location": { "end": { @@ -65779,10 +65779,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1302" + "1305" ], "coveredBy": [ - "1302" + "1305" ], "location": { "end": { @@ -65804,10 +65804,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1304" + "1307" ], "coveredBy": [ - "1304" + "1307" ], "location": { "end": { @@ -65829,10 +65829,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1304" + "1307" ], "coveredBy": [ - "1304" + "1307" ], "location": { "end": { @@ -65860,10 +65860,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1649" + "1652" ], "coveredBy": [ - "1649" + "1652" ], "location": { "end": { @@ -65885,10 +65885,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1649" + "1652" ], "coveredBy": [ - "1649" + "1652" ], "location": { "end": { @@ -65910,10 +65910,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1647" + "1650" ], "coveredBy": [ - "1647" + "1650" ], "location": { "end": { @@ -65935,10 +65935,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1647" + "1650" ], "coveredBy": [ - "1647" + "1650" ], "location": { "end": { @@ -65966,19 +65966,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1140" + "1143" ], "coveredBy": [ - "1140", - "1141", - "1142", "1143", "1144", "1145", "1146", "1147", "1148", - "1149" + "1149", + "1150", + "1151", + "1152" ], "location": { "end": { @@ -66000,19 +66000,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1140" + "1143" ], "coveredBy": [ - "1140", - "1141", - "1142", "1143", "1144", "1145", "1146", "1147", "1148", - "1149" + "1149", + "1150", + "1151", + "1152" ], "location": { "end": { @@ -66034,19 +66034,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1140" + "1143" ], "coveredBy": [ - "1140", - "1141", - "1142", "1143", "1144", "1145", "1146", "1147", "1148", - "1149" + "1149", + "1150", + "1151", + "1152" ], "location": { "end": { @@ -66068,19 +66068,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1140" + "1143" ], "coveredBy": [ - "1140", - "1141", - "1142", "1143", "1144", "1145", "1146", "1147", "1148", - "1149" + "1149", + "1150", + "1151", + "1152" ], "location": { "end": { @@ -66102,10 +66102,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1149" + "1152" ], "coveredBy": [ - "1149" + "1152" ], "location": { "end": { @@ -66127,10 +66127,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1149" + "1152" ], "coveredBy": [ - "1149" + "1152" ], "location": { "end": { @@ -66152,10 +66152,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1147" + "1150" ], "coveredBy": [ - "1147" + "1150" ], "location": { "end": { @@ -66177,10 +66177,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1147" + "1150" ], "coveredBy": [ - "1147" + "1150" ], "location": { "end": { @@ -66208,12 +66208,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66224,7 +66221,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66246,12 +66246,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66262,7 +66259,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66284,12 +66284,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "873" + "876" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66300,7 +66297,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66322,12 +66322,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66338,7 +66335,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66360,12 +66360,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66376,7 +66373,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66398,12 +66398,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66414,7 +66411,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66436,12 +66436,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66452,7 +66449,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66474,12 +66474,9 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "867" + "870" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66490,7 +66487,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66512,12 +66512,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66528,7 +66525,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66550,12 +66550,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66566,7 +66563,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66588,12 +66588,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66604,7 +66601,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66626,12 +66626,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66642,7 +66639,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66664,12 +66664,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66680,7 +66677,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66702,14 +66702,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "867" + "870" ], "coveredBy": [ - "866", - "867", - "868", - "873", - "874" + "869", + "870", + "871", + "876", + "877" ], "location": { "end": { @@ -66731,12 +66731,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66747,7 +66744,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66769,12 +66769,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "866" + "869" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66785,7 +66782,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66807,12 +66807,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66823,7 +66820,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66845,12 +66845,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66861,7 +66858,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66883,12 +66883,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66899,7 +66896,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66921,12 +66921,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66937,7 +66934,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66959,12 +66959,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -66975,7 +66972,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -66997,12 +66997,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -67013,7 +67010,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -67035,12 +67035,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "862" + "865" ], "coveredBy": [ - "862", - "863", - "864", "865", "866", "867", @@ -67051,7 +67048,10 @@ "872", "873", "874", - "875" + "875", + "876", + "877", + "878" ], "location": { "end": { @@ -67073,14 +67073,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "866" + "869" ], "coveredBy": [ - "866", - "867", - "868", - "873", - "874" + "869", + "870", + "871", + "876", + "877" ], "location": { "end": { @@ -67102,14 +67102,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "866" + "869" ], "coveredBy": [ - "866", - "867", - "868", - "873", - "874" + "869", + "870", + "871", + "876", + "877" ], "location": { "end": { @@ -67131,14 +67131,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "868" + "871" ], "coveredBy": [ - "866", - "867", - "868", - "873", - "874" + "869", + "870", + "871", + "876", + "877" ], "location": { "end": { @@ -67160,10 +67160,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "865" + "868" ], "coveredBy": [ - "865" + "868" ], "location": { "end": { @@ -67185,10 +67185,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "865" + "868" ], "coveredBy": [ - "865" + "868" ], "location": { "end": { @@ -67210,10 +67210,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "863" + "866" ], "coveredBy": [ - "863" + "866" ], "location": { "end": { @@ -67235,10 +67235,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "863" + "866" ], "coveredBy": [ - "863" + "866" ], "location": { "end": { @@ -67266,12 +67266,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "549" + "552" ], "coveredBy": [ - "549", - "550", - "551", "552", "553", "554", @@ -67287,7 +67284,10 @@ "564", "565", "566", - "567" + "567", + "568", + "569", + "570" ], "location": { "end": { @@ -67309,15 +67309,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "553" + "556" ], "coveredBy": [ - "553", - "554", - "555", "556", "557", - "558" + "558", + "559", + "560", + "561" ], "location": { "end": { @@ -67339,15 +67339,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "557" + "560" ], "coveredBy": [ - "553", - "554", - "555", "556", "557", - "558" + "558", + "559", + "560", + "561" ], "location": { "end": { @@ -67369,15 +67369,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "553" + "556" ], "coveredBy": [ - "553", - "554", - "555", "556", "557", - "558" + "558", + "559", + "560", + "561" ], "location": { "end": { @@ -67399,15 +67399,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "553" + "556" ], "coveredBy": [ - "553", - "554", - "555", "556", "557", - "558" + "558", + "559", + "560", + "561" ], "location": { "end": { @@ -67429,10 +67429,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "553" + "556" ], "coveredBy": [ - "553" + "556" ], "location": { "end": { @@ -67454,10 +67454,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "553" + "556" ], "coveredBy": [ - "553" + "556" ], "location": { "end": { @@ -67479,14 +67479,14 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "557" + "560" ], "coveredBy": [ - "554", - "555", - "556", "557", - "558" + "558", + "559", + "560", + "561" ], "location": { "end": { @@ -67508,14 +67508,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "554" + "557" ], "coveredBy": [ - "554", - "555", - "556", "557", - "558" + "558", + "559", + "560", + "561" ], "location": { "end": { @@ -67537,11 +67537,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "554" + "557" ], "coveredBy": [ - "554", - "555" + "557", + "558" ], "location": { "end": { @@ -67563,12 +67563,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "556" + "559" ], "coveredBy": [ - "556", - "557", - "558" + "559", + "560", + "561" ], "location": { "end": { @@ -67590,12 +67590,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "558" + "561" ], "coveredBy": [ - "556", - "557", - "558" + "559", + "560", + "561" ], "location": { "end": { @@ -67617,12 +67617,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "556" + "559" ], "coveredBy": [ - "556", - "557", - "558" + "559", + "560", + "561" ], "location": { "end": { @@ -67644,12 +67644,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "557" + "560" ], "coveredBy": [ - "556", - "557", - "558" + "559", + "560", + "561" ], "location": { "end": { @@ -67671,12 +67671,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "556" + "559" ], "coveredBy": [ - "556", - "557", - "558" + "559", + "560", + "561" ], "location": { "end": { @@ -67698,10 +67698,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "556" + "559" ], "coveredBy": [ - "556" + "559" ], "location": { "end": { @@ -67723,11 +67723,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "557" + "560" ], "coveredBy": [ - "557", - "558" + "560", + "561" ], "location": { "end": { @@ -67749,10 +67749,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "559" + "562" ], "coveredBy": [ - "559" + "562" ], "location": { "end": { @@ -67774,10 +67774,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "559" + "562" ], "coveredBy": [ - "559" + "562" ], "location": { "end": { @@ -67799,10 +67799,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "560" + "563" ], "coveredBy": [ - "560" + "563" ], "location": { "end": { @@ -67824,10 +67824,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "560" + "563" ], "coveredBy": [ - "560" + "563" ], "location": { "end": { @@ -67849,10 +67849,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "567" + "570" ], "coveredBy": [ - "567" + "570" ], "location": { "end": { @@ -67874,10 +67874,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "567" + "570" ], "coveredBy": [ - "567" + "570" ], "location": { "end": { @@ -67899,11 +67899,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "561" + "564" ], "coveredBy": [ - "561", - "564" + "564", + "567" ], "location": { "end": { @@ -67925,11 +67925,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "564" + "567" ], "coveredBy": [ - "561", - "564" + "564", + "567" ], "location": { "end": { @@ -67951,11 +67951,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "561" + "564" ], "coveredBy": [ - "561", - "564" + "564", + "567" ], "location": { "end": { @@ -67977,11 +67977,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "561" + "564" ], "coveredBy": [ - "561", - "564" + "564", + "567" ], "location": { "end": { @@ -68003,10 +68003,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "561" + "564" ], "coveredBy": [ - "561" + "564" ], "location": { "end": { @@ -68028,10 +68028,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "561" + "564" ], "coveredBy": [ - "561" + "564" ], "location": { "end": { @@ -68053,11 +68053,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "562" + "565" ], "coveredBy": [ - "562", - "565" + "565", + "568" ], "location": { "end": { @@ -68079,11 +68079,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "565" + "568" ], "coveredBy": [ - "562", - "565" + "565", + "568" ], "location": { "end": { @@ -68105,11 +68105,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "562" + "565" ], "coveredBy": [ - "562", - "565" + "565", + "568" ], "location": { "end": { @@ -68131,11 +68131,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "562" + "565" ], "coveredBy": [ - "562", - "565" + "565", + "568" ], "location": { "end": { @@ -68157,10 +68157,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "562" + "565" ], "coveredBy": [ - "562" + "565" ], "location": { "end": { @@ -68182,10 +68182,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "562" + "565" ], "coveredBy": [ - "562" + "565" ], "location": { "end": { @@ -68207,11 +68207,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "563" + "566" ], "coveredBy": [ - "563", - "566" + "566", + "569" ], "location": { "end": { @@ -68233,11 +68233,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "566" + "569" ], "coveredBy": [ - "563", - "566" + "566", + "569" ], "location": { "end": { @@ -68259,11 +68259,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "563" + "566" ], "coveredBy": [ - "563", - "566" + "566", + "569" ], "location": { "end": { @@ -68285,11 +68285,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "563" + "566" ], "coveredBy": [ - "563", - "566" + "566", + "569" ], "location": { "end": { @@ -68311,10 +68311,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "563" + "566" ], "coveredBy": [ - "563" + "566" ], "location": { "end": { @@ -68336,10 +68336,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "563" + "566" ], "coveredBy": [ - "563" + "566" ], "location": { "end": { @@ -68385,10 +68385,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1558" + "1561" ], "coveredBy": [ - "1558" + "1561" ], "location": { "end": { @@ -68410,10 +68410,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1558" + "1561" ], "coveredBy": [ - "1558" + "1561" ], "location": { "end": { @@ -68441,15 +68441,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1439" + "1442" ], "coveredBy": [ - "1437", - "1438", - "1439", "1440", "1441", - "1442" + "1442", + "1443", + "1444", + "1445" ], "location": { "end": { @@ -68471,15 +68471,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1441" + "1444" ], "coveredBy": [ - "1437", - "1438", - "1439", "1440", "1441", - "1442" + "1442", + "1443", + "1444", + "1445" ], "location": { "end": { @@ -68501,15 +68501,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1441" + "1444" ], "coveredBy": [ - "1437", - "1438", - "1439", "1440", "1441", - "1442" + "1442", + "1443", + "1444", + "1445" ], "location": { "end": { @@ -68531,15 +68531,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1441" + "1444" ], "coveredBy": [ - "1437", - "1438", - "1439", "1440", "1441", - "1442" + "1442", + "1443", + "1444", + "1445" ], "location": { "end": { @@ -68561,10 +68561,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1442" + "1445" ], "coveredBy": [ - "1442" + "1445" ], "location": { "end": { @@ -68586,10 +68586,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1442" + "1445" ], "coveredBy": [ - "1442" + "1445" ], "location": { "end": { @@ -68617,10 +68617,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1898" + "1901" ], "coveredBy": [ - "1898" + "1901" ], "location": { "end": { @@ -68642,10 +68642,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1898" + "1901" ], "coveredBy": [ - "1898" + "1901" ], "location": { "end": { @@ -68673,12 +68673,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "744" + "747" ], "coveredBy": [ - "744", - "745", - "746", "747", "748", "749", @@ -68687,7 +68684,10 @@ "752", "753", "754", - "755" + "755", + "756", + "757", + "758" ], "location": { "end": { @@ -68709,12 +68709,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "748" + "751" ], "coveredBy": [ - "744", - "745", - "746", "747", "748", "749", @@ -68723,7 +68720,10 @@ "752", "753", "754", - "755" + "755", + "756", + "757", + "758" ], "location": { "end": { @@ -68745,12 +68745,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "744" + "747" ], "coveredBy": [ - "744", - "745", - "746", "747", "748", "749", @@ -68759,7 +68756,10 @@ "752", "753", "754", - "755" + "755", + "756", + "757", + "758" ], "location": { "end": { @@ -68781,12 +68781,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "744" + "747" ], "coveredBy": [ - "744", - "745", - "746", "747", "748", "749", @@ -68795,7 +68792,10 @@ "752", "753", "754", - "755" + "755", + "756", + "757", + "758" ], "location": { "end": { @@ -68817,12 +68817,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "744" + "747" ], "coveredBy": [ - "744", - "745", - "746", "747", "748", "749", @@ -68831,7 +68828,10 @@ "752", "753", "754", - "755" + "755", + "756", + "757", + "758" ], "location": { "end": { @@ -68853,12 +68853,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "744" + "747" ], "coveredBy": [ - "744", - "745", - "746", "747", "748", "749", @@ -68867,7 +68864,10 @@ "752", "753", "754", - "755" + "755", + "756", + "757", + "758" ], "location": { "end": { @@ -68889,10 +68889,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "745" + "748" ], "coveredBy": [ - "745" + "748" ], "location": { "end": { @@ -68914,10 +68914,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "745" + "748" ], "coveredBy": [ - "745" + "748" ], "location": { "end": { @@ -68939,10 +68939,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "749" + "752" ], "coveredBy": [ - "749" + "752" ], "location": { "end": { @@ -68964,10 +68964,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "749" + "752" ], "coveredBy": [ - "749" + "752" ], "location": { "end": { @@ -68989,10 +68989,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "753" + "756" ], "coveredBy": [ - "753" + "756" ], "location": { "end": { @@ -69014,10 +69014,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "753" + "756" ], "coveredBy": [ - "753" + "756" ], "location": { "end": { @@ -69039,11 +69039,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "746" + "749" ], "coveredBy": [ - "746", - "747" + "749", + "750" ], "location": { "end": { @@ -69065,11 +69065,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "746" + "749" ], "coveredBy": [ - "746", - "747" + "749", + "750" ], "location": { "end": { @@ -69091,11 +69091,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "747" + "750" ], "coveredBy": [ - "746", - "747" + "749", + "750" ], "location": { "end": { @@ -69117,11 +69117,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "746" + "749" ], "coveredBy": [ - "746", - "747" + "749", + "750" ], "location": { "end": { @@ -69143,10 +69143,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "746" + "749" ], "coveredBy": [ - "746" + "749" ], "location": { "end": { @@ -69168,10 +69168,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "746" + "749" ], "coveredBy": [ - "746" + "749" ], "location": { "end": { @@ -69193,10 +69193,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "747" + "750" ], "coveredBy": [ - "747" + "750" ], "location": { "end": { @@ -69218,11 +69218,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "750" + "753" ], "coveredBy": [ - "750", - "751" + "753", + "754" ], "location": { "end": { @@ -69244,11 +69244,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "750" + "753" ], "coveredBy": [ - "750", - "751" + "753", + "754" ], "location": { "end": { @@ -69270,11 +69270,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "751" + "754" ], "coveredBy": [ - "750", - "751" + "753", + "754" ], "location": { "end": { @@ -69296,11 +69296,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "750" + "753" ], "coveredBy": [ - "750", - "751" + "753", + "754" ], "location": { "end": { @@ -69322,10 +69322,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "750" + "753" ], "coveredBy": [ - "750" + "753" ], "location": { "end": { @@ -69347,10 +69347,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "750" + "753" ], "coveredBy": [ - "750" + "753" ], "location": { "end": { @@ -69372,10 +69372,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "751" + "754" ], "coveredBy": [ - "751" + "754" ], "location": { "end": { @@ -69397,11 +69397,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "754" + "757" ], "coveredBy": [ - "754", - "755" + "757", + "758" ], "location": { "end": { @@ -69423,11 +69423,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "754" + "757" ], "coveredBy": [ - "754", - "755" + "757", + "758" ], "location": { "end": { @@ -69449,11 +69449,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "755" + "758" ], "coveredBy": [ - "754", - "755" + "757", + "758" ], "location": { "end": { @@ -69475,11 +69475,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "754" + "757" ], "coveredBy": [ - "754", - "755" + "757", + "758" ], "location": { "end": { @@ -69501,10 +69501,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "754" + "757" ], "coveredBy": [ - "754" + "757" ], "location": { "end": { @@ -69526,10 +69526,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "754" + "757" ], "coveredBy": [ - "754" + "757" ], "location": { "end": { @@ -69551,10 +69551,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "755" + "758" ], "coveredBy": [ - "755" + "758" ], "location": { "end": { @@ -69636,12 +69636,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "788" + "791" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -69653,7 +69650,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -69675,12 +69675,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -69692,7 +69689,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -69714,12 +69714,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "788" + "791" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -69731,7 +69728,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -69753,18 +69753,18 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "794" + "797" ], "coveredBy": [ - "787", - "788", - "789", + "790", "791", "792", - "793", "794", + "795", "796", - "797" + "797", + "799", + "800" ], "location": { "end": { @@ -69786,18 +69786,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "788" + "791" ], "coveredBy": [ - "787", - "788", - "789", + "790", "791", "792", - "793", "794", + "795", "796", - "797" + "797", + "799", + "800" ], "location": { "end": { @@ -69819,18 +69819,18 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "794" + "797" ], "coveredBy": [ - "787", - "788", - "789", + "790", "791", "792", - "793", "794", + "795", "796", - "797" + "797", + "799", + "800" ], "location": { "end": { @@ -69852,18 +69852,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "788" + "791" ], "coveredBy": [ - "787", - "788", - "789", + "790", "791", "792", - "793", "794", + "795", "796", - "797" + "797", + "799", + "800" ], "location": { "end": { @@ -69885,12 +69885,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "798" + "801" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -69902,7 +69899,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -69924,12 +69924,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -69941,7 +69938,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -69963,12 +69963,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "798" + "801" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -69980,7 +69977,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70002,12 +70002,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "798" + "801" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70019,7 +70016,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70041,12 +70041,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70058,7 +70055,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70080,12 +70080,9 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "799" + "802" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70097,7 +70094,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70119,12 +70119,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70136,7 +70133,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70158,12 +70158,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70175,7 +70172,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70197,12 +70197,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "787" + "790" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70214,7 +70211,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70236,12 +70236,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "787" + "790" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70253,7 +70250,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70275,12 +70275,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70292,7 +70289,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70314,12 +70314,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70331,7 +70328,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70353,12 +70353,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70370,7 +70367,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70392,12 +70392,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70409,7 +70406,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70431,12 +70431,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "791" + "794" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70448,7 +70445,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70470,12 +70470,9 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "791" + "794" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70487,7 +70484,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70509,12 +70509,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70526,7 +70523,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70548,12 +70548,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70565,7 +70562,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70587,12 +70587,9 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "796" + "799" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70604,7 +70601,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70626,12 +70626,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "796" + "799" ], "coveredBy": [ - "787", - "791", - "796" + "790", + "794", + "799" ], "location": { "end": { @@ -70653,12 +70653,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "796" + "799" ], "coveredBy": [ - "787", - "791", - "796" + "790", + "794", + "799" ], "location": { "end": { @@ -70680,12 +70680,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70697,7 +70694,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70719,12 +70719,9 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "797" + "800" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70736,7 +70733,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70758,13 +70758,13 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "797" + "800" ], "coveredBy": [ - "788", - "792", - "793", - "797" + "791", + "795", + "796", + "800" ], "location": { "end": { @@ -70786,13 +70786,13 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "797" + "800" ], "coveredBy": [ - "788", - "792", - "793", - "797" + "791", + "795", + "796", + "800" ], "location": { "end": { @@ -70814,12 +70814,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70831,7 +70828,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70853,12 +70853,9 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "798" + "801" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70870,7 +70867,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -70892,10 +70892,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "798" + "801" ], "coveredBy": [ - "798" + "801" ], "location": { "end": { @@ -70917,10 +70917,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "798" + "801" ], "coveredBy": [ - "798" + "801" ], "location": { "end": { @@ -70942,12 +70942,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "785" + "788" ], "coveredBy": [ - "785", - "786", - "787", "788", "789", "790", @@ -70959,7 +70956,10 @@ "796", "797", "798", - "799" + "799", + "800", + "801", + "802" ], "location": { "end": { @@ -71005,19 +71005,19 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1258" + "1261" ], "coveredBy": [ - "1257", - "1258", - "1259", "1260", "1261", "1262", "1263", "1264", "1265", - "1266" + "1266", + "1267", + "1268", + "1269" ], "location": { "end": { @@ -71039,14 +71039,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1262" + "1265" ], "coveredBy": [ - "1262", - "1263", - "1264", "1265", - "1266" + "1266", + "1267", + "1268", + "1269" ], "location": { "end": { @@ -71068,14 +71068,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1262" + "1265" ], "coveredBy": [ - "1262", - "1263", - "1264", "1265", - "1266" + "1266", + "1267", + "1268", + "1269" ], "location": { "end": { @@ -71097,10 +71097,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1266" + "1269" ], "coveredBy": [ - "1266" + "1269" ], "location": { "end": { @@ -71122,10 +71122,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1266" + "1269" ], "coveredBy": [ - "1266" + "1269" ], "location": { "end": { @@ -71171,17 +71171,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1473" + "1476" ], "coveredBy": [ - "1471", - "1472", - "1473", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -71203,17 +71203,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1471" + "1474" ], "coveredBy": [ - "1471", - "1472", - "1473", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -71235,17 +71235,17 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1473" + "1476" ], "coveredBy": [ - "1471", - "1472", - "1473", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -71267,17 +71267,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1471" + "1474" ], "coveredBy": [ - "1471", - "1472", - "1473", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -71299,17 +71299,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1471" + "1474" ], "coveredBy": [ - "1471", - "1472", - "1473", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -71331,10 +71331,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1476" + "1479" ], "coveredBy": [ - "1476" + "1479" ], "location": { "end": { @@ -71356,10 +71356,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1478" + "1481" ], "coveredBy": [ - "1478" + "1481" ], "location": { "end": { @@ -71381,10 +71381,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1478" + "1481" ], "coveredBy": [ - "1478" + "1481" ], "location": { "end": { @@ -71412,18 +71412,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1588" + "1591" ], "coveredBy": [ - "1588", - "1589", - "1590", "1591", "1592", - "1927", - "1928", - "1929", - "1930" + "1593", + "1594", + "1595", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71445,18 +71445,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1588" + "1591" ], "coveredBy": [ - "1588", - "1589", - "1590", "1591", "1592", - "1927", - "1928", - "1929", - "1930" + "1593", + "1594", + "1595", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71478,10 +71478,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1592" + "1595" ], "coveredBy": [ - "1592" + "1595" ], "location": { "end": { @@ -71503,18 +71503,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1588" + "1591" ], "coveredBy": [ - "1588", - "1589", - "1590", "1591", "1592", - "1927", - "1928", - "1929", - "1930" + "1593", + "1594", + "1595", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71536,18 +71536,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1588" + "1591" ], "coveredBy": [ - "1588", - "1589", - "1590", "1591", "1592", - "1927", - "1928", - "1929", - "1930" + "1593", + "1594", + "1595", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71575,18 +71575,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1564", - "1565", - "1566", "1567", "1568", - "1927", - "1928", - "1929", - "1930" + "1569", + "1570", + "1571", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71608,18 +71608,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1564" + "1567" ], "coveredBy": [ - "1564", - "1565", - "1566", "1567", "1568", - "1927", - "1928", - "1929", - "1930" + "1569", + "1570", + "1571", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71641,10 +71641,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1568" + "1571" ], "coveredBy": [ - "1568" + "1571" ], "location": { "end": { @@ -71666,18 +71666,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1564" + "1567" ], "coveredBy": [ - "1564", - "1565", - "1566", "1567", "1568", - "1927", - "1928", - "1929", - "1930" + "1569", + "1570", + "1571", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71699,18 +71699,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1564" + "1567" ], "coveredBy": [ - "1564", - "1565", - "1566", "1567", "1568", - "1927", - "1928", - "1929", - "1930" + "1569", + "1570", + "1571", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71738,18 +71738,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1538" + "1541" ], "coveredBy": [ - "1538", - "1539", - "1540", "1541", "1542", - "1927", - "1928", - "1929", - "1930" + "1543", + "1544", + "1545", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71771,18 +71771,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1538" + "1541" ], "coveredBy": [ - "1538", - "1539", - "1540", "1541", "1542", - "1927", - "1928", - "1929", - "1930" + "1543", + "1544", + "1545", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71804,10 +71804,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1542" + "1545" ], "coveredBy": [ - "1542" + "1545" ], "location": { "end": { @@ -71829,18 +71829,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1538" + "1541" ], "coveredBy": [ - "1538", - "1539", - "1540", "1541", "1542", - "1927", - "1928", - "1929", - "1930" + "1543", + "1544", + "1545", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71862,18 +71862,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1538", - "1539", - "1540", "1541", "1542", - "1927", - "1928", - "1929", - "1930" + "1543", + "1544", + "1545", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71901,18 +71901,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1549" + "1552" ], "coveredBy": [ - "1549", - "1550", - "1551", "1552", "1553", - "1927", - "1928", - "1929", - "1930" + "1554", + "1555", + "1556", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71934,18 +71934,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1549", - "1550", - "1551", "1552", "1553", - "1927", - "1928", - "1929", - "1930" + "1554", + "1555", + "1556", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -71967,10 +71967,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1553" + "1556" ], "coveredBy": [ - "1553" + "1556" ], "location": { "end": { @@ -71992,18 +71992,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1549", - "1550", - "1551", "1552", "1553", - "1927", - "1928", - "1929", - "1930" + "1554", + "1555", + "1556", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72025,18 +72025,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1549", - "1550", - "1551", "1552", "1553", - "1927", - "1928", - "1929", - "1930" + "1554", + "1555", + "1556", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72064,22 +72064,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1160" + "1163" ], "coveredBy": [ - "1160", - "1161", - "1162", "1163", "1164", "1165", "1166", "1167", "1168", - "1927", - "1928", - "1929", - "1930" + "1169", + "1170", + "1171", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72101,22 +72101,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1160", - "1161", - "1162", "1163", "1164", "1165", "1166", "1167", "1168", - "1927", - "1928", - "1929", - "1930" + "1169", + "1170", + "1171", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72138,10 +72138,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1164" + "1167" ], "coveredBy": [ - "1164" + "1167" ], "location": { "end": { @@ -72163,22 +72163,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1160", - "1161", - "1162", "1163", "1164", "1165", "1166", "1167", "1168", - "1927", - "1928", - "1929", - "1930" + "1169", + "1170", + "1171", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72200,22 +72200,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1160", - "1161", - "1162", "1163", "1164", "1165", "1166", "1167", "1168", - "1927", - "1928", - "1929", - "1930" + "1169", + "1170", + "1171", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72237,10 +72237,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1168" + "1171" ], "coveredBy": [ - "1168" + "1171" ], "location": { "end": { @@ -72262,22 +72262,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1160" + "1163" ], "coveredBy": [ - "1160", - "1161", - "1162", "1163", "1164", "1165", "1166", "1167", "1168", - "1927", - "1928", - "1929", - "1930" + "1169", + "1170", + "1171", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72299,22 +72299,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1160", - "1161", - "1162", "1163", "1164", "1165", "1166", "1167", "1168", - "1927", - "1928", - "1929", - "1930" + "1169", + "1170", + "1171", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72336,22 +72336,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1160" + "1163" ], "coveredBy": [ - "1160", - "1161", - "1162", "1163", "1164", "1165", "1166", "1167", "1168", - "1927", - "1928", - "1929", - "1930" + "1169", + "1170", + "1171", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72373,22 +72373,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1160" + "1163" ], "coveredBy": [ - "1160", - "1161", - "1162", "1163", "1164", "1165", "1166", "1167", "1168", - "1927", - "1928", - "1929", - "1930" + "1169", + "1170", + "1171", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72416,18 +72416,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1611", - "1612", - "1613", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72449,18 +72449,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1611" + "1614" ], "coveredBy": [ - "1611", - "1612", - "1613", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72482,10 +72482,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1615" + "1618" ], "coveredBy": [ - "1615" + "1618" ], "location": { "end": { @@ -72507,18 +72507,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1611" + "1614" ], "coveredBy": [ - "1611", - "1612", - "1613", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72540,18 +72540,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1611" + "1614" ], "coveredBy": [ - "1611", - "1612", - "1613", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72579,12 +72579,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "961" + "964" ], "coveredBy": [ - "961", - "962", - "963", "964", "965", "966", @@ -72593,10 +72590,13 @@ "969", "970", "971", - "1927", - "1928", - "1929", - "1930" + "972", + "973", + "974", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72618,12 +72618,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "961" + "964" ], "coveredBy": [ - "961", - "962", - "963", "964", "965", "966", @@ -72632,10 +72629,13 @@ "969", "970", "971", - "1927", - "1928", - "1929", - "1930" + "972", + "973", + "974", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72657,12 +72657,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "965" + "968" ], "coveredBy": [ - "965", - "966", - "967" + "968", + "969", + "970" ], "location": { "end": { @@ -72684,12 +72684,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "965" + "968" ], "coveredBy": [ - "965", - "966", - "967" + "968", + "969", + "970" ], "location": { "end": { @@ -72711,12 +72711,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "967" + "970" ], "coveredBy": [ - "965", - "966", - "967" + "968", + "969", + "970" ], "location": { "end": { @@ -72738,12 +72738,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "965" + "968" ], "coveredBy": [ - "965", - "966", - "967" + "968", + "969", + "970" ], "location": { "end": { @@ -72765,10 +72765,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "967" + "970" ], "coveredBy": [ - "967" + "970" ], "location": { "end": { @@ -72790,12 +72790,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "961" + "964" ], "coveredBy": [ - "961", - "962", - "963", "964", "965", "966", @@ -72804,10 +72801,13 @@ "969", "970", "971", - "1927", - "1928", - "1929", - "1930" + "972", + "973", + "974", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72829,12 +72829,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "961", - "962", - "963", "964", "965", "966", @@ -72843,10 +72840,13 @@ "969", "970", "971", - "1927", - "1928", - "1929", - "1930" + "972", + "973", + "974", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72868,10 +72868,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "971" + "974" ], "coveredBy": [ - "971" + "974" ], "location": { "end": { @@ -72893,12 +72893,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "961", - "962", - "963", "964", "965", "966", @@ -72907,10 +72904,13 @@ "969", "970", "971", - "1927", - "1928", - "1929", - "1930" + "972", + "973", + "974", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72932,12 +72932,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "961" + "964" ], "coveredBy": [ - "961", - "962", - "963", "964", "965", "966", @@ -72946,10 +72943,13 @@ "969", "970", "971", - "1927", - "1928", - "1929", - "1930" + "972", + "973", + "974", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -72971,12 +72971,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "961", - "962", - "963", "964", "965", "966", @@ -72985,10 +72982,13 @@ "969", "970", "971", - "1927", - "1928", - "1929", - "1930" + "972", + "973", + "974", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73010,12 +73010,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "961" + "964" ], "coveredBy": [ - "961", - "962", - "963", "964", "965", "966", @@ -73024,10 +73021,13 @@ "969", "970", "971", - "1927", - "1928", - "1929", - "1930" + "972", + "973", + "974", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73055,18 +73055,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1598" + "1601" ], "coveredBy": [ - "1598", - "1599", - "1600", "1601", "1602", - "1927", - "1928", - "1929", - "1930" + "1603", + "1604", + "1605", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73088,18 +73088,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1598", - "1599", - "1600", "1601", "1602", - "1927", - "1928", - "1929", - "1930" + "1603", + "1604", + "1605", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73121,10 +73121,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1602" + "1605" ], "coveredBy": [ - "1602" + "1605" ], "location": { "end": { @@ -73146,18 +73146,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1598", - "1599", - "1600", "1601", "1602", - "1927", - "1928", - "1929", - "1930" + "1603", + "1604", + "1605", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73179,18 +73179,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1598" + "1601" ], "coveredBy": [ - "1598", - "1599", - "1600", "1601", "1602", - "1927", - "1928", - "1929", - "1930" + "1603", + "1604", + "1605", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73218,12 +73218,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -73231,10 +73228,13 @@ "1084", "1085", "1086", - "1927", - "1928", - "1929", - "1930" + "1087", + "1088", + "1089", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73256,12 +73256,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -73269,10 +73266,13 @@ "1084", "1085", "1086", - "1927", - "1928", - "1929", - "1930" + "1087", + "1088", + "1089", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73294,10 +73294,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1082" + "1085" ], "coveredBy": [ - "1082" + "1085" ], "location": { "end": { @@ -73319,12 +73319,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -73332,10 +73329,13 @@ "1084", "1085", "1086", - "1927", - "1928", - "1929", - "1930" + "1087", + "1088", + "1089", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73357,12 +73357,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1077" + "1080" ], "coveredBy": [ - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -73370,10 +73367,13 @@ "1084", "1085", "1086", - "1927", - "1928", - "1929", - "1930" + "1087", + "1088", + "1089", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73395,10 +73395,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1086" + "1089" ], "coveredBy": [ - "1086" + "1089" ], "location": { "end": { @@ -73420,12 +73420,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1077" + "1080" ], "coveredBy": [ - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -73433,10 +73430,13 @@ "1084", "1085", "1086", - "1927", - "1928", - "1929", - "1930" + "1087", + "1088", + "1089", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73458,12 +73458,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1077" + "1080" ], "coveredBy": [ - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -73471,10 +73468,13 @@ "1084", "1085", "1086", - "1927", - "1928", - "1929", - "1930" + "1087", + "1088", + "1089", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73496,12 +73496,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1077" + "1080" ], "coveredBy": [ - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -73509,10 +73506,13 @@ "1084", "1085", "1086", - "1927", - "1928", - "1929", - "1930" + "1087", + "1088", + "1089", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73534,12 +73534,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1077" + "1080" ], "coveredBy": [ - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -73547,10 +73544,13 @@ "1084", "1085", "1086", - "1927", - "1928", - "1929", - "1930" + "1087", + "1088", + "1089", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73578,18 +73578,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1580" + "1583" ], "coveredBy": [ - "1580", - "1581", - "1582", "1583", "1584", - "1927", - "1928", - "1929", - "1930" + "1585", + "1586", + "1587", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73611,18 +73611,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1580" + "1583" ], "coveredBy": [ - "1580", - "1581", - "1582", "1583", "1584", - "1927", - "1928", - "1929", - "1930" + "1585", + "1586", + "1587", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73644,10 +73644,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1584" + "1587" ], "coveredBy": [ - "1584" + "1587" ], "location": { "end": { @@ -73669,18 +73669,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1580" + "1583" ], "coveredBy": [ - "1580", - "1581", - "1582", "1583", "1584", - "1927", - "1928", - "1929", - "1930" + "1585", + "1586", + "1587", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73702,18 +73702,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1580" + "1583" ], "coveredBy": [ - "1580", - "1581", - "1582", "1583", "1584", - "1927", - "1928", - "1929", - "1930" + "1585", + "1586", + "1587", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73741,18 +73741,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1593", - "1594", - "1595", "1596", "1597", - "1927", - "1928", - "1929", - "1930" + "1598", + "1599", + "1600", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73774,18 +73774,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1593" + "1596" ], "coveredBy": [ - "1593", - "1594", - "1595", "1596", "1597", - "1927", - "1928", - "1929", - "1930" + "1598", + "1599", + "1600", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73807,10 +73807,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1597" + "1600" ], "coveredBy": [ - "1597" + "1600" ], "location": { "end": { @@ -73832,18 +73832,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1593" + "1596" ], "coveredBy": [ - "1593", - "1594", - "1595", "1596", "1597", - "1927", - "1928", - "1929", - "1930" + "1598", + "1599", + "1600", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73865,18 +73865,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1593" + "1596" ], "coveredBy": [ - "1593", - "1594", - "1595", "1596", "1597", - "1927", - "1928", - "1929", - "1930" + "1598", + "1599", + "1600", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73904,12 +73904,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -73922,10 +73919,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73947,12 +73947,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -73965,10 +73962,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -73990,12 +73990,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "656" + "659" ], "coveredBy": [ - "656", - "657", - "658" + "659", + "660", + "661" ], "location": { "end": { @@ -74017,12 +74017,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "656" + "659" ], "coveredBy": [ - "656", - "657", - "658" + "659", + "660", + "661" ], "location": { "end": { @@ -74044,12 +74044,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "658" + "661" ], "coveredBy": [ - "656", - "657", - "658" + "659", + "660", + "661" ], "location": { "end": { @@ -74071,12 +74071,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "656" + "659" ], "coveredBy": [ - "656", - "657", - "658" + "659", + "660", + "661" ], "location": { "end": { @@ -74098,10 +74098,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "658" + "661" ], "coveredBy": [ - "658" + "661" ], "location": { "end": { @@ -74123,12 +74123,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74141,10 +74138,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74166,12 +74166,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74184,10 +74181,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74209,10 +74209,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "662" + "665" ], "coveredBy": [ - "662" + "665" ], "location": { "end": { @@ -74234,12 +74234,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74252,10 +74249,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74277,12 +74277,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74295,10 +74292,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74320,10 +74320,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "666" + "669" ], "coveredBy": [ - "666" + "669" ], "location": { "end": { @@ -74345,12 +74345,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74363,10 +74360,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74388,12 +74388,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74406,10 +74403,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74431,12 +74431,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74449,10 +74446,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74474,12 +74474,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74492,10 +74489,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74517,12 +74517,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74535,10 +74532,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74560,12 +74560,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "652", - "653", - "654", "655", "656", "657", @@ -74578,10 +74575,13 @@ "664", "665", "666", - "1927", - "1928", - "1929", - "1930" + "667", + "668", + "669", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74609,18 +74609,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1496" + "1499" ], "coveredBy": [ - "1496", - "1497", - "1498", "1499", "1500", - "1927", - "1928", - "1929", - "1930" + "1501", + "1502", + "1503", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74642,18 +74642,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1496" + "1499" ], "coveredBy": [ - "1496", - "1497", - "1498", "1499", "1500", - "1927", - "1928", - "1929", - "1930" + "1501", + "1502", + "1503", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74675,10 +74675,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1500" + "1503" ], "coveredBy": [ - "1500" + "1503" ], "location": { "end": { @@ -74700,18 +74700,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1496" + "1499" ], "coveredBy": [ - "1496", - "1497", - "1498", "1499", "1500", - "1927", - "1928", - "1929", - "1930" + "1501", + "1502", + "1503", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74733,18 +74733,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1496" + "1499" ], "coveredBy": [ - "1496", - "1497", - "1498", "1499", "1500", - "1927", - "1928", - "1929", - "1930" + "1501", + "1502", + "1503", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74772,20 +74772,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1384", - "1385", - "1386", "1387", "1388", "1389", "1390", - "1927", - "1928", - "1929", - "1930" + "1391", + "1392", + "1393", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74807,20 +74807,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1384" + "1387" ], "coveredBy": [ - "1384", - "1385", - "1386", "1387", "1388", "1389", "1390", - "1927", - "1928", - "1929", - "1930" + "1391", + "1392", + "1393", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -74842,12 +74842,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1388" + "1391" ], "coveredBy": [ - "1388", - "1389", - "1390" + "1391", + "1392", + "1393" ], "location": { "end": { @@ -74869,12 +74869,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1388" + "1391" ], "coveredBy": [ - "1388", - "1389", - "1390" + "1391", + "1392", + "1393" ], "location": { "end": { @@ -74896,12 +74896,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1390" + "1393" ], "coveredBy": [ - "1388", - "1389", - "1390" + "1391", + "1392", + "1393" ], "location": { "end": { @@ -74923,12 +74923,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1388" + "1391" ], "coveredBy": [ - "1388", - "1389", - "1390" + "1391", + "1392", + "1393" ], "location": { "end": { @@ -74950,10 +74950,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1390" + "1393" ], "coveredBy": [ - "1390" + "1393" ], "location": { "end": { @@ -74975,20 +74975,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1384" + "1387" ], "coveredBy": [ - "1384", - "1385", - "1386", "1387", "1388", "1389", "1390", - "1927", - "1928", - "1929", - "1930" + "1391", + "1392", + "1393", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75010,20 +75010,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1384" + "1387" ], "coveredBy": [ - "1384", - "1385", - "1386", "1387", "1388", "1389", "1390", - "1927", - "1928", - "1929", - "1930" + "1391", + "1392", + "1393", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75051,22 +75051,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1927", - "1928", - "1929", - "1930" + "1205", + "1206", + "1207", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75088,22 +75088,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1196" + "1199" ], "coveredBy": [ - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1927", - "1928", - "1929", - "1930" + "1205", + "1206", + "1207", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75125,10 +75125,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1200" + "1203" ], "coveredBy": [ - "1200" + "1203" ], "location": { "end": { @@ -75150,22 +75150,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1196" + "1199" ], "coveredBy": [ - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1927", - "1928", - "1929", - "1930" + "1205", + "1206", + "1207", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75187,22 +75187,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1196" + "1199" ], "coveredBy": [ - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1927", - "1928", - "1929", - "1930" + "1205", + "1206", + "1207", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75224,10 +75224,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1204" + "1207" ], "coveredBy": [ - "1204" + "1207" ], "location": { "end": { @@ -75249,22 +75249,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1196" + "1199" ], "coveredBy": [ - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1927", - "1928", - "1929", - "1930" + "1205", + "1206", + "1207", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75286,22 +75286,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1196" + "1199" ], "coveredBy": [ - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1927", - "1928", - "1929", - "1930" + "1205", + "1206", + "1207", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75323,22 +75323,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1196" + "1199" ], "coveredBy": [ - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1927", - "1928", - "1929", - "1930" + "1205", + "1206", + "1207", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75360,22 +75360,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1196" + "1199" ], "coveredBy": [ - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1927", - "1928", - "1929", - "1930" + "1205", + "1206", + "1207", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75403,12 +75403,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75422,10 +75419,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75447,12 +75447,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75466,10 +75463,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75491,10 +75491,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "692" + "695" ], "coveredBy": [ - "692" + "695" ], "location": { "end": { @@ -75516,12 +75516,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75535,10 +75532,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75560,12 +75560,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75579,10 +75576,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75604,10 +75604,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "696" + "699" ], "coveredBy": [ - "696" + "699" ], "location": { "end": { @@ -75629,12 +75629,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75648,10 +75645,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75673,12 +75673,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75692,10 +75689,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75717,10 +75717,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "700" + "703" ], "coveredBy": [ - "700" + "703" ], "location": { "end": { @@ -75742,12 +75742,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75761,10 +75758,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75786,12 +75786,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75805,10 +75802,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75830,12 +75830,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75849,10 +75846,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75874,12 +75874,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75893,10 +75890,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75918,12 +75918,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75937,10 +75934,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -75962,12 +75962,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "685", - "686", - "687", "688", "689", "690", @@ -75981,10 +75978,13 @@ "698", "699", "700", - "1927", - "1928", - "1929", - "1930" + "701", + "702", + "703", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76012,12 +76012,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76031,10 +76028,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76056,12 +76056,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "636" + "639" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76075,10 +76072,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76100,12 +76100,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "649" + "652" ], "coveredBy": [ - "649", - "650", - "651" + "652", + "653", + "654" ], "location": { "end": { @@ -76127,12 +76127,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "649" + "652" ], "coveredBy": [ - "649", - "650", - "651" + "652", + "653", + "654" ], "location": { "end": { @@ -76154,12 +76154,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "651" + "654" ], "coveredBy": [ - "649", - "650", - "651" + "652", + "653", + "654" ], "location": { "end": { @@ -76181,12 +76181,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "649" + "652" ], "coveredBy": [ - "649", - "650", - "651" + "652", + "653", + "654" ], "location": { "end": { @@ -76208,10 +76208,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "651" + "654" ], "coveredBy": [ - "651" + "654" ], "location": { "end": { @@ -76233,12 +76233,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76252,10 +76249,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76277,12 +76277,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "636" + "639" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76296,10 +76293,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76321,12 +76321,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "636" + "639" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76340,10 +76337,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76365,12 +76365,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "637" + "640" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76384,10 +76381,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76409,12 +76409,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "636" + "639" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76428,10 +76425,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76453,12 +76453,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "637" + "640" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76472,10 +76469,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76497,11 +76497,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "646" + "649" ], "coveredBy": [ - "646", - "647" + "649", + "650" ], "location": { "end": { @@ -76523,10 +76523,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "646" + "649" ], "coveredBy": [ - "646" + "649" ], "location": { "end": { @@ -76548,10 +76548,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "647" + "650" ], "coveredBy": [ - "647" + "650" ], "location": { "end": { @@ -76573,12 +76573,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "637" + "640" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76592,10 +76589,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76617,12 +76617,9 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76636,10 +76633,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76661,12 +76661,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "637" + "640" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76680,10 +76677,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76705,13 +76705,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "637" + "640" ], "coveredBy": [ - "637", - "639", - "643", - "644" + "640", + "642", + "646", + "647" ], "location": { "end": { @@ -76733,13 +76733,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "637" + "640" ], "coveredBy": [ - "637", - "639", - "643", - "644" + "640", + "642", + "646", + "647" ], "location": { "end": { @@ -76761,13 +76761,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "637" + "640" ], "coveredBy": [ - "637", - "639", - "643", - "644" + "640", + "642", + "646", + "647" ], "location": { "end": { @@ -76789,13 +76789,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "639" + "642" ], "coveredBy": [ - "637", - "639", - "643", - "644" + "640", + "642", + "646", + "647" ], "location": { "end": { @@ -76817,12 +76817,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "638" + "641" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76836,10 +76833,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76861,12 +76861,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "638" + "641" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76880,10 +76877,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76905,12 +76905,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76924,10 +76921,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76949,12 +76949,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "636" + "639" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -76968,10 +76965,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -76993,12 +76993,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "636", - "637", - "638", "639", "640", "641", @@ -77012,10 +77009,13 @@ "649", "650", "651", - "1927", - "1928", - "1929", - "1930" + "652", + "653", + "654", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77043,20 +77043,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1377" + "1380" ], "coveredBy": [ - "1377", - "1378", - "1379", "1380", "1381", "1382", "1383", - "1927", - "1928", - "1929", - "1930" + "1384", + "1385", + "1386", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77078,20 +77078,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1377" + "1380" ], "coveredBy": [ - "1377", - "1378", - "1379", "1380", "1381", "1382", "1383", - "1927", - "1928", - "1929", - "1930" + "1384", + "1385", + "1386", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77113,12 +77113,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1381" + "1384" ], "coveredBy": [ - "1381", - "1382", - "1383" + "1384", + "1385", + "1386" ], "location": { "end": { @@ -77140,12 +77140,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1381" + "1384" ], "coveredBy": [ - "1381", - "1382", - "1383" + "1384", + "1385", + "1386" ], "location": { "end": { @@ -77167,12 +77167,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1383" + "1386" ], "coveredBy": [ - "1381", - "1382", - "1383" + "1384", + "1385", + "1386" ], "location": { "end": { @@ -77194,12 +77194,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1381" + "1384" ], "coveredBy": [ - "1381", - "1382", - "1383" + "1384", + "1385", + "1386" ], "location": { "end": { @@ -77221,10 +77221,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1383" + "1386" ], "coveredBy": [ - "1383" + "1386" ], "location": { "end": { @@ -77246,20 +77246,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1377" + "1380" ], "coveredBy": [ - "1377", - "1378", - "1379", "1380", "1381", "1382", "1383", - "1927", - "1928", - "1929", - "1930" + "1384", + "1385", + "1386", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77281,20 +77281,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1377" + "1380" ], "coveredBy": [ - "1377", - "1378", - "1379", "1380", "1381", "1382", "1383", - "1927", - "1928", - "1929", - "1930" + "1384", + "1385", + "1386", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77322,22 +77322,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1105" + "1108" ], "coveredBy": [ - "1105", - "1106", - "1107", "1108", "1109", "1110", "1111", "1112", "1113", - "1927", - "1928", - "1929", - "1930" + "1114", + "1115", + "1116", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77359,22 +77359,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1105" + "1108" ], "coveredBy": [ - "1105", - "1106", - "1107", "1108", "1109", "1110", "1111", "1112", "1113", - "1927", - "1928", - "1929", - "1930" + "1114", + "1115", + "1116", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77396,10 +77396,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1109" + "1112" ], "coveredBy": [ - "1109" + "1112" ], "location": { "end": { @@ -77421,22 +77421,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1105" + "1108" ], "coveredBy": [ - "1105", - "1106", - "1107", "1108", "1109", "1110", "1111", "1112", "1113", - "1927", - "1928", - "1929", - "1930" + "1114", + "1115", + "1116", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77458,22 +77458,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1105" + "1108" ], "coveredBy": [ - "1105", - "1106", - "1107", "1108", "1109", "1110", "1111", "1112", "1113", - "1927", - "1928", - "1929", - "1930" + "1114", + "1115", + "1116", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77495,10 +77495,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1113" + "1116" ], "coveredBy": [ - "1113" + "1116" ], "location": { "end": { @@ -77520,22 +77520,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1105" + "1108" ], "coveredBy": [ - "1105", - "1106", - "1107", "1108", "1109", "1110", "1111", "1112", "1113", - "1927", - "1928", - "1929", - "1930" + "1114", + "1115", + "1116", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77557,22 +77557,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1105" + "1108" ], "coveredBy": [ - "1105", - "1106", - "1107", "1108", "1109", "1110", "1111", "1112", "1113", - "1927", - "1928", - "1929", - "1930" + "1114", + "1115", + "1116", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77594,22 +77594,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1105" + "1108" ], "coveredBy": [ - "1105", - "1106", - "1107", "1108", "1109", "1110", "1111", "1112", "1113", - "1927", - "1928", - "1929", - "1930" + "1114", + "1115", + "1116", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77631,22 +77631,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1105" + "1108" ], "coveredBy": [ - "1105", - "1106", - "1107", "1108", "1109", "1110", "1111", "1112", "1113", - "1927", - "1928", - "1929", - "1930" + "1114", + "1115", + "1116", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77674,20 +77674,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1305" + "1308" ], "coveredBy": [ - "1305", - "1306", - "1307", "1308", "1309", "1310", "1311", - "1927", - "1928", - "1929", - "1930" + "1312", + "1313", + "1314", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77709,20 +77709,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1305", - "1306", - "1307", "1308", "1309", "1310", "1311", - "1927", - "1928", - "1929", - "1930" + "1312", + "1313", + "1314", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77744,12 +77744,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1309" + "1312" ], "coveredBy": [ - "1309", - "1310", - "1311" + "1312", + "1313", + "1314" ], "location": { "end": { @@ -77771,12 +77771,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1309" + "1312" ], "coveredBy": [ - "1309", - "1310", - "1311" + "1312", + "1313", + "1314" ], "location": { "end": { @@ -77798,12 +77798,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1311" + "1314" ], "coveredBy": [ - "1309", - "1310", - "1311" + "1312", + "1313", + "1314" ], "location": { "end": { @@ -77825,12 +77825,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1309" + "1312" ], "coveredBy": [ - "1309", - "1310", - "1311" + "1312", + "1313", + "1314" ], "location": { "end": { @@ -77852,10 +77852,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1311" + "1314" ], "coveredBy": [ - "1311" + "1314" ], "location": { "end": { @@ -77877,20 +77877,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1305" + "1308" ], "coveredBy": [ - "1305", - "1306", - "1307", "1308", "1309", "1310", "1311", - "1927", - "1928", - "1929", - "1930" + "1312", + "1313", + "1314", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77912,20 +77912,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1305", - "1306", - "1307", "1308", "1309", "1310", "1311", - "1927", - "1928", - "1929", - "1930" + "1312", + "1313", + "1314", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77953,20 +77953,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1335" + "1338" ], "coveredBy": [ - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1927", - "1928", - "1929", - "1930" + "1342", + "1343", + "1344", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -77988,20 +77988,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1927", - "1928", - "1929", - "1930" + "1342", + "1343", + "1344", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78023,12 +78023,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1339" + "1342" ], "coveredBy": [ - "1339", - "1340", - "1341" + "1342", + "1343", + "1344" ], "location": { "end": { @@ -78050,12 +78050,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1339" + "1342" ], "coveredBy": [ - "1339", - "1340", - "1341" + "1342", + "1343", + "1344" ], "location": { "end": { @@ -78077,12 +78077,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1341" + "1344" ], "coveredBy": [ - "1339", - "1340", - "1341" + "1342", + "1343", + "1344" ], "location": { "end": { @@ -78104,12 +78104,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1339" + "1342" ], "coveredBy": [ - "1339", - "1340", - "1341" + "1342", + "1343", + "1344" ], "location": { "end": { @@ -78131,10 +78131,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1341" + "1344" ], "coveredBy": [ - "1341" + "1344" ], "location": { "end": { @@ -78156,20 +78156,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1927", - "1928", - "1929", - "1930" + "1342", + "1343", + "1344", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78191,20 +78191,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1335" + "1338" ], "coveredBy": [ - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1927", - "1928", - "1929", - "1930" + "1342", + "1343", + "1344", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78232,18 +78232,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1533" + "1536" ], "coveredBy": [ - "1533", - "1534", - "1535", "1536", "1537", - "1927", - "1928", - "1929", - "1930" + "1538", + "1539", + "1540", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78265,18 +78265,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1533" + "1536" ], "coveredBy": [ - "1533", - "1534", - "1535", "1536", "1537", - "1927", - "1928", - "1929", - "1930" + "1538", + "1539", + "1540", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78298,10 +78298,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1537" + "1540" ], "coveredBy": [ - "1537" + "1540" ], "location": { "end": { @@ -78323,18 +78323,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1533", - "1534", - "1535", "1536", "1537", - "1927", - "1928", - "1929", - "1930" + "1538", + "1539", + "1540", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78356,18 +78356,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1533" + "1536" ], "coveredBy": [ - "1533", - "1534", - "1535", "1536", "1537", - "1927", - "1928", - "1929", - "1930" + "1538", + "1539", + "1540", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78395,20 +78395,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1312", - "1313", - "1314", "1315", "1316", "1317", "1318", - "1927", - "1928", - "1929", - "1930" + "1319", + "1320", + "1321", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78430,20 +78430,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1312" + "1315" ], "coveredBy": [ - "1312", - "1313", - "1314", "1315", "1316", "1317", "1318", - "1927", - "1928", - "1929", - "1930" + "1319", + "1320", + "1321", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78465,12 +78465,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1316" + "1319" ], "coveredBy": [ - "1316", - "1317", - "1318" + "1319", + "1320", + "1321" ], "location": { "end": { @@ -78492,12 +78492,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1316" + "1319" ], "coveredBy": [ - "1316", - "1317", - "1318" + "1319", + "1320", + "1321" ], "location": { "end": { @@ -78519,12 +78519,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1318" + "1321" ], "coveredBy": [ - "1316", - "1317", - "1318" + "1319", + "1320", + "1321" ], "location": { "end": { @@ -78546,12 +78546,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1316" + "1319" ], "coveredBy": [ - "1316", - "1317", - "1318" + "1319", + "1320", + "1321" ], "location": { "end": { @@ -78573,10 +78573,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1318" + "1321" ], "coveredBy": [ - "1318" + "1321" ], "location": { "end": { @@ -78598,20 +78598,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1312" + "1315" ], "coveredBy": [ - "1312", - "1313", - "1314", "1315", "1316", "1317", "1318", - "1927", - "1928", - "1929", - "1930" + "1319", + "1320", + "1321", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78633,20 +78633,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1312", - "1313", - "1314", "1315", "1316", "1317", "1318", - "1927", - "1928", - "1929", - "1930" + "1319", + "1320", + "1321", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78674,18 +78674,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1518" + "1521" ], "coveredBy": [ - "1518", - "1519", - "1520", "1521", "1522", - "1927", - "1928", - "1929", - "1930" + "1523", + "1524", + "1525", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78707,18 +78707,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1518" + "1521" ], "coveredBy": [ - "1518", - "1519", - "1520", "1521", "1522", - "1927", - "1928", - "1929", - "1930" + "1523", + "1524", + "1525", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78740,10 +78740,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1522" + "1525" ], "coveredBy": [ - "1522" + "1525" ], "location": { "end": { @@ -78765,18 +78765,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1518", - "1519", - "1520", "1521", "1522", - "1927", - "1928", - "1929", - "1930" + "1523", + "1524", + "1525", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78798,18 +78798,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1518" + "1521" ], "coveredBy": [ - "1518", - "1519", - "1520", "1521", "1522", - "1927", - "1928", - "1929", - "1930" + "1523", + "1524", + "1525", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78837,18 +78837,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1559" + "1562" ], "coveredBy": [ - "1559", - "1560", - "1561", "1562", "1563", - "1927", - "1928", - "1929", - "1930" + "1564", + "1565", + "1566", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78870,18 +78870,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1559" + "1562" ], "coveredBy": [ - "1559", - "1560", - "1561", "1562", "1563", - "1927", - "1928", - "1929", - "1930" + "1564", + "1565", + "1566", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78903,10 +78903,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1563" + "1566" ], "coveredBy": [ - "1563" + "1566" ], "location": { "end": { @@ -78928,18 +78928,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1559" + "1562" ], "coveredBy": [ - "1559", - "1560", - "1561", "1562", "1563", - "1927", - "1928", - "1929", - "1930" + "1564", + "1565", + "1566", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -78961,18 +78961,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1559" + "1562" ], "coveredBy": [ - "1559", - "1560", - "1561", "1562", "1563", - "1927", - "1928", - "1929", - "1930" + "1564", + "1565", + "1566", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79000,22 +79000,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1039", - "1040", - "1041", "1042", "1043", "1044", "1045", "1046", "1047", - "1927", - "1928", - "1929", - "1930" + "1048", + "1049", + "1050", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79037,22 +79037,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1039" + "1042" ], "coveredBy": [ - "1039", - "1040", - "1041", "1042", "1043", "1044", "1045", "1046", "1047", - "1927", - "1928", - "1929", - "1930" + "1048", + "1049", + "1050", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79074,10 +79074,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1043" + "1046" ], "coveredBy": [ - "1043" + "1046" ], "location": { "end": { @@ -79099,22 +79099,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1039" + "1042" ], "coveredBy": [ - "1039", - "1040", - "1041", "1042", "1043", "1044", "1045", "1046", "1047", - "1927", - "1928", - "1929", - "1930" + "1048", + "1049", + "1050", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79136,22 +79136,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1039" + "1042" ], "coveredBy": [ - "1039", - "1040", - "1041", "1042", "1043", "1044", "1045", "1046", "1047", - "1927", - "1928", - "1929", - "1930" + "1048", + "1049", + "1050", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79173,10 +79173,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1047" + "1050" ], "coveredBy": [ - "1047" + "1050" ], "location": { "end": { @@ -79198,22 +79198,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1039" + "1042" ], "coveredBy": [ - "1039", - "1040", - "1041", "1042", "1043", "1044", "1045", "1046", "1047", - "1927", - "1928", - "1929", - "1930" + "1048", + "1049", + "1050", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79235,22 +79235,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1039" + "1042" ], "coveredBy": [ - "1039", - "1040", - "1041", "1042", "1043", "1044", "1045", "1046", "1047", - "1927", - "1928", - "1929", - "1930" + "1048", + "1049", + "1050", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79272,22 +79272,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1039" + "1042" ], "coveredBy": [ - "1039", - "1040", - "1041", "1042", "1043", "1044", "1045", "1046", "1047", - "1927", - "1928", - "1929", - "1930" + "1048", + "1049", + "1050", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79309,22 +79309,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1039" + "1042" ], "coveredBy": [ - "1039", - "1040", - "1041", "1042", "1043", "1044", "1045", "1046", "1047", - "1927", - "1928", - "1929", - "1930" + "1048", + "1049", + "1050", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79352,12 +79352,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1020" + "1023" ], "coveredBy": [ - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -79365,10 +79362,13 @@ "1027", "1028", "1029", - "1927", - "1928", - "1929", - "1930" + "1030", + "1031", + "1032", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79390,12 +79390,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1020" + "1023" ], "coveredBy": [ - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -79403,10 +79400,13 @@ "1027", "1028", "1029", - "1927", - "1928", - "1929", - "1930" + "1030", + "1031", + "1032", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79428,10 +79428,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1024" + "1027" ], "coveredBy": [ - "1024" + "1027" ], "location": { "end": { @@ -79453,12 +79453,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1020" + "1023" ], "coveredBy": [ - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -79466,10 +79463,13 @@ "1027", "1028", "1029", - "1927", - "1928", - "1929", - "1930" + "1030", + "1031", + "1032", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79491,12 +79491,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1020" + "1023" ], "coveredBy": [ - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -79504,10 +79501,13 @@ "1027", "1028", "1029", - "1927", - "1928", - "1929", - "1930" + "1030", + "1031", + "1032", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79529,12 +79529,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1027" + "1030" ], "coveredBy": [ - "1027", - "1028", - "1029" + "1030", + "1031", + "1032" ], "location": { "end": { @@ -79556,12 +79556,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1027" + "1030" ], "coveredBy": [ - "1027", - "1028", - "1029" + "1030", + "1031", + "1032" ], "location": { "end": { @@ -79583,12 +79583,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1029" + "1032" ], "coveredBy": [ - "1027", - "1028", - "1029" + "1030", + "1031", + "1032" ], "location": { "end": { @@ -79610,12 +79610,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1027" + "1030" ], "coveredBy": [ - "1027", - "1028", - "1029" + "1030", + "1031", + "1032" ], "location": { "end": { @@ -79637,10 +79637,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1029" + "1032" ], "coveredBy": [ - "1029" + "1032" ], "location": { "end": { @@ -79662,12 +79662,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1020" + "1023" ], "coveredBy": [ - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -79675,10 +79672,13 @@ "1027", "1028", "1029", - "1927", - "1928", - "1929", - "1930" + "1030", + "1031", + "1032", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79700,12 +79700,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1020" + "1023" ], "coveredBy": [ - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -79713,10 +79710,13 @@ "1027", "1028", "1029", - "1927", - "1928", - "1929", - "1930" + "1030", + "1031", + "1032", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79738,12 +79738,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -79751,10 +79748,13 @@ "1027", "1028", "1029", - "1927", - "1928", - "1929", - "1930" + "1030", + "1031", + "1032", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79776,12 +79776,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1020" + "1023" ], "coveredBy": [ - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -79789,10 +79786,13 @@ "1027", "1028", "1029", - "1927", - "1928", - "1929", - "1930" + "1030", + "1031", + "1032", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -79820,17 +79820,17 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1367" + "1370" ], "coveredBy": [ - "1362", - "1363", - "1364", "1365", "1366", "1367", "1368", - "1369" + "1369", + "1370", + "1371", + "1372" ], "location": { "end": { @@ -79852,17 +79852,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1362" + "1365" ], "coveredBy": [ - "1362", - "1363", - "1364", "1365", "1366", "1367", "1368", - "1369" + "1369", + "1370", + "1371", + "1372" ], "location": { "end": { @@ -79884,17 +79884,17 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1367" + "1370" ], "coveredBy": [ - "1362", - "1363", - "1364", "1365", "1366", "1367", "1368", - "1369" + "1369", + "1370", + "1371", + "1372" ], "location": { "end": { @@ -79916,17 +79916,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1362" + "1365" ], "coveredBy": [ - "1362", - "1363", - "1364", "1365", "1366", "1367", "1368", - "1369" + "1369", + "1370", + "1371", + "1372" ], "location": { "end": { @@ -79948,10 +79948,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1367" + "1370" ], "coveredBy": [ - "1367" + "1370" ], "location": { "end": { @@ -79973,10 +79973,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1367" + "1370" ], "coveredBy": [ - "1367" + "1370" ], "location": { "end": { @@ -79998,11 +79998,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1365" + "1368" ], "coveredBy": [ - "1365", - "1366" + "1368", + "1369" ], "location": { "end": { @@ -80024,10 +80024,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1369" + "1372" ], "coveredBy": [ - "1369" + "1372" ], "location": { "end": { @@ -80049,10 +80049,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1369" + "1372" ], "coveredBy": [ - "1369" + "1372" ], "location": { "end": { @@ -80080,11 +80080,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1516" + "1519" ], "coveredBy": [ - "1516", - "1517" + "1519", + "1520" ], "location": { "end": { @@ -80106,11 +80106,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1516" + "1519" ], "coveredBy": [ - "1516", - "1517" + "1519", + "1520" ], "location": { "end": { @@ -80132,11 +80132,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1516" + "1519" ], "coveredBy": [ - "1516", - "1517" + "1519", + "1520" ], "location": { "end": { @@ -80158,11 +80158,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1517" + "1520" ], "coveredBy": [ - "1516", - "1517" + "1519", + "1520" ], "location": { "end": { @@ -80184,10 +80184,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1517" + "1520" ], "coveredBy": [ - "1517" + "1520" ], "location": { "end": { @@ -80209,10 +80209,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1516" + "1519" ], "coveredBy": [ - "1516" + "1519" ], "location": { "end": { @@ -80240,12 +80240,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1115" + "1118" ], "coveredBy": [ - "1114", - "1115", - "1116", "1117", "1118", "1119", @@ -80254,7 +80251,10 @@ "1122", "1123", "1124", - "1125" + "1125", + "1126", + "1127", + "1128" ], "location": { "end": { @@ -80276,15 +80276,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1120" + "1123" ], "coveredBy": [ - "1120", - "1121", - "1122", "1123", "1124", - "1125" + "1125", + "1126", + "1127", + "1128" ], "location": { "end": { @@ -80306,15 +80306,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1120" + "1123" ], "coveredBy": [ - "1120", - "1121", - "1122", "1123", "1124", - "1125" + "1125", + "1126", + "1127", + "1128" ], "location": { "end": { @@ -80336,10 +80336,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1125" + "1128" ], "coveredBy": [ - "1125" + "1128" ], "location": { "end": { @@ -80361,10 +80361,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1125" + "1128" ], "coveredBy": [ - "1125" + "1128" ], "location": { "end": { @@ -80410,12 +80410,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80437,12 +80437,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80464,12 +80464,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80491,12 +80491,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80518,12 +80518,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80545,12 +80545,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80572,12 +80572,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80599,12 +80599,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80626,12 +80626,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80653,12 +80653,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80680,12 +80680,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80707,12 +80707,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80734,12 +80734,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1587" + "1590" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80761,12 +80761,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1585" + "1588" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80788,12 +80788,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1586" + "1589" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80815,12 +80815,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1586" + "1589" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80842,12 +80842,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1586" + "1589" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80869,12 +80869,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1586" + "1589" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80896,12 +80896,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1586" + "1589" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80923,12 +80923,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1586" + "1589" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -80950,12 +80950,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1586" + "1589" ], "coveredBy": [ - "1585", - "1586", - "1587" + "1588", + "1589", + "1590" ], "location": { "end": { @@ -81027,13 +81027,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1807" + "1810" ], "coveredBy": [ - "1807", - "1808", - "1809", - "1810" + "1810", + "1811", + "1812", + "1813" ], "location": { "end": { @@ -81061,12 +81061,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "772" + "775" ], "coveredBy": [ - "771", - "772", - "773", "774", "775", "776", @@ -81077,7 +81074,10 @@ "781", "782", "783", - "784" + "784", + "785", + "786", + "787" ], "location": { "end": { @@ -81099,18 +81099,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "776" + "779" ], "coveredBy": [ - "776", - "777", - "778", "779", "780", "781", "782", "783", - "784" + "784", + "785", + "786", + "787" ], "location": { "end": { @@ -81132,18 +81132,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "776" + "779" ], "coveredBy": [ - "776", - "777", - "778", "779", "780", "781", "782", "783", - "784" + "784", + "785", + "786", + "787" ], "location": { "end": { @@ -81165,11 +81165,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "781" + "784" ], "coveredBy": [ - "781", - "784" + "784", + "787" ], "location": { "end": { @@ -81191,10 +81191,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "784" + "787" ], "coveredBy": [ - "784" + "787" ], "location": { "end": { @@ -81216,10 +81216,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "784" + "787" ], "coveredBy": [ - "784" + "787" ], "location": { "end": { @@ -81265,15 +81265,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1668" + "1671" ], "coveredBy": [ - "1664", - "1665", - "1666", "1667", "1668", - "1669" + "1669", + "1670", + "1671", + "1672" ], "location": { "end": { @@ -81295,15 +81295,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1668" + "1671" ], "coveredBy": [ - "1664", - "1665", - "1666", "1667", "1668", - "1669" + "1669", + "1670", + "1671", + "1672" ], "location": { "end": { @@ -81325,15 +81325,15 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1669" + "1672" ], "coveredBy": [ - "1664", - "1665", - "1666", "1667", "1668", - "1669" + "1669", + "1670", + "1671", + "1672" ], "location": { "end": { @@ -81355,10 +81355,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1669" + "1672" ], "coveredBy": [ - "1669" + "1672" ], "location": { "end": { @@ -81386,12 +81386,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "674" + "677" ], "coveredBy": [ - "674", - "675", - "676", "677", "678", "679", @@ -81399,7 +81396,10 @@ "681", "682", "683", - "684" + "684", + "685", + "686", + "687" ], "location": { "end": { @@ -81421,12 +81421,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "678" + "681" ], "coveredBy": [ - "674", - "675", - "676", "677", "678", "679", @@ -81434,7 +81431,10 @@ "681", "682", "683", - "684" + "684", + "685", + "686", + "687" ], "location": { "end": { @@ -81456,12 +81456,9 @@ "testsCompleted": 10, "static": false, "killedBy": [ - "683" + "686" ], "coveredBy": [ - "674", - "675", - "676", "677", "678", "679", @@ -81469,7 +81466,10 @@ "681", "682", "683", - "684" + "684", + "685", + "686", + "687" ], "location": { "end": { @@ -81491,12 +81491,9 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "682" + "685" ], "coveredBy": [ - "674", - "675", - "676", "677", "678", "679", @@ -81504,7 +81501,10 @@ "681", "682", "683", - "684" + "684", + "685", + "686", + "687" ], "location": { "end": { @@ -81526,12 +81526,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "676" + "679" ], "coveredBy": [ - "674", - "675", - "676", "677", "678", "679", @@ -81539,7 +81536,10 @@ "681", "682", "683", - "684" + "684", + "685", + "686", + "687" ], "location": { "end": { @@ -81567,11 +81567,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1920" + "1923" ], "coveredBy": [ - "1920", - "1921" + "1923", + "1924" ], "location": { "end": { @@ -81599,12 +81599,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "282" + "285" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81617,7 +81614,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81639,12 +81639,9 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "286" + "289" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81657,7 +81654,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81679,12 +81679,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "282" + "285" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81697,7 +81694,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81719,12 +81719,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "282" + "285" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81737,7 +81734,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81759,12 +81759,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "284" + "287" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81777,7 +81774,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81799,12 +81799,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "285" + "288" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81817,7 +81814,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81839,12 +81839,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "282" + "285" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81857,7 +81854,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81879,12 +81879,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "284" + "287" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81897,7 +81894,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81919,12 +81919,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "282" + "285" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81937,7 +81934,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81959,12 +81959,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "284" + "287" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -81977,7 +81974,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -81999,12 +81999,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "284" + "287" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -82017,7 +82014,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82039,12 +82039,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "284" + "287" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -82057,7 +82054,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82079,12 +82079,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "282" + "285" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -82097,7 +82094,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82119,12 +82119,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "282" + "285" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -82137,7 +82134,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82159,12 +82159,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "282" + "285" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -82177,7 +82174,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82199,12 +82199,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "282" + "285" ], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -82217,7 +82214,10 @@ "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82239,11 +82239,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "289" + "292" ], "coveredBy": [ - "289", - "290" + "292", + "293" ], "location": { "end": { @@ -82265,11 +82265,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "289" + "292" ], "coveredBy": [ - "289", - "290" + "292", + "293" ], "location": { "end": { @@ -82291,11 +82291,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "290" + "293" ], "coveredBy": [ - "289", - "290" + "292", + "293" ], "location": { "end": { @@ -82317,11 +82317,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "289" + "292" ], "coveredBy": [ - "289", - "290" + "292", + "293" ], "location": { "end": { @@ -82343,10 +82343,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "290" + "293" ], "coveredBy": [ - "290" + "293" ], "location": { "end": { @@ -82368,10 +82368,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "289" + "292" ], "coveredBy": [ - "289" + "292" ], "location": { "end": { @@ -82393,10 +82393,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "289" + "292" ], "coveredBy": [ - "289" + "292" ], "location": { "end": { @@ -82418,10 +82418,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "289" + "292" ], "coveredBy": [ - "289" + "292" ], "location": { "end": { @@ -82443,19 +82443,19 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "293" + "296" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82477,19 +82477,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82511,19 +82511,19 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "293" + "296" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82545,19 +82545,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82579,19 +82579,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82613,12 +82613,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "293" + "296" ], "coveredBy": [ - "293", - "294", - "295" + "296", + "297", + "298" ], "location": { "end": { @@ -82640,12 +82640,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "293" + "296" ], "coveredBy": [ - "293", - "294", - "295" + "296", + "297", + "298" ], "location": { "end": { @@ -82667,12 +82667,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "293" + "296" ], "coveredBy": [ - "293", - "294", - "295" + "296", + "297", + "298" ], "location": { "end": { @@ -82694,12 +82694,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "293" + "296" ], "coveredBy": [ - "293", - "294", - "295" + "296", + "297", + "298" ], "location": { "end": { @@ -82721,12 +82721,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "293" + "296" ], "coveredBy": [ - "293", - "294", - "295" + "296", + "297", + "298" ], "location": { "end": { @@ -82748,12 +82748,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "295" + "298" ], "coveredBy": [ - "293", - "294", - "295" + "296", + "297", + "298" ], "location": { "end": { @@ -82775,12 +82775,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "293" + "296" ], "coveredBy": [ - "293", - "294", - "295" + "296", + "297", + "298" ], "location": { "end": { @@ -82802,12 +82802,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "293" + "296" ], "coveredBy": [ - "293", - "294", - "295" + "296", + "297", + "298" ], "location": { "end": { @@ -82829,10 +82829,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "295" + "298" ], "coveredBy": [ - "295" + "298" ], "location": { "end": { @@ -82854,11 +82854,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "294" + "297" ], "coveredBy": [ - "293", - "294" + "296", + "297" ], "location": { "end": { @@ -82880,11 +82880,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "294" + "297" ], "coveredBy": [ - "293", - "294" + "296", + "297" ], "location": { "end": { @@ -82906,11 +82906,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "294" + "297" ], "coveredBy": [ - "293", - "294" + "296", + "297" ], "location": { "end": { @@ -82932,11 +82932,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "294" + "297" ], "coveredBy": [ - "293", - "294" + "296", + "297" ], "location": { "end": { @@ -82958,19 +82958,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -82992,19 +82992,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83026,19 +83026,19 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "292" + "295" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83060,19 +83060,19 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "292" + "295" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83094,19 +83094,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83128,19 +83128,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83162,10 +83162,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "292" + "295" ], "coveredBy": [ - "292" + "295" ], "location": { "end": { @@ -83187,19 +83187,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83221,19 +83221,19 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "289" + "292" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83255,11 +83255,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "289" + "292" ], "coveredBy": [ - "289", - "290" + "292", + "293" ], "location": { "end": { @@ -83281,19 +83281,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83315,19 +83315,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83349,19 +83349,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "288" + "291" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83383,19 +83383,19 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "291" + "294" ], "coveredBy": [ - "288", - "289", - "290", "291", "292", "293", "294", "295", "296", - "297" + "297", + "298", + "299", + "300" ], "location": { "end": { @@ -83423,13 +83423,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1660" + "1663" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83451,13 +83451,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1660" + "1663" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83479,13 +83479,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1660" + "1663" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83507,13 +83507,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1662" + "1665" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83535,10 +83535,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1662" + "1665" ], "coveredBy": [ - "1662" + "1665" ], "location": { "end": { @@ -83560,10 +83560,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1662" + "1665" ], "coveredBy": [ - "1662" + "1665" ], "location": { "end": { @@ -83585,13 +83585,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83613,13 +83613,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83641,13 +83641,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83669,13 +83669,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83697,13 +83697,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83725,13 +83725,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83753,13 +83753,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83781,13 +83781,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83809,13 +83809,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83837,13 +83837,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83865,13 +83865,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83893,13 +83893,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1661" + "1664" ], "coveredBy": [ - "1660", - "1661", - "1662", - "1663" + "1663", + "1664", + "1665", + "1666" ], "location": { "end": { @@ -83921,10 +83921,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1663" + "1666" ], "coveredBy": [ - "1663" + "1666" ], "location": { "end": { @@ -83946,10 +83946,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1663" + "1666" ], "coveredBy": [ - "1663" + "1666" ], "location": { "end": { @@ -83977,12 +83977,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "916" + "919" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -83993,7 +83990,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84015,12 +84015,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "916" + "919" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84031,7 +84028,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84053,12 +84053,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "916" + "919" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84069,7 +84066,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84091,12 +84091,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "918" + "921" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84107,7 +84104,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84129,15 +84129,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "918" + "921" ], "coveredBy": [ - "918", "921", - "922", "924", + "925", "927", - "928" + "930", + "931" ], "location": { "end": { @@ -84159,15 +84159,15 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "921" + "924" ], "coveredBy": [ - "918", "921", - "922", "924", + "925", "927", - "928" + "930", + "931" ], "location": { "end": { @@ -84189,12 +84189,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "919" + "922" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84205,7 +84202,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84227,12 +84227,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "916" + "919" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84243,7 +84240,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84265,12 +84265,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "919" + "922" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84281,7 +84278,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84303,12 +84303,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "916" + "919" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84319,7 +84316,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84341,12 +84341,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "918" + "921" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84357,7 +84354,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84379,12 +84379,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "918" + "921" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84395,7 +84392,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84417,12 +84417,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "916" + "919" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84433,7 +84430,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84455,12 +84455,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "916" + "919" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84471,7 +84468,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84493,12 +84493,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "916" + "919" ], "coveredBy": [ - "916", - "917", - "918", "919", "920", "921", @@ -84509,7 +84506,10 @@ "926", "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84531,14 +84531,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "925" + "928" ], "coveredBy": [ - "925", - "926", - "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84560,14 +84560,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "925" + "928" ], "coveredBy": [ - "925", - "926", - "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84589,14 +84589,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "925" + "928" ], "coveredBy": [ - "925", - "926", - "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84618,14 +84618,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "929" + "932" ], "coveredBy": [ - "925", - "926", - "927", "928", - "929" + "929", + "930", + "931", + "932" ], "location": { "end": { @@ -84647,10 +84647,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "929" + "932" ], "coveredBy": [ - "929" + "932" ], "location": { "end": { @@ -84672,13 +84672,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "925" + "928" ], "coveredBy": [ - "925", - "926", - "927", - "928" + "928", + "929", + "930", + "931" ], "location": { "end": { @@ -84700,13 +84700,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "925" + "928" ], "coveredBy": [ - "925", - "926", - "927", - "928" + "928", + "929", + "930", + "931" ], "location": { "end": { @@ -84728,13 +84728,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "927" + "930" ], "coveredBy": [ - "925", - "926", - "927", - "928" + "928", + "929", + "930", + "931" ], "location": { "end": { @@ -84756,11 +84756,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "927" + "930" ], "coveredBy": [ - "927", - "928" + "930", + "931" ], "location": { "end": { @@ -84782,11 +84782,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "928" + "931" ], "coveredBy": [ - "927", - "928" + "930", + "931" ], "location": { "end": { @@ -84808,11 +84808,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "927" + "930" ], "coveredBy": [ - "927", - "928" + "930", + "931" ], "location": { "end": { @@ -84834,11 +84834,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "928" + "931" ], "coveredBy": [ - "927", - "928" + "930", + "931" ], "location": { "end": { @@ -84860,11 +84860,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "927" + "930" ], "coveredBy": [ - "927", - "928" + "930", + "931" ], "location": { "end": { @@ -84886,11 +84886,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "927" + "930" ], "coveredBy": [ - "927", - "928" + "930", + "931" ], "location": { "end": { @@ -84912,11 +84912,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "927" + "930" ], "coveredBy": [ - "927", - "928" + "930", + "931" ], "location": { "end": { @@ -84938,10 +84938,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "928" + "931" ], "coveredBy": [ - "928" + "931" ], "location": { "end": { @@ -84963,10 +84963,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "928" + "931" ], "coveredBy": [ - "928" + "931" ], "location": { "end": { @@ -84988,11 +84988,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "927" + "930" ], "coveredBy": [ - "927", - "928" + "930", + "931" ], "location": { "end": { @@ -85014,11 +85014,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "925" + "928" ], "coveredBy": [ - "925", - "926" + "928", + "929" ], "location": { "end": { @@ -85046,12 +85046,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "424" + "427" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85062,7 +85059,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85084,12 +85084,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "424" + "427" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85100,7 +85097,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85122,12 +85122,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "424" + "427" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85138,7 +85135,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85160,12 +85160,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "427" + "430" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85176,7 +85173,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85198,12 +85198,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "427" + "430" ], "coveredBy": [ - "427", - "432", - "437" + "430", + "435", + "440" ], "location": { "end": { @@ -85225,12 +85225,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "424" + "427" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85241,7 +85238,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85263,12 +85263,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "424" + "427" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85279,7 +85276,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85301,12 +85301,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "424" + "427" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85317,7 +85314,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85339,12 +85339,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "427" + "430" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85355,7 +85352,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85377,12 +85377,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "427" + "430" ], "coveredBy": [ - "427", - "432", - "437" + "430", + "435", + "440" ], "location": { "end": { @@ -85404,12 +85404,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "426" + "429" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85420,7 +85417,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85442,12 +85442,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "426" + "429" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85458,7 +85455,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85480,12 +85480,9 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "426" + "429" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85496,7 +85493,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85518,12 +85518,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "427" + "430" ], "coveredBy": [ - "424", - "425", - "426", "427", "428", "429", @@ -85534,7 +85531,10 @@ "434", "435", "436", - "437" + "437", + "438", + "439", + "440" ], "location": { "end": { @@ -85556,12 +85556,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "427" + "430" ], "coveredBy": [ - "427", - "432", - "437" + "430", + "435", + "440" ], "location": { "end": { @@ -85589,16 +85589,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1678" + "1681" ], "coveredBy": [ - "1678", - "1679", - "1680", "1681", "1682", "1683", - "1684" + "1684", + "1685", + "1686", + "1687" ], "location": { "end": { @@ -85620,16 +85620,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1678" + "1681" ], "coveredBy": [ - "1678", - "1679", - "1680", "1681", "1682", "1683", - "1684" + "1684", + "1685", + "1686", + "1687" ], "location": { "end": { @@ -85651,16 +85651,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1678" + "1681" ], "coveredBy": [ - "1678", - "1679", - "1680", "1681", "1682", "1683", - "1684" + "1684", + "1685", + "1686", + "1687" ], "location": { "end": { @@ -85682,16 +85682,16 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1681" + "1684" ], "coveredBy": [ - "1678", - "1679", - "1680", "1681", "1682", "1683", - "1684" + "1684", + "1685", + "1686", + "1687" ], "location": { "end": { @@ -85713,16 +85713,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1678" + "1681" ], "coveredBy": [ - "1678", - "1679", - "1680", "1681", "1682", "1683", - "1684" + "1684", + "1685", + "1686", + "1687" ], "location": { "end": { @@ -85744,16 +85744,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1678" + "1681" ], "coveredBy": [ - "1678", - "1679", - "1680", "1681", "1682", "1683", - "1684" + "1684", + "1685", + "1686", + "1687" ], "location": { "end": { @@ -85775,16 +85775,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1678" + "1681" ], "coveredBy": [ - "1678", - "1679", - "1680", "1681", "1682", "1683", - "1684" + "1684", + "1685", + "1686", + "1687" ], "location": { "end": { @@ -85806,16 +85806,16 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1681" + "1684" ], "coveredBy": [ - "1678", - "1679", - "1680", "1681", "1682", "1683", - "1684" + "1684", + "1685", + "1686", + "1687" ], "location": { "end": { @@ -85837,16 +85837,16 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1681" + "1684" ], "coveredBy": [ - "1678", - "1679", - "1680", "1681", "1682", "1683", - "1684" + "1684", + "1685", + "1686", + "1687" ], "location": { "end": { @@ -85868,12 +85868,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1681" + "1684" ], "coveredBy": [ - "1681", - "1682", - "1684" + "1684", + "1685", + "1687" ], "location": { "end": { @@ -85895,12 +85895,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1681" + "1684" ], "coveredBy": [ - "1681", - "1682", - "1684" + "1684", + "1685", + "1687" ], "location": { "end": { @@ -85928,17 +85928,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1916", - "1917", - "1918", "1919", - "1927", - "1928", - "1929", - "1930" + "1920", + "1921", + "1922", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -85960,17 +85960,17 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1916", - "1917", - "1918", "1919", - "1927", - "1928", - "1929", - "1930" + "1920", + "1921", + "1922", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -85992,17 +85992,17 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1916", - "1917", - "1918", "1919", - "1927", - "1928", - "1929", - "1930" + "1920", + "1921", + "1922", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -86024,17 +86024,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1916", - "1917", - "1918", "1919", - "1927", - "1928", - "1929", - "1930" + "1920", + "1921", + "1922", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -86056,17 +86056,17 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1916", - "1917", - "1918", "1919", - "1927", - "1928", - "1929", - "1930" + "1920", + "1921", + "1922", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -86088,17 +86088,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1916", - "1917", - "1918", "1919", - "1927", - "1928", - "1929", - "1930" + "1920", + "1921", + "1922", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -86120,14 +86120,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1918", - "1927", - "1928", - "1929", - "1930" + "1921", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -86233,10 +86233,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1942" + "1945" ], "coveredBy": [ - "1942" + "1945" ], "location": { "end": { @@ -86258,10 +86258,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1942" + "1945" ], "coveredBy": [ - "1942" + "1945" ], "location": { "end": { @@ -86289,11 +86289,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86315,11 +86315,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86341,11 +86341,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86367,11 +86367,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86393,11 +86393,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86419,11 +86419,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86445,11 +86445,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86471,11 +86471,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86497,11 +86497,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86523,11 +86523,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1986" + "1989" ], "coveredBy": [ - "1986", - "1987" + "1989", + "1990" ], "location": { "end": { @@ -86555,19 +86555,19 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1943" + "1946" ], "coveredBy": [ - "1707", - "1708", - "1709", "1710", "1711", "1712", - "1912", - "1943", - "1944", - "1945" + "1713", + "1714", + "1715", + "1915", + "1946", + "1947", + "1948" ], "location": { "end": { @@ -86589,19 +86589,19 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1912" + "1915" ], "coveredBy": [ - "1707", - "1708", - "1709", "1710", "1711", "1712", - "1912", - "1943", - "1944", - "1945" + "1713", + "1714", + "1715", + "1915", + "1946", + "1947", + "1948" ], "location": { "end": { @@ -86623,19 +86623,19 @@ "testsCompleted": 8, "static": false, "killedBy": [ - "1943" + "1946" ], "coveredBy": [ - "1707", - "1708", - "1709", "1710", "1711", "1712", - "1912", - "1943", - "1944", - "1945" + "1713", + "1714", + "1715", + "1915", + "1946", + "1947", + "1948" ], "location": { "end": { @@ -86657,19 +86657,19 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1912" + "1915" ], "coveredBy": [ - "1707", - "1708", - "1709", "1710", "1711", "1712", - "1912", - "1943", - "1944", - "1945" + "1713", + "1714", + "1715", + "1915", + "1946", + "1947", + "1948" ], "location": { "end": { @@ -86691,12 +86691,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1943" + "1946" ], "coveredBy": [ - "1943", - "1944", - "1945" + "1946", + "1947", + "1948" ], "location": { "end": { @@ -86718,17 +86718,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1912" + "1915" ], "coveredBy": [ - "1707", - "1708", - "1709", "1710", "1711", "1712", - "1912", - "1945" + "1713", + "1714", + "1715", + "1915", + "1948" ], "location": { "end": { @@ -86756,37 +86756,37 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "723" + "726" ], "coveredBy": [ - "723", - "1273", - "1320", - "1449", - "1507", - "1529", - "1544", - "1616", - "1617", - "1618", + "726", + "1276", + "1323", + "1452", + "1510", + "1532", + "1547", "1619", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1620", + "1621", + "1622", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -86808,37 +86808,37 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1507" + "1510" ], "coveredBy": [ - "723", - "1273", - "1320", - "1449", - "1507", - "1529", - "1544", - "1616", - "1617", - "1618", + "726", + "1276", + "1323", + "1452", + "1510", + "1532", + "1547", "1619", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1620", + "1621", + "1622", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -86860,37 +86860,37 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1273" + "1276" ], "coveredBy": [ - "723", - "1273", - "1320", - "1449", - "1507", - "1529", - "1544", - "1616", - "1617", - "1618", + "726", + "1276", + "1323", + "1452", + "1510", + "1532", + "1547", "1619", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1620", + "1621", + "1622", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -86912,33 +86912,33 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1507" + "1510" ], "coveredBy": [ - "1273", - "1320", - "1507", - "1529", - "1544", - "1618", - "1619", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1276", + "1323", + "1510", + "1532", + "1547", + "1621", + "1622", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -86966,58 +86966,58 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "702" + "705" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1423", - "1424", - "1425", + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", "1426", "1427", "1428", "1429", "1430", "1431", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1432", + "1433", + "1434", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87039,11 +87039,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1428" + "1431" ], "coveredBy": [ - "1428", - "1429" + "1431", + "1432" ], "location": { "end": { @@ -87065,11 +87065,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1428" + "1431" ], "coveredBy": [ - "1428", - "1429" + "1431", + "1432" ], "location": { "end": { @@ -87091,11 +87091,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1429" + "1432" ], "coveredBy": [ - "1428", - "1429" + "1431", + "1432" ], "location": { "end": { @@ -87117,11 +87117,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1428" + "1431" ], "coveredBy": [ - "1428", - "1429" + "1431", + "1432" ], "location": { "end": { @@ -87143,11 +87143,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1429" + "1432" ], "coveredBy": [ - "1428", - "1429" + "1431", + "1432" ], "location": { "end": { @@ -87169,10 +87169,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1429" + "1432" ], "coveredBy": [ - "1429" + "1432" ], "location": { "end": { @@ -87194,11 +87194,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1428" + "1431" ], "coveredBy": [ - "1428", - "1429" + "1431", + "1432" ], "location": { "end": { @@ -87220,58 +87220,58 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "1424" + "1427" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1423", - "1424", - "1425", + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", "1426", "1427", "1428", "1429", "1430", "1431", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1432", + "1433", + "1434", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87293,58 +87293,58 @@ "testsCompleted": 11, "static": false, "killedBy": [ - "1424" + "1427" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1423", - "1424", - "1425", + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", "1426", "1427", "1428", "1429", "1430", "1431", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1432", + "1433", + "1434", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87366,58 +87366,58 @@ "testsCompleted": 16, "static": false, "killedBy": [ - "1426" + "1429" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1423", - "1424", - "1425", + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", "1426", "1427", "1428", "1429", "1430", "1431", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1432", + "1433", + "1434", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87439,58 +87439,58 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "1424" + "1427" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1423", - "1424", - "1425", + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", "1426", "1427", "1428", "1429", "1430", "1431", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1432", + "1433", + "1434", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87512,36 +87512,36 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1426" + "1429" ], "coveredBy": [ - "723", - "1273", - "1320", - "1426", - "1427", - "1431", - "1449", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "726", + "1276", + "1323", + "1429", + "1430", + "1434", + "1452", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87569,26 +87569,26 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "702" + "705" ], "coveredBy": [ - "702", - "736", - "801", - "886", - "896", - "953", - "1031", - "1066", - "1072", - "1215", - "1231", - "1244", - "1492", - "1773", - "1851", - "1852", - "1853" + "705", + "739", + "804", + "889", + "899", + "956", + "1034", + "1069", + "1075", + "1218", + "1234", + "1247", + "1495", + "1776", + "1854", + "1855", + "1856" ], "location": { "end": { @@ -87610,26 +87610,26 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "702" + "705" ], "coveredBy": [ - "702", - "736", - "801", - "886", - "896", - "953", - "1031", - "1066", - "1072", - "1215", - "1231", - "1244", - "1492", - "1773", - "1851", - "1852", - "1853" + "705", + "739", + "804", + "889", + "899", + "956", + "1034", + "1069", + "1075", + "1218", + "1234", + "1247", + "1495", + "1776", + "1854", + "1855", + "1856" ], "location": { "end": { @@ -87651,10 +87651,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1853" + "1856" ], "coveredBy": [ - "1853" + "1856" ], "location": { "end": { @@ -87682,60 +87682,60 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87757,60 +87757,60 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "1465" + "1468" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87832,60 +87832,60 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "723" + "726" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87907,60 +87907,60 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "702" + "705" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -87982,60 +87982,60 @@ "testsCompleted": 11, "static": false, "killedBy": [ - "1465" + "1468" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -88057,60 +88057,60 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "723" + "726" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -88132,60 +88132,60 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1464" + "1467" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -88207,60 +88207,60 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "723" + "726" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -88282,60 +88282,60 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "723" + "726" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -88357,60 +88357,60 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1464" + "1467" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -88432,60 +88432,60 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "1464" + "1467" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -88507,60 +88507,60 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1464" + "1467" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -88582,13 +88582,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1466" + "1469" ], "coveredBy": [ - "1466", - "1467", - "1468", - "1470" + "1469", + "1470", + "1471", + "1473" ], "location": { "end": { @@ -88610,13 +88610,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1466" + "1469" ], "coveredBy": [ - "1466", - "1467", - "1468", - "1470" + "1469", + "1470", + "1471", + "1473" ], "location": { "end": { @@ -88638,12 +88638,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1467" + "1470" ], "coveredBy": [ - "1467", - "1468", - "1470" + "1470", + "1471", + "1473" ], "location": { "end": { @@ -88665,12 +88665,12 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1468" + "1471" ], "coveredBy": [ - "1467", - "1468", - "1470" + "1470", + "1471", + "1473" ], "location": { "end": { @@ -88692,60 +88692,60 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1467" + "1470" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -88767,13 +88767,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1467" + "1470" ], "coveredBy": [ - "1467", - "1468", - "1469", - "1470" + "1470", + "1471", + "1472", + "1473" ], "location": { "end": { @@ -88795,13 +88795,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1467" + "1470" ], "coveredBy": [ - "1467", - "1468", - "1469", - "1470" + "1470", + "1471", + "1472", + "1473" ], "location": { "end": { @@ -88823,13 +88823,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1469" + "1472" ], "coveredBy": [ - "1467", - "1468", - "1469", - "1470" + "1470", + "1471", + "1472", + "1473" ], "location": { "end": { @@ -88851,13 +88851,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1469" + "1472" ], "coveredBy": [ - "1467", - "1468", - "1469", - "1470" + "1470", + "1471", + "1472", + "1473" ], "location": { "end": { @@ -88879,13 +88879,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1467" + "1470" ], "coveredBy": [ - "1467", - "1468", - "1469", - "1470" + "1470", + "1471", + "1472", + "1473" ], "location": { "end": { @@ -88907,13 +88907,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1467" + "1470" ], "coveredBy": [ - "1467", - "1468", - "1469", - "1470" + "1470", + "1471", + "1472", + "1473" ], "location": { "end": { @@ -88935,11 +88935,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1469" + "1472" ], "coveredBy": [ - "1469", - "1470" + "1472", + "1473" ], "location": { "end": { @@ -88967,21 +88967,18 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "909" + "912" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -88991,40 +88988,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89046,21 +89046,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89070,40 +89067,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89125,21 +89125,18 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "909" + "912" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89149,40 +89146,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89204,21 +89204,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "702" + "705" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89228,40 +89225,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89283,21 +89283,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89307,40 +89304,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89362,21 +89362,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "757" + "760" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89386,40 +89383,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89441,21 +89441,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "269" + "272" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89465,40 +89462,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89520,14 +89520,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "908" + "911" ], "coveredBy": [ - "908", - "909", - "910", "911", - "912" + "912", + "913", + "914", + "915" ], "location": { "end": { @@ -89549,14 +89549,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "908" + "911" ], "coveredBy": [ - "908", - "909", - "910", "911", - "912" + "912", + "913", + "914", + "915" ], "location": { "end": { @@ -89578,14 +89578,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "908" + "911" ], "coveredBy": [ - "908", - "909", - "910", "911", - "912" + "912", + "913", + "914", + "915" ], "location": { "end": { @@ -89607,21 +89607,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "702" + "705" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89631,40 +89628,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89686,21 +89686,18 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "906" + "909" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89710,40 +89707,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89765,21 +89765,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1049" + "1052" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89789,40 +89786,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89844,21 +89844,18 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "906" + "909" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89868,40 +89865,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -89923,21 +89923,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "702" + "705" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -89947,40 +89944,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -90002,21 +90002,18 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "906" + "909" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -90026,40 +90023,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -90081,21 +90081,18 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "906" + "909" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -90105,40 +90102,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -90160,21 +90160,18 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "906" + "909" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -90184,40 +90181,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -90239,14 +90239,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "911" + "914" ], "coveredBy": [ - "911", - "912", - "913", "914", - "915" + "915", + "916", + "917", + "918" ], "location": { "end": { @@ -90268,14 +90268,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "911" + "914" ], "coveredBy": [ - "911", - "912", - "913", "914", - "915" + "915", + "916", + "917", + "918" ], "location": { "end": { @@ -90297,13 +90297,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "912" + "915" ], "coveredBy": [ - "912", - "913", - "914", - "915" + "915", + "916", + "917", + "918" ], "location": { "end": { @@ -90325,13 +90325,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "914" + "917" ], "coveredBy": [ - "912", - "913", - "914", - "915" + "915", + "916", + "917", + "918" ], "location": { "end": { @@ -90353,21 +90353,18 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "912" + "915" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", "907", "908", "909", @@ -90377,40 +90374,43 @@ "913", "914", "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -90432,13 +90432,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "912" + "915" ], "coveredBy": [ - "912", - "913", - "914", - "915" + "915", + "916", + "917", + "918" ], "location": { "end": { @@ -90460,13 +90460,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "912" + "915" ], "coveredBy": [ - "912", - "913", - "914", - "915" + "915", + "916", + "917", + "918" ], "location": { "end": { @@ -90488,13 +90488,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "912" + "915" ], "coveredBy": [ - "912", - "913", - "914", - "915" + "915", + "916", + "917", + "918" ], "location": { "end": { @@ -90516,13 +90516,13 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "915" + "918" ], "coveredBy": [ - "912", - "913", - "914", - "915" + "915", + "916", + "917", + "918" ], "location": { "end": { @@ -90544,11 +90544,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "915" + "918" ], "coveredBy": [ - "913", - "915" + "916", + "918" ], "location": { "end": { @@ -90576,61 +90576,61 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "702" + "705" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1169", - "1170", - "1171", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", "1172", "1173", "1174", "1175", "1176", "1177", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1178", + "1179", + "1180", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -90652,61 +90652,61 @@ "testsCompleted": 11, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1169", - "1170", - "1171", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", "1172", "1173", "1174", "1175", "1176", "1177", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1178", + "1179", + "1180", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -90728,18 +90728,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1169", - "1170", - "1171", "1172", "1173", "1174", "1175", "1176", - "1177" + "1177", + "1178", + "1179", + "1180" ], "location": { "end": { @@ -90761,61 +90761,61 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1169", - "1170", - "1171", + "272", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", "1172", "1173", "1174", "1175", "1176", "1177", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1178", + "1179", + "1180", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -90837,18 +90837,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1174" + "1177" ], "coveredBy": [ - "1169", - "1170", - "1171", "1172", "1173", "1174", "1175", "1176", - "1177" + "1177", + "1178", + "1179", + "1180" ], "location": { "end": { @@ -90870,18 +90870,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1169", - "1170", - "1171", "1172", "1173", "1174", "1175", "1176", - "1177" + "1177", + "1178", + "1179", + "1180" ], "location": { "end": { @@ -90903,18 +90903,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1169", - "1170", - "1171", "1172", "1173", "1174", "1175", "1176", - "1177" + "1177", + "1178", + "1179", + "1180" ], "location": { "end": { @@ -90936,18 +90936,18 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1174" + "1177" ], "coveredBy": [ - "1169", - "1170", - "1171", "1172", "1173", "1174", "1175", "1176", - "1177" + "1177", + "1178", + "1179", + "1180" ], "location": { "end": { @@ -90969,11 +90969,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170", - "1171" + "1173", + "1174" ], "location": { "end": { @@ -90995,11 +90995,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170", - "1171" + "1173", + "1174" ], "location": { "end": { @@ -91021,11 +91021,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1171" + "1174" ], "coveredBy": [ - "1170", - "1171" + "1173", + "1174" ], "location": { "end": { @@ -91047,11 +91047,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170", - "1171" + "1173", + "1174" ], "location": { "end": { @@ -91073,10 +91073,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1171" + "1174" ], "coveredBy": [ - "1171" + "1174" ], "location": { "end": { @@ -91098,10 +91098,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170" + "1173" ], "location": { "end": { @@ -91123,15 +91123,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170", "1173", - "1174", - "1175", "1176", - "1177" + "1177", + "1178", + "1179", + "1180" ], "location": { "end": { @@ -91153,15 +91153,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170", "1173", - "1174", - "1175", "1176", - "1177" + "1177", + "1178", + "1179", + "1180" ], "location": { "end": { @@ -91183,15 +91183,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170", "1173", - "1174", - "1175", "1176", - "1177" + "1177", + "1178", + "1179", + "1180" ], "location": { "end": { @@ -91213,15 +91213,15 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1174" + "1177" ], "coveredBy": [ - "1170", "1173", - "1174", - "1175", "1176", - "1177" + "1177", + "1178", + "1179", + "1180" ], "location": { "end": { @@ -91243,10 +91243,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1174" + "1177" ], "coveredBy": [ - "1174" + "1177" ], "location": { "end": { @@ -91268,14 +91268,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170", "1173", - "1175", "1176", - "1177" + "1178", + "1179", + "1180" ], "location": { "end": { @@ -91297,14 +91297,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1175" + "1178" ], "coveredBy": [ - "1170", "1173", - "1175", "1176", - "1177" + "1178", + "1179", + "1180" ], "location": { "end": { @@ -91326,14 +91326,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170", "1173", - "1175", "1176", - "1177" + "1178", + "1179", + "1180" ], "location": { "end": { @@ -91355,11 +91355,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1175" + "1178" ], "coveredBy": [ - "1175", - "1176" + "1178", + "1179" ], "location": { "end": { @@ -91381,12 +91381,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1170" + "1173" ], "coveredBy": [ - "1170", "1173", - "1177" + "1176", + "1180" ], "location": { "end": { @@ -91408,12 +91408,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1177" + "1180" ], "coveredBy": [ - "1170", "1173", - "1177" + "1176", + "1180" ], "location": { "end": { @@ -91435,12 +91435,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1177" + "1180" ], "coveredBy": [ - "1170", "1173", - "1177" + "1176", + "1180" ], "location": { "end": { @@ -91468,11 +91468,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1779" + "1782" ], "coveredBy": [ - "1779", - "1780" + "1782", + "1783" ], "location": { "end": { @@ -91494,11 +91494,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1779" + "1782" ], "coveredBy": [ - "1779", - "1780" + "1782", + "1783" ], "location": { "end": { @@ -91520,11 +91520,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1780" + "1783" ], "coveredBy": [ - "1779", - "1780" + "1782", + "1783" ], "location": { "end": { @@ -91546,11 +91546,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1779" + "1782" ], "coveredBy": [ - "1779", - "1780" + "1782", + "1783" ], "location": { "end": { @@ -91572,10 +91572,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1780" + "1783" ], "coveredBy": [ - "1780" + "1783" ], "location": { "end": { @@ -91597,10 +91597,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1779" + "1782" ], "coveredBy": [ - "1779" + "1782" ], "location": { "end": { @@ -91670,17 +91670,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1280", - "1927", - "1928", - "1929", + "1283", "1930", "1931", "1932", - "1933" + "1933", + "1934", + "1935", + "1936" ], "location": { "end": { @@ -91702,17 +91702,17 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "1280", - "1927", - "1928", - "1929", + "1283", "1930", "1931", "1932", - "1933" + "1933", + "1934", + "1935", + "1936" ], "location": { "end": { @@ -91740,16 +91740,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1787" + "1790" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -91771,16 +91771,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1787" + "1790" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -91802,16 +91802,16 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1788" + "1791" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -91833,16 +91833,16 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1788" + "1791" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -91864,16 +91864,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1791" + "1794" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -91895,16 +91895,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1787" + "1790" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -91926,16 +91926,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1787" + "1790" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -91957,16 +91957,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1787" + "1790" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -91988,16 +91988,16 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1790" + "1793" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -92019,16 +92019,16 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1790" + "1793" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -92050,16 +92050,16 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1793" + "1796" ], "coveredBy": [ - "1787", - "1788", - "1789", "1790", "1791", "1792", - "1793" + "1793", + "1794", + "1795", + "1796" ], "location": { "end": { @@ -94179,12 +94179,9 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1287" + "1290" ], "coveredBy": [ - "1284", - "1285", - "1286", "1287", "1288", "1289", @@ -94194,7 +94191,10 @@ "1293", "1294", "1295", - "1363" + "1296", + "1297", + "1298", + "1366" ], "location": { "end": { @@ -94216,12 +94216,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1284" + "1287" ], "coveredBy": [ - "1284", - "1285", - "1286", "1287", "1288", "1289", @@ -94231,7 +94228,10 @@ "1293", "1294", "1295", - "1363" + "1296", + "1297", + "1298", + "1366" ], "location": { "end": { @@ -94253,12 +94253,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1284" + "1287" ], "coveredBy": [ - "1284", - "1285", - "1286", "1287", "1288", "1289", @@ -94268,7 +94265,10 @@ "1293", "1294", "1295", - "1363" + "1296", + "1297", + "1298", + "1366" ], "location": { "end": { @@ -94290,12 +94290,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1284" + "1287" ], "coveredBy": [ - "1284", - "1285", - "1286", "1287", "1288", "1289", @@ -94305,7 +94302,10 @@ "1293", "1294", "1295", - "1363" + "1296", + "1297", + "1298", + "1366" ], "location": { "end": { @@ -94327,12 +94327,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1284" + "1287" ], "coveredBy": [ - "1284", - "1285", - "1286", "1287", "1288", "1289", @@ -94342,7 +94339,10 @@ "1293", "1294", "1295", - "1363" + "1296", + "1297", + "1298", + "1366" ], "location": { "end": { @@ -94364,12 +94364,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1284" + "1287" ], "coveredBy": [ - "1284", - "1285", - "1286", "1287", "1288", "1289", @@ -94379,7 +94376,10 @@ "1293", "1294", "1295", - "1363" + "1296", + "1297", + "1298", + "1366" ], "location": { "end": { @@ -94401,12 +94401,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1284" + "1287" ], "coveredBy": [ - "1284", - "1285", - "1286", "1287", "1288", "1289", @@ -94416,7 +94413,10 @@ "1293", "1294", "1295", - "1363" + "1296", + "1297", + "1298", + "1366" ], "location": { "end": { @@ -94438,10 +94438,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1286" + "1289" ], "coveredBy": [ - "1286" + "1289" ], "location": { "end": { @@ -94463,10 +94463,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1286" + "1289" ], "coveredBy": [ - "1286" + "1289" ], "location": { "end": { @@ -94494,12 +94494,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1936" + "1939" ], "coveredBy": [ - "1936", - "1937", - "1938" + "1939", + "1940", + "1941" ], "location": { "end": { @@ -94521,12 +94521,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1938" + "1941" ], "coveredBy": [ - "1936", - "1937", - "1938" + "1939", + "1940", + "1941" ], "location": { "end": { @@ -94548,12 +94548,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1936" + "1939" ], "coveredBy": [ - "1936", - "1937", - "1938" + "1939", + "1940", + "1941" ], "location": { "end": { @@ -94575,12 +94575,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1938" + "1941" ], "coveredBy": [ - "1936", - "1937", - "1938" + "1939", + "1940", + "1941" ], "location": { "end": { @@ -94602,12 +94602,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1936" + "1939" ], "coveredBy": [ - "1936", - "1937", - "1938" + "1939", + "1940", + "1941" ], "location": { "end": { @@ -94629,12 +94629,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1936" + "1939" ], "coveredBy": [ - "1936", - "1937", - "1938" + "1939", + "1940", + "1941" ], "location": { "end": { @@ -94656,12 +94656,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1936" + "1939" ], "coveredBy": [ - "1936", - "1937", - "1938" + "1939", + "1940", + "1941" ], "location": { "end": { @@ -94683,12 +94683,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1936" + "1939" ], "coveredBy": [ - "1936", - "1937", - "1938" + "1939", + "1940", + "1941" ], "location": { "end": { @@ -94710,12 +94710,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1936" + "1939" ], "coveredBy": [ - "1936", - "1937", - "1938" + "1939", + "1940", + "1941" ], "location": { "end": { @@ -94743,12 +94743,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1834" + "1837" ], "coveredBy": [ - "1834", - "1835", - "1836" + "1837", + "1838", + "1839" ], "location": { "end": { @@ -94770,12 +94770,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1834" + "1837" ], "coveredBy": [ - "1834", - "1835", - "1836" + "1837", + "1838", + "1839" ], "location": { "end": { @@ -94797,12 +94797,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1834" + "1837" ], "coveredBy": [ - "1834", - "1835", - "1836" + "1837", + "1838", + "1839" ], "location": { "end": { @@ -94824,12 +94824,12 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1836" + "1839" ], "coveredBy": [ - "1834", - "1835", - "1836" + "1837", + "1838", + "1839" ], "location": { "end": { @@ -94851,10 +94851,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1836" + "1839" ], "coveredBy": [ - "1836" + "1839" ], "location": { "end": { @@ -94876,10 +94876,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1836" + "1839" ], "coveredBy": [ - "1836" + "1839" ], "location": { "end": { @@ -94901,12 +94901,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1834" + "1837" ], "coveredBy": [ - "1834", - "1835", - "1836" + "1837", + "1838", + "1839" ], "location": { "end": { @@ -94928,12 +94928,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1834" + "1837" ], "coveredBy": [ - "1834", - "1835", - "1836" + "1837", + "1838", + "1839" ], "location": { "end": { @@ -95015,24 +95015,21 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1072" + "1075" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1183", - "1184", - "1185", + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", "1186", "1187", "1188", @@ -95043,35 +95040,38 @@ "1193", "1194", "1195", - "1215", - "1231", - "1244", - "1273", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1196", + "1197", + "1198", + "1218", + "1234", + "1247", + "1276", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -95093,24 +95093,21 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1183" + "1186" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1183", - "1184", - "1185", + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", "1186", "1187", "1188", @@ -95121,35 +95118,38 @@ "1193", "1194", "1195", - "1215", - "1231", - "1244", - "1273", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1196", + "1197", + "1198", + "1218", + "1234", + "1247", + "1276", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -95171,24 +95171,21 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1188" + "1191" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1183", - "1184", - "1185", + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", "1186", "1187", "1188", @@ -95199,35 +95196,38 @@ "1193", "1194", "1195", - "1215", - "1231", - "1244", - "1273", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1196", + "1197", + "1198", + "1218", + "1234", + "1247", + "1276", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -95249,13 +95249,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1188" + "1191" ], "coveredBy": [ - "1187", - "1188", - "1192", - "1193" + "1190", + "1191", + "1195", + "1196" ], "location": { "end": { @@ -95277,13 +95277,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1192" + "1195" ], "coveredBy": [ - "1187", - "1188", - "1192", - "1193" + "1190", + "1191", + "1195", + "1196" ], "location": { "end": { @@ -95305,13 +95305,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1187" + "1190" ], "coveredBy": [ - "1187", - "1188", - "1192", - "1193" + "1190", + "1191", + "1195", + "1196" ], "location": { "end": { @@ -95333,11 +95333,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1187" + "1190" ], "coveredBy": [ - "1187", - "1188" + "1190", + "1191" ], "location": { "end": { @@ -95359,11 +95359,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1187" + "1190" ], "coveredBy": [ - "1187", - "1188" + "1190", + "1191" ], "location": { "end": { @@ -95385,13 +95385,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1188" + "1191" ], "coveredBy": [ - "1187", - "1188", - "1192", - "1193" + "1190", + "1191", + "1195", + "1196" ], "location": { "end": { @@ -95419,28 +95419,28 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "702" + "705" ], "coveredBy": [ - "269", - "702", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1190", - "1195", - "1215", - "1244", - "1492", - "1773", - "1949", - "1950", - "1951" + "272", + "705", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1193", + "1198", + "1218", + "1247", + "1495", + "1776", + "1952", + "1953", + "1954" ], "location": { "end": { @@ -95522,14 +95522,11 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "1629" + "1632" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -95539,70 +95536,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -95624,14 +95624,11 @@ "testsCompleted": 16, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -95641,70 +95638,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -95726,14 +95726,11 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -95743,70 +95740,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -95828,14 +95828,11 @@ "testsCompleted": 16, "static": false, "killedBy": [ - "1629" + "1632" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -95845,70 +95842,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -95930,14 +95930,11 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -95947,70 +95944,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96032,56 +96032,56 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1629" + "1632" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1629", - "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", + "1632", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96103,14 +96103,11 @@ "testsCompleted": 15, "static": false, "killedBy": [ - "1631" + "1634" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96120,46 +96117,49 @@ "633", "634", "635", - "702", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", - "1280", - "1363", - "1492", - "1627", - "1628", - "1629", + "1272", + "1273", + "1274", + "1283", + "1366", + "1495", "1630", "1631", "1632", "1633", "1634", - "1773", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1776", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96181,14 +96181,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96198,46 +96195,49 @@ "633", "634", "635", - "702", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", - "1280", - "1363", - "1492", - "1627", - "1628", - "1629", + "1272", + "1273", + "1274", + "1283", + "1366", + "1495", "1630", "1631", "1632", "1633", "1634", - "1773", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1776", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96259,14 +96259,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96276,46 +96273,49 @@ "633", "634", "635", - "702", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", - "1271", - "1280", - "1363", - "1492", - "1627", - "1628", - "1629", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", + "1271", + "1272", + "1273", + "1274", + "1283", + "1366", + "1495", "1630", "1631", "1632", "1633", "1634", - "1773", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1776", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96337,14 +96337,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96354,46 +96351,49 @@ "633", "634", "635", - "702", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", - "1280", - "1363", - "1492", - "1627", - "1628", - "1629", + "1272", + "1273", + "1274", + "1283", + "1366", + "1495", "1630", "1631", "1632", "1633", "1634", - "1773", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1776", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96415,14 +96415,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96432,46 +96429,49 @@ "633", "634", "635", - "702", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", - "1280", - "1363", - "1492", - "1627", - "1628", - "1629", + "1272", + "1273", + "1274", + "1283", + "1366", + "1495", "1630", "1631", "1632", "1633", "1634", - "1773", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1776", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96493,10 +96493,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1631" + "1634" ], "coveredBy": [ - "1631" + "1634" ], "location": { "end": { @@ -96518,14 +96518,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96535,46 +96532,49 @@ "633", "634", "635", - "702", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", - "1280", - "1363", - "1492", - "1627", - "1628", - "1629", + "1272", + "1273", + "1274", + "1283", + "1366", + "1495", "1630", "1631", "1632", "1633", "1634", - "1773", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1776", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96596,14 +96596,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96613,70 +96610,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96698,14 +96698,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96715,70 +96712,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96800,14 +96800,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96817,70 +96814,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -96902,14 +96902,11 @@ "testsCompleted": 12, "static": false, "killedBy": [ - "1633" + "1636" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -96919,70 +96916,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -97004,14 +97004,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -97021,70 +97018,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -97106,14 +97106,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -97123,70 +97120,73 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1004", - "1005", - "1006", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", "1007", "1008", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "1009", + "1010", + "1011", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1363", - "1449", - "1492", - "1507", - "1529", - "1544", - "1627", - "1628", - "1629", + "1274", + "1276", + "1283", + "1323", + "1366", + "1452", + "1495", + "1510", + "1532", + "1547", "1630", "1631", "1632", "1633", "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1635", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -97208,23 +97208,23 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1627" + "1630" ], "coveredBy": [ - "1004", - "1005", - "1006", "1007", "1008", - "1363", - "1627", - "1628", - "1629", + "1009", + "1010", + "1011", + "1366", "1630", "1631", "1632", "1633", - "1634" + "1634", + "1635", + "1636", + "1637" ], "location": { "end": { @@ -97246,14 +97246,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1634" + "1637" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -97263,58 +97260,61 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1633", - "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1274", + "1276", + "1283", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -97336,14 +97336,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1633" + "1636" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -97353,58 +97350,61 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", - "1271", - "1273", - "1280", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1633", - "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", + "1271", + "1272", + "1273", + "1274", + "1276", + "1283", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -97426,14 +97426,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1633" + "1636" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -97443,58 +97440,61 @@ "633", "634", "635", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "636", + "637", + "638", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", + "1272", "1273", - "1280", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1633", - "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "1274", + "1276", + "1283", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1636", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -97516,14 +97516,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1633" + "1636" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -97533,33 +97530,36 @@ "633", "634", "635", - "702", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "636", + "637", + "638", + "705", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", - "1280", - "1492", - "1633", - "1773", - "1927", - "1928", - "1929", - "1930" + "1272", + "1273", + "1274", + "1283", + "1495", + "1636", + "1776", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -97581,14 +97581,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1633" + "1636" ], "coveredBy": [ - "269", - "524", - "624", - "625", - "626", + "272", + "527", "627", "628", "629", @@ -97598,33 +97595,36 @@ "633", "634", "635", - "702", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1141", - "1151", - "1215", - "1231", - "1244", - "1268", - "1269", - "1270", + "636", + "637", + "638", + "705", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1144", + "1154", + "1218", + "1234", + "1247", "1271", - "1280", - "1492", - "1633", - "1773", - "1927", - "1928", - "1929", - "1930" + "1272", + "1273", + "1274", + "1283", + "1495", + "1636", + "1776", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -97646,54 +97646,54 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1634" + "1637" ], "coveredBy": [ - "269", - "702", - "723", - "736", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1492", - "1507", - "1529", - "1544", - "1634", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1927", - "1928", - "1929", - "1930" + "272", + "705", + "726", + "739", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1495", + "1510", + "1532", + "1547", + "1637", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -97721,14 +97721,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -97750,14 +97750,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -97779,14 +97779,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -97808,14 +97808,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -97837,14 +97837,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1872" + "1875" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -97866,14 +97866,14 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1872" + "1875" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -97895,14 +97895,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -97924,14 +97924,14 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1870" + "1873" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -97953,14 +97953,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -97982,14 +97982,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -98011,14 +98011,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -98040,14 +98040,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -98069,14 +98069,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1868" + "1871" ], "coveredBy": [ - "1868", - "1869", - "1870", "1871", - "1872" + "1872", + "1873", + "1874", + "1875" ], "location": { "end": { @@ -98098,11 +98098,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1870" + "1873" ], "coveredBy": [ - "1870", - "1872" + "1873", + "1875" ], "location": { "end": { @@ -98130,16 +98130,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1759" + "1762" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98161,16 +98161,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1759" + "1762" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98192,16 +98192,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1763" + "1766" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98223,16 +98223,16 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "1763" + "1766" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98254,16 +98254,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1759" + "1762" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98285,16 +98285,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1759" + "1762" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98316,16 +98316,16 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1765" + "1768" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98347,16 +98347,16 @@ "testsCompleted": 7, "static": false, "killedBy": [ - "1765" + "1768" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98378,16 +98378,16 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1764" + "1767" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98409,16 +98409,16 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1764" + "1767" ], "coveredBy": [ - "1759", - "1760", - "1761", "1762", "1763", "1764", - "1765" + "1765", + "1766", + "1767", + "1768" ], "location": { "end": { @@ -98446,10 +98446,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "269", - "387", - "388", - "389", + "272", "390", "391", "392", @@ -98469,62 +98466,65 @@ "406", "407", "408", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "409", + "410", + "411", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1837", - "1838", - "1839", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", "1840", "1841", "1842", + "1843", "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1845", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -98546,13 +98546,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1841" + "1844" ], "coveredBy": [ - "1839", - "1840", - "1841", - "1842" + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98574,13 +98574,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1841" + "1844" ], "coveredBy": [ - "1839", - "1840", - "1841", - "1842" + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98602,13 +98602,13 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1841" + "1844" ], "coveredBy": [ - "1839", - "1840", - "1841", - "1842" + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98630,25 +98630,25 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "395" + "398" ], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1837", - "1838", - "1839", + "1471", + "1473", "1840", "1841", - "1842" + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98670,22 +98670,22 @@ "static": false, "killedBy": [], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1837", - "1838", - "1839", + "1471", + "1473", "1840", "1841", - "1842" + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98707,22 +98707,22 @@ "static": false, "killedBy": [], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1837", - "1838", - "1839", + "1471", + "1473", "1840", "1841", - "1842" + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98744,22 +98744,22 @@ "static": false, "killedBy": [], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1837", - "1838", - "1839", + "1471", + "1473", "1840", "1841", - "1842" + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98781,8 +98781,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1837", - "1838" + "1840", + "1841" ], "location": { "end": { @@ -98804,23 +98804,23 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "395" + "398" ], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1839", - "1840", - "1841", - "1842" + "1471", + "1473", + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98842,23 +98842,23 @@ "testsCompleted": 11, "static": false, "killedBy": [ - "1839" + "1842" ], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1839", - "1840", - "1841", - "1842" + "1471", + "1473", + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98880,23 +98880,23 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "1841" + "1844" ], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1839", - "1840", - "1841", - "1842" + "1471", + "1473", + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98918,23 +98918,23 @@ "testsCompleted": 13, "static": false, "killedBy": [ - "1841" + "1844" ], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1839", - "1840", - "1841", - "1842" + "1471", + "1473", + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98956,23 +98956,23 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1841" + "1844" ], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1839", - "1840", - "1841", - "1842" + "1471", + "1473", + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -98994,23 +98994,23 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "1842" + "1845" ], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1839", - "1840", - "1841", - "1842" + "1471", + "1473", + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -99032,23 +99032,23 @@ "testsCompleted": 14, "static": false, "killedBy": [ - "1842" + "1845" ], "coveredBy": [ - "393", - "394", - "395", - "402", - "403", - "404", + "396", + "397", + "398", + "405", "406", - "1467", - "1468", + "407", + "409", "1470", - "1839", - "1840", - "1841", - "1842" + "1471", + "1473", + "1842", + "1843", + "1844", + "1845" ], "location": { "end": { @@ -99070,10 +99070,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "269", - "387", - "388", - "389", + "272", "390", "391", "392", @@ -99093,62 +99090,65 @@ "406", "407", "408", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", + "409", + "410", + "411", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", "1466", "1467", "1468", "1469", "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1837", - "1838", - "1839", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", "1840", "1841", "1842", + "1843", "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908" + "1845", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911" ], "location": { "end": { @@ -99168,13 +99168,116 @@ "language": "typescript", "mutants": [ { - "id": "3120", + "id": "3121", "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", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1887" + ], + "coveredBy": [ + "1887", + "1888" + ], + "location": { + "end": { + "column": 4, + "line": 22 + }, + "start": { + "column": 124, + "line": 14 + } + } + }, + { + "id": "3122", + "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 {}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1888" + ], + "coveredBy": [ + "1887", + "1888" + ], + "location": { + "end": { + "column": 6, + "line": 21 + }, + "start": { + "column": 19, + "line": 18 + } + } + }, + { + "id": "3123", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1888" + ], + "coveredBy": [ + "1887", + "1888" + ], + "location": { + "end": { + "column": 92, + "line": 19 + }, + "start": { + "column": 18, + "line": 19 + } + } + }, + { + "id": "3124", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1888" + ], + "coveredBy": [ + "1887", + "1888" + ], + "location": { + "end": { + "column": 88, + "line": 20 + }, + "start": { + "column": 17, + "line": 20 + } + } + }, + { + "id": "3125", + "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", "status": "CompileError", "static": true, - "killedBy": [], "coveredBy": [ "0", "1", @@ -99335,6 +99438,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -99342,29 +99468,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -99423,9 +99526,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -99441,9 +99544,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -99482,9 +99585,9 @@ "406", "407", "408", - "424", - "425", - "426", + "409", + "410", + "411", "427", "428", "429", @@ -99626,9 +99729,9 @@ "565", "566", "567", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -99701,9 +99804,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -99750,9 +99853,9 @@ "768", "769", "770", - "785", - "786", - "787", + "771", + "772", + "773", "788", "789", "790", @@ -99774,9 +99877,9 @@ "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -99802,9 +99905,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -99865,10 +99968,10 @@ "936", "937", "938", - "953", - "961", - "962", - "963", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -99896,9 +99999,9 @@ "988", "989", "990", - "999", - "1000", - "1001", + "991", + "992", + "993", "1002", "1003", "1004", @@ -99906,9 +100009,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -99947,9 +100050,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -99969,18 +100072,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -100016,24 +100119,24 @@ "1175", "1176", "1177", - "1196", - "1197", - "1198", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", + "1205", + "1206", + "1207", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -100044,16 +100147,16 @@ "1240", "1241", "1242", + "1243", "1244", - "1251", - "1252", - "1253", + "1245", + "1247", "1254", "1255", "1256", - "1267", - "1268", - "1269", + "1257", + "1258", + "1259", "1270", "1271", "1272", @@ -100068,9 +100171,9 @@ "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -100097,24 +100200,24 @@ "1322", "1323", "1324", - "1335", - "1336", - "1337", + "1325", + "1326", + "1327", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -100148,9 +100251,9 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", "1437", @@ -100159,15 +100262,15 @@ "1440", "1441", "1442", - "1448", - "1449", - "1450", + "1443", + "1444", + "1445", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", @@ -100225,9 +100328,9 @@ "1520", "1521", "1522", - "1528", - "1529", - "1530", + "1523", + "1524", + "1525", "1531", "1532", "1533", @@ -100300,19 +100403,19 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", "1619", - "1626", - "1650", - "1651", - "1652", + "1620", + "1621", + "1622", + "1629", "1653", "1654", "1655", @@ -100324,212 +100427,110 @@ "1661", "1662", "1663", - "1670", - "1671", - "1672", + "1664", + "1665", + "1666", "1673", "1674", "1675", - "1685", - "1686", - "1687", + "1676", + "1677", + "1678", "1688", "1689", "1690", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", + "1878", + "1880", "1884", - "1885", "1887", - "1891", - "1904", - "1908", + "1888", + "1890", + "1894", + "1907", "1911", - "1912", - "1913", "1914", "1915", - "1927", - "1928", - "1929", + "1916", + "1917", + "1918", "1930", - "2026" + "1931", + "1932", + "1933", + "2029" ], "location": { "end": { - "column": 2, - "line": 24 + "column": 47, + "line": 23 }, "start": { - "column": 75, - "line": 10 + "column": 10, + "line": 23 } } }, { - "id": "3121", + "id": "3120", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1884" - ], - "coveredBy": [ - "1884", - "1885" - ], - "location": { - "end": { - "column": 4, - "line": 22 - }, - "start": { - "column": 124, - "line": 14 - } - } - }, - { - "id": "3122", - "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 {}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1885" - ], - "coveredBy": [ - "1884", - "1885" - ], - "location": { - "end": { - "column": 6, - "line": 21 - }, - "start": { - "column": 19, - "line": 18 - } - } - }, - { - "id": "3123", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1885" - ], - "coveredBy": [ - "1884", - "1885" - ], - "location": { - "end": { - "column": 92, - "line": 19 - }, - "start": { - "column": 18, - "line": 19 - } - } - }, - { - "id": "3124", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1885" - ], - "coveredBy": [ - "1884", - "1885" - ], - "location": { - "end": { - "column": 88, - "line": 20 - }, - "start": { - "column": 17, - "line": 20 - } - } - }, - { - "id": "3125", - "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", + "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", "status": "CompileError", "static": true, - "killedBy": [], "coveredBy": [ "0", "1", @@ -100690,6 +100691,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -100697,29 +100721,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -100778,9 +100779,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -100796,9 +100797,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -100837,9 +100838,9 @@ "406", "407", "408", - "424", - "425", - "426", + "409", + "410", + "411", "427", "428", "429", @@ -100981,9 +100982,9 @@ "565", "566", "567", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -101056,9 +101057,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -101105,9 +101106,9 @@ "768", "769", "770", - "785", - "786", - "787", + "771", + "772", + "773", "788", "789", "790", @@ -101129,9 +101130,9 @@ "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -101157,9 +101158,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -101220,10 +101221,10 @@ "936", "937", "938", - "953", - "961", - "962", - "963", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -101251,9 +101252,9 @@ "988", "989", "990", - "999", - "1000", - "1001", + "991", + "992", + "993", "1002", "1003", "1004", @@ -101261,9 +101262,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -101302,9 +101303,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -101324,18 +101325,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -101371,24 +101372,24 @@ "1175", "1176", "1177", - "1196", - "1197", - "1198", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", + "1205", + "1206", + "1207", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -101399,16 +101400,16 @@ "1240", "1241", "1242", + "1243", "1244", - "1251", - "1252", - "1253", + "1245", + "1247", "1254", "1255", "1256", - "1267", - "1268", - "1269", + "1257", + "1258", + "1259", "1270", "1271", "1272", @@ -101423,9 +101424,9 @@ "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -101452,24 +101453,24 @@ "1322", "1323", "1324", - "1335", - "1336", - "1337", + "1325", + "1326", + "1327", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -101503,9 +101504,9 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", "1437", @@ -101514,15 +101515,15 @@ "1440", "1441", "1442", - "1448", - "1449", - "1450", + "1443", + "1444", + "1445", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", @@ -101580,9 +101581,9 @@ "1520", "1521", "1522", - "1528", - "1529", - "1530", + "1523", + "1524", + "1525", "1531", "1532", "1533", @@ -101655,19 +101656,19 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", "1619", - "1626", - "1650", - "1651", - "1652", + "1620", + "1621", + "1622", + "1629", "1653", "1654", "1655", @@ -101679,97 +101680,100 @@ "1661", "1662", "1663", - "1670", - "1671", - "1672", + "1664", + "1665", + "1666", "1673", "1674", "1675", - "1685", - "1686", - "1687", + "1676", + "1677", + "1678", "1688", "1689", "1690", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", + "1878", + "1880", "1884", - "1885", "1887", - "1891", - "1904", - "1908", + "1888", + "1890", + "1894", + "1907", "1911", - "1912", - "1913", "1914", "1915", - "1927", - "1928", - "1929", + "1916", + "1917", + "1918", "1930", - "2026" + "1931", + "1932", + "1933", + "2029" ], "location": { "end": { - "column": 47, - "line": 23 + "column": 2, + "line": 24 }, "start": { - "column": 10, - "line": 23 + "column": 75, + "line": 10 } } } @@ -101793,15 +101797,12 @@ "77", "78", "80", - "293", - "294", - "295", - "426", - "427", - "428", - "523", - "524", - "525", + "296", + "297", + "298", + "429", + "430", + "431", "526", "527", "528", @@ -101810,8 +101811,11 @@ "531", "532", "533", - "678", - "2011" + "534", + "535", + "536", + "681", + "2014" ], "location": { "end": { @@ -101827,417 +101831,40 @@ ], "source": "import { Expose, plainToInstance } from \"class-transformer\";\n\nimport type { GameAdditionalCardRecipientRoleName } from \"~/composables/api/game/types/game-additional-card/game-additional-card.types\";\nimport type { RoleName } from \"~/composables/api/role/types/role.types\";\nimport { DEFAULT_PLAIN_TO_INSTANCE_OPTIONS } from \"~/utils/constants/class-transformer.constants\";\n\nclass CreateGameAdditionalCardDto {\n @Expose()\n public roleName: RoleName;\n\n @Expose()\n public recipient: GameAdditionalCardRecipientRoleName;\n\n public static create(createGameAdditionalCardDto: CreateGameAdditionalCardDto): CreateGameAdditionalCardDto {\n return plainToInstance(CreateGameAdditionalCardDto, createGameAdditionalCardDto, DEFAULT_PLAIN_TO_INSTANCE_OPTIONS);\n }\n}\n\nexport { CreateGameAdditionalCardDto };" }, - "app/composables/api/game/dto/create-game/create-game-player/create-game-player-role.dto.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3127", - "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", - "status": "CompileError", - "static": true, - "killedBy": [], - "coveredBy": [ - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "54", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "215", - "217", - "235", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "370", - "371", - "372", - "373", - "377", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "468", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "557", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "748", - "752", - "787", - "788", - "789", - "791", - "792", - "793", - "794", - "796", - "797", - "935", - "938", - "1367", - "1515", - "1516", - "1517", - "1578", - "1682", - "1934", - "1935", - "1965" - ], - "location": { - "end": { - "column": 4, - "line": 12 - }, - "start": { - "column": 99, - "line": 10 - } - } - } - ], - "source": "import { Expose, plainToInstance } from \"class-transformer\";\n\nimport type { RoleName } from \"~/composables/api/role/types/role.types\";\nimport { DEFAULT_PLAIN_TO_INSTANCE_OPTIONS } from \"~/utils/constants/class-transformer.constants\";\n\nclass CreateGamePlayerRoleDto {\n @Expose()\n public name?: RoleName;\n\n public static create(createGamePlayerRoleDto: CreateGamePlayerRoleDto): CreateGamePlayerRoleDto {\n return plainToInstance(CreateGamePlayerRoleDto, createGamePlayerRoleDto, DEFAULT_PLAIN_TO_INSTANCE_OPTIONS);\n }\n}\n\nexport { CreateGamePlayerRoleDto };" - }, - "app/composables/api/game/dto/create-game/create-game-player/create-game-player-side.dto.ts": { + "app/composables/api/game/dto/create-game/create-game.dto.ts": { "language": "typescript", "mutants": [ { - "id": "3128", + "id": "3132", "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", + "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", "status": "CompileError", - "static": true, + "static": false, "killedBy": [], "coveredBy": [ - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "54", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "215", - "217", - "235", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "370", - "371", - "372", - "373", - "377", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "468", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "557", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "748", - "752", - "787", - "788", - "789", - "791", - "792", - "793", - "794", - "796", - "797", - "935", - "938", - "1367", - "1515", - "1516", - "1517", - "1578", - "1682", - "1934", - "1935", - "1965" + "1606", + "1607", + "1938" ], "location": { "end": { "column": 4, - "line": 15 + "line": 28 }, "start": { - "column": 99, - "line": 13 + "column": 27, + "line": 26 } } - } - ], - "source": "import { Expose, plainToInstance } from \"class-transformer\";\n\nimport type { RoleSide } from \"~/composables/api/role/types/role.types\";\nimport { DEFAULT_PLAIN_TO_INSTANCE_OPTIONS } from \"~/utils/constants/class-transformer.constants\";\n\nclass CreateGamePlayerSideDto {\n @Expose()\n public original?: RoleSide;\n\n @Expose()\n public current?: RoleSide;\n\n public static create(createGamePlayerSideDto: CreateGamePlayerSideDto): CreateGamePlayerSideDto {\n return plainToInstance(CreateGamePlayerSideDto, createGamePlayerSideDto, DEFAULT_PLAIN_TO_INSTANCE_OPTIONS);\n }\n}\n\nexport { CreateGamePlayerSideDto };" - }, - "app/composables/api/game/dto/create-game/create-game-player/create-game-player.dto.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "3129", + "id": "3131", "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", - "status": "CompileError", - "static": true, - "killedBy": [], - "coveredBy": [ - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "54", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "215", - "217", - "235", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "370", - "371", - "372", - "373", - "377", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "468", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "557", - "558", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "748", - "752", - "776", - "777", - "778", - "779", - "780", - "781", - "782", - "783", - "784", - "787", - "788", - "789", - "791", - "792", - "793", - "794", - "796", - "797", - "935", - "938", - "1367", - "1515", - "1516", - "1517", - "1578", - "1682", - "1934", - "1935", - "1965" - ], - "location": { - "end": { - "column": 4, - "line": 24 - }, - "start": { - "column": 87, - "line": 22 - } - } - } - ], - "source": "import { Expose, plainToInstance, Type } from \"class-transformer\";\n\nimport { CreateGamePlayerRoleDto } from \"~/composables/api/game/dto/create-game/create-game-player/create-game-player-role.dto\";\nimport { CreateGamePlayerSideDto } from \"~/composables/api/game/dto/create-game/create-game-player/create-game-player-side.dto\";\nimport { DEFAULT_PLAIN_TO_INSTANCE_OPTIONS } from \"~/utils/constants/class-transformer.constants\";\n\nclass CreateGamePlayerDto {\n @Expose()\n public name: string;\n\n @Type(() => CreateGamePlayerRoleDto)\n @Expose()\n public role: CreateGamePlayerRoleDto;\n\n @Type(() => CreateGamePlayerSideDto)\n @Expose()\n public side: CreateGamePlayerSideDto;\n\n @Expose()\n public group?: string;\n\n public static create(createGamePlayerDto: CreateGamePlayerDto): CreateGamePlayerDto {\n return plainToInstance(CreateGamePlayerDto, createGamePlayerDto, DEFAULT_PLAIN_TO_INSTANCE_OPTIONS);\n }\n}\n\nexport { CreateGamePlayerDto };" - }, - "app/composables/api/game/dto/create-game/create-game.dto.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3130", - "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", + "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", "status": "CompileError", "static": true, - "killedBy": [], "coveredBy": [ "35", "39", @@ -102283,36 +101910,36 @@ "79", "80", "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "285", "286", "287", @@ -102326,9 +101953,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -102344,9 +101971,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -102363,9 +101990,9 @@ "384", "385", "386", - "424", - "425", - "426", + "387", + "388", + "389", "427", "428", "429", @@ -102377,9 +102004,9 @@ "435", "436", "437", - "466", - "467", - "468", + "438", + "439", + "440", "469", "470", "471", @@ -102393,9 +102020,9 @@ "479", "480", "481", - "523", - "524", - "525", + "482", + "483", + "484", "526", "527", "528", @@ -102404,9 +102031,9 @@ "531", "532", "533", - "549", - "550", - "551", + "534", + "535", + "536", "552", "553", "554", @@ -102423,9 +102050,9 @@ "565", "566", "567", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -102454,9 +102081,9 @@ "664", "665", "666", - "674", - "675", - "676", + "667", + "668", + "669", "677", "678", "679", @@ -102481,9 +102108,9 @@ "698", "699", "700", - "744", - "745", - "746", + "701", + "702", + "703", "747", "748", "749", @@ -102493,9 +102120,9 @@ "753", "754", "755", - "785", - "786", - "787", + "756", + "757", + "758", "788", "789", "790", @@ -102508,9 +102135,9 @@ "797", "798", "799", - "815", - "816", - "817", + "800", + "801", + "802", "818", "819", "820", @@ -102519,18 +102146,18 @@ "823", "824", "825", - "930", - "931", - "932", + "826", + "827", + "828", "933", "934", "935", "936", "937", "938", - "961", - "962", - "963", + "939", + "940", + "941", "964", "965", "966", @@ -102539,9 +102166,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -102549,18 +102176,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -102568,18 +102195,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -102606,29 +102233,29 @@ "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1279", - "1280", - "1281", + "1257", + "1258", + "1259", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -102649,24 +102276,24 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -102678,28 +102305,28 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", + "1391", + "1392", + "1393", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1512", - "1513", - "1514", + "1501", + "1502", + "1503", "1515", "1516", "1517", @@ -102708,9 +102335,9 @@ "1520", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -102718,9 +102345,9 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", "1554", @@ -102738,9 +102365,9 @@ "1566", "1567", "1568", - "1575", - "1576", - "1577", + "1569", + "1570", + "1571", "1578", "1579", "1580", @@ -102768,39 +102395,40 @@ "1602", "1603", "1604", - "1611", - "1612", - "1613", + "1605", + "1606", + "1607", "1614", "1615", - "1674", - "1675", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", + "1677", + "1678", "1930", - "1934", - "1935" + "1931", + "1932", + "1933", + "1937" ], "location": { "end": { - "column": 45, - "line": 12 + "column": 4, + "line": 24 }, "start": { - "column": 43, - "line": 12 + "column": 81, + "line": 22 } } }, { - "id": "3131", - "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", + "id": "3130", + "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", "status": "CompileError", "static": true, - "killedBy": [], "coveredBy": [ "35", "39", @@ -102846,36 +102474,36 @@ "79", "80", "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "285", "286", "287", @@ -102889,9 +102517,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -102907,9 +102535,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -102926,9 +102554,9 @@ "384", "385", "386", - "424", - "425", - "426", + "387", + "388", + "389", "427", "428", "429", @@ -102940,9 +102568,9 @@ "435", "436", "437", - "466", - "467", - "468", + "438", + "439", + "440", "469", "470", "471", @@ -102956,9 +102584,9 @@ "479", "480", "481", - "523", - "524", - "525", + "482", + "483", + "484", "526", "527", "528", @@ -102967,9 +102595,9 @@ "531", "532", "533", - "549", - "550", - "551", + "534", + "535", + "536", "552", "553", "554", @@ -102986,9 +102614,9 @@ "565", "566", "567", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -103017,9 +102645,9 @@ "664", "665", "666", - "674", - "675", - "676", + "667", + "668", + "669", "677", "678", "679", @@ -103044,9 +102672,9 @@ "698", "699", "700", - "744", - "745", - "746", + "701", + "702", + "703", "747", "748", "749", @@ -103056,9 +102684,9 @@ "753", "754", "755", - "785", - "786", - "787", + "756", + "757", + "758", "788", "789", "790", @@ -103071,9 +102699,9 @@ "797", "798", "799", - "815", - "816", - "817", + "800", + "801", + "802", "818", "819", "820", @@ -103082,18 +102710,18 @@ "823", "824", "825", - "930", - "931", - "932", + "826", + "827", + "828", "933", "934", "935", "936", "937", "938", - "961", - "962", - "963", + "939", + "940", + "941", "964", "965", "966", @@ -103102,9 +102730,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -103112,18 +102740,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -103131,18 +102759,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -103169,29 +102797,29 @@ "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1279", - "1280", - "1281", + "1257", + "1258", + "1259", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -103212,24 +102840,24 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -103241,28 +102869,28 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", + "1391", + "1392", + "1393", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1512", - "1513", - "1514", + "1501", + "1502", + "1503", "1515", "1516", "1517", @@ -103271,9 +102899,9 @@ "1520", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -103281,9 +102909,9 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", "1554", @@ -103301,9 +102929,9 @@ "1566", "1567", "1568", - "1575", - "1576", - "1577", + "1569", + "1570", + "1571", "1578", "1579", "1580", @@ -103331,51 +102959,31 @@ "1602", "1603", "1604", - "1611", - "1612", - "1613", + "1605", + "1606", + "1607", "1614", "1615", - "1674", - "1675", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", + "1677", + "1678", "1930", - "1934" - ], - "location": { - "end": { - "column": 4, - "line": 24 - }, - "start": { - "column": 81, - "line": 22 - } - } - }, - { - "id": "3132", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1603", - "1604", - "1935" + "1931", + "1932", + "1933", + "1937", + "1938" ], "location": { "end": { - "column": 4, - "line": 28 + "column": 45, + "line": 12 }, "start": { - "column": 27, - "line": 26 + "column": 43, + "line": 12 } } } @@ -103401,14 +103009,14 @@ "98", "102", "103", - "346", - "347", "349", "350", - "351", + "352", + "353", "354", "357", - "358" + "360", + "361" ], "location": { "end": { @@ -103436,11 +103044,11 @@ "static": true, "killedBy": [], "coveredBy": [ - "359", - "360", "362", "363", - "364" + "365", + "366", + "367" ], "location": { "end": { @@ -103492,11 +103100,8 @@ "103", "104", "105", - "205", - "206", - "343", - "344", - "345", + "235", + "236", "346", "347", "348", @@ -103519,9 +103124,9 @@ "365", "366", "367", - "507", - "508", - "509", + "368", + "369", + "370", "510", "511", "512", @@ -103535,9 +103140,9 @@ "520", "521", "522", - "534", - "535", - "536", + "523", + "524", + "525", "537", "538", "539", @@ -103550,9 +103155,9 @@ "546", "547", "548", - "624", - "625", - "626", + "549", + "550", + "551", "627", "628", "629", @@ -103562,33 +103167,36 @@ "633", "634", "635", - "1267", - "1268", - "1269", + "636", + "637", + "638", "1270", "1271", - "1342", - "1343", - "1344", + "1272", + "1273", + "1274", "1345", "1346", "1347", "1348", "1349", "1350", - "1358", - "1359", - "1360", + "1351", + "1352", + "1353", "1361", - "1370", - "1371", - "1372", + "1362", + "1363", + "1364", "1373", "1374", "1375", "1376", - "1609", - "1610" + "1377", + "1378", + "1379", + "1612", + "1613" ], "location": { "end": { @@ -103616,75 +103224,75 @@ "static": true, "killedBy": [], "coveredBy": [ - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "270", - "272", - "274", - "279", - "280", - "281", - "392", - "569", - "570", - "571", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "273", + "275", + "277", + "282", + "283", + "284", + "395", "572", "573", + "574", "575", "576", - "577", "578", "579", "580", "581", "582", + "583", "584", - "707", - "709", + "585", + "587", "710", - "738", - "804", - "806", - "808", - "889", - "890", - "899", - "900", - "954", - "956", + "712", + "713", + "741", + "807", + "809", + "811", + "892", + "893", + "902", + "903", "957", "959", - "1033", - "1034", - "1052", - "1054", - "1070", - "1074", - "1246", - "1248", - "1250", - "1483", - "1494", - "1757", - "2007" + "960", + "962", + "1036", + "1037", + "1055", + "1057", + "1073", + "1077", + "1249", + "1251", + "1253", + "1486", + "1497", + "1760", + "2010" ], "location": { "end": { @@ -103712,9 +103320,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -103729,17 +103334,20 @@ "840", "841", "842", - "1685", - "1686", - "1687", - "1766", - "1767", - "1768", + "843", + "844", + "845", + "1688", + "1689", + "1690", "1769", "1770", "1771", - "1947", - "1948" + "1772", + "1773", + "1774", + "1950", + "1951" ], "location": { "end": { @@ -103761,8 +103369,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1947", - "1948" + "1950", + "1951" ], "location": { "end": { @@ -103784,8 +103392,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1947", - "1948" + "1950", + "1951" ], "location": { "end": { @@ -103807,11 +103415,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1947" + "1950" ], "coveredBy": [ - "1947", - "1948" + "1950", + "1951" ], "location": { "end": { @@ -103833,11 +103441,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1947" + "1950" ], "coveredBy": [ - "1947", - "1948" + "1950", + "1951" ], "location": { "end": { @@ -103859,8 +103467,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1947", - "1948" + "1950", + "1951" ], "location": { "end": { @@ -103882,7 +103490,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1948" + "1951" ], "location": { "end": { @@ -103904,9 +103512,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "826", - "827", - "828", "829", "830", "831", @@ -103921,17 +103526,20 @@ "840", "841", "842", - "1685", - "1686", - "1687", - "1766", - "1767", - "1768", + "843", + "844", + "845", + "1688", + "1689", + "1690", "1769", "1770", "1771", - "1947", - "1948" + "1772", + "1773", + "1774", + "1950", + "1951" ], "location": { "end": { @@ -103987,19 +103595,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104049,19 +103657,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104114,19 +103722,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104179,19 +103787,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104241,19 +103849,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104306,19 +103914,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104368,19 +103976,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104433,19 +104041,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104495,19 +104103,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104560,19 +104168,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104625,19 +104233,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104690,19 +104298,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104755,19 +104363,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104817,19 +104425,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104879,16 +104487,16 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1527" + "999", + "1000", + "1001", + "1526", + "1530" ], "location": { "end": { @@ -104910,7 +104518,7 @@ "testsCompleted": 41, "static": false, "killedBy": [ - "1524" + "1527" ], "coveredBy": [ "108", @@ -104938,18 +104546,18 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1524", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -104999,18 +104607,18 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1524", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105060,18 +104668,18 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1524", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105121,18 +104729,18 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1524", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105179,18 +104787,18 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1524", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105236,9 +104844,9 @@ "129", "131", "133", - "995", - "1524", - "1527" + "998", + "1527", + "1530" ], "location": { "end": { @@ -105260,7 +104868,7 @@ "testsCompleted": 41, "static": false, "killedBy": [ - "1525" + "1528" ], "coveredBy": [ "108", @@ -105288,17 +104896,17 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105348,17 +104956,17 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105408,17 +105016,17 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105468,17 +105076,17 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105525,17 +105133,17 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1525", - "1526", - "1527" + "999", + "1000", + "1001", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105557,11 +105165,11 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "1527" + "1530" ], "coveredBy": [ - "1525", - "1527" + "1528", + "1530" ], "location": { "end": { @@ -105583,11 +105191,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1525" + "1528" ], "coveredBy": [ - "1525", - "1527" + "1528", + "1530" ], "location": { "end": { @@ -105609,7 +105217,7 @@ "testsCompleted": 41, "static": false, "killedBy": [ - "1526" + "1529" ], "coveredBy": [ "108", @@ -105637,16 +105245,16 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1526", - "1527" + "999", + "1000", + "1001", + "1529", + "1530" ], "location": { "end": { @@ -105696,16 +105304,16 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1526", - "1527" + "999", + "1000", + "1001", + "1529", + "1530" ], "location": { "end": { @@ -105755,16 +105363,16 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1526", - "1527" + "999", + "1000", + "1001", + "1529", + "1530" ], "location": { "end": { @@ -105814,16 +105422,16 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1526", - "1527" + "999", + "1000", + "1001", + "1529", + "1530" ], "location": { "end": { @@ -105870,16 +105478,16 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1526", - "1527" + "999", + "1000", + "1001", + "1529", + "1530" ], "location": { "end": { @@ -105901,9 +105509,9 @@ "static": false, "killedBy": [], "coveredBy": [ - "997", - "1526", - "1527" + "1000", + "1529", + "1530" ], "location": { "end": { @@ -105953,19 +105561,19 @@ "131", "132", "133", - "991", - "992", - "993", "994", "995", "996", "997", "998", - "1523", - "1524", - "1525", + "999", + "1000", + "1001", "1526", - "1527" + "1527", + "1528", + "1529", + "1530" ], "location": { "end": { @@ -105993,15 +105601,15 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061", - "1062", - "1063", "1064", - "1528", - "1529", - "1530", + "1065", + "1066", + "1067", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -106023,15 +105631,15 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061", - "1062", - "1063", "1064", - "1528", - "1529", - "1530", + "1065", + "1066", + "1067", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -106053,13 +105661,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061", - "1062", - "1528", - "1529", - "1530", + "1064", + "1065", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -106081,13 +105689,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061", - "1062", - "1528", - "1529", - "1530", + "1064", + "1065", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -106109,13 +105717,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061", - "1062", - "1528", - "1529", - "1530", + "1064", + "1065", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -106137,13 +105745,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061", - "1062", - "1528", - "1529", - "1530", + "1064", + "1065", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -106165,13 +105773,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061", - "1062", - "1528", - "1529", - "1530", + "1064", + "1065", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -106193,7 +105801,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061" + "1064" ], "location": { "end": { @@ -106215,7 +105823,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061" + "1064" ], "location": { "end": { @@ -106237,12 +105845,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "1062", - "1528", - "1529", - "1530", + "1065", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -106264,8 +105872,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106287,8 +105895,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106310,8 +105918,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106333,8 +105941,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106356,8 +105964,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106379,7 +105987,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1064" + "1067" ], "location": { "end": { @@ -106401,10 +106009,10 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1064" + "1067" ], "coveredBy": [ - "1064" + "1067" ], "location": { "end": { @@ -106426,11 +106034,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1063" + "1066" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106452,11 +106060,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1063" + "1066" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106478,11 +106086,11 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1064" + "1067" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106504,11 +106112,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1063" + "1066" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106530,11 +106138,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1064" + "1067" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106556,11 +106164,11 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1064" + "1067" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106582,11 +106190,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1064" + "1067" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106608,11 +106216,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1064" + "1067" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106634,11 +106242,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1063" + "1066" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106660,11 +106268,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1064" + "1067" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106686,11 +106294,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1063" + "1066" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106712,11 +106320,11 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "1064" + "1067" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106738,11 +106346,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1063" + "1066" ], "coveredBy": [ - "1063", - "1064" + "1066", + "1067" ], "location": { "end": { @@ -106764,15 +106372,15 @@ "static": false, "killedBy": [], "coveredBy": [ - "1061", - "1062", - "1063", "1064", - "1528", - "1529", - "1530", + "1065", + "1066", + "1067", "1531", - "1532" + "1532", + "1533", + "1534", + "1535" ], "location": { "end": { @@ -106800,9 +106408,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -106819,9 +106424,9 @@ "384", "385", "386", - "636", - "637", - "638", + "387", + "388", + "389", "639", "640", "641", @@ -106857,9 +106462,9 @@ "671", "672", "673", - "685", - "686", - "687", + "674", + "675", + "676", "688", "689", "690", @@ -106873,15 +106478,15 @@ "698", "699", "700", - "843", - "844", - "845", + "701", + "702", + "703", "846", "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -106890,9 +106495,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -106900,18 +106505,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -106919,42 +106524,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -106975,16 +106580,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -106996,33 +106601,33 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", + "1391", + "1392", + "1393", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -107030,14 +106635,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -107045,14 +106650,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -107065,15 +106670,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -107095,10 +106703,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -107127,11 +106732,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -107145,14 +106750,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -107161,9 +106766,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -107171,18 +106776,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -107190,42 +106795,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -107246,16 +106851,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -107267,27 +106872,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -107295,14 +106900,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -107310,14 +106915,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -107330,15 +106935,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -107360,13 +106968,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "636" + "639" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -107395,11 +107000,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -107413,14 +107018,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -107429,9 +107034,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -107439,18 +107044,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -107458,42 +107063,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -107514,16 +107119,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -107535,27 +107140,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -107563,14 +107168,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -107578,14 +107183,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -107598,15 +107203,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -107628,13 +107236,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "636" + "639" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -107663,11 +107268,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -107681,14 +107286,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -107697,9 +107302,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -107707,18 +107312,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -107726,42 +107331,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -107782,16 +107387,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -107803,27 +107408,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -107831,14 +107436,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -107846,14 +107451,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -107866,15 +107471,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -107896,13 +107504,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -107931,11 +107536,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -107949,14 +107554,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -107965,9 +107570,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -107975,18 +107580,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -107994,42 +107599,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -108050,16 +107655,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -108071,27 +107676,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -108099,14 +107704,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -108114,14 +107719,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -108134,15 +107739,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -108164,13 +107772,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "636" + "639" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -108199,11 +107804,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -108217,14 +107822,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -108233,9 +107838,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -108243,18 +107848,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -108262,42 +107867,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -108318,16 +107923,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -108339,27 +107944,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -108367,14 +107972,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -108382,14 +107987,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -108402,15 +108007,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -108432,10 +108040,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -108464,11 +108069,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -108482,14 +108087,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -108498,9 +108103,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -108508,18 +108113,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -108527,42 +108132,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -108583,16 +108188,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -108604,27 +108209,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -108632,14 +108237,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -108647,14 +108252,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -108667,15 +108272,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -108697,13 +108305,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -108732,11 +108337,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -108750,14 +108355,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -108766,9 +108371,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -108776,18 +108381,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -108795,42 +108400,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -108851,16 +108456,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -108872,27 +108477,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -108900,14 +108505,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -108915,14 +108520,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -108935,15 +108540,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -108965,13 +108573,10 @@ "testsCompleted": 50, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -109000,11 +108605,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -109018,14 +108623,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -109034,9 +108639,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -109044,18 +108649,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -109063,42 +108668,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -109119,16 +108724,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -109140,27 +108745,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -109168,14 +108773,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -109183,14 +108788,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -109203,15 +108808,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -109233,9 +108841,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -109252,9 +108857,9 @@ "384", "385", "386", - "636", - "637", - "638", + "387", + "388", + "389", "639", "640", "641", @@ -109290,9 +108895,9 @@ "671", "672", "673", - "685", - "686", - "687", + "674", + "675", + "676", "688", "689", "690", @@ -109306,15 +108911,15 @@ "698", "699", "700", - "843", - "844", - "845", + "701", + "702", + "703", "846", "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -109323,9 +108928,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -109333,18 +108938,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -109352,42 +108957,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -109408,16 +109013,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -109429,33 +109034,33 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", + "1391", + "1392", + "1393", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -109463,14 +109068,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -109478,14 +109083,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -109498,15 +109103,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -109528,10 +109136,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -109560,11 +109165,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -109578,14 +109183,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -109594,9 +109199,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -109604,18 +109209,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -109623,42 +109228,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -109679,16 +109284,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -109700,27 +109305,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -109728,14 +109333,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -109743,14 +109348,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -109763,15 +109368,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -109793,10 +109401,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -109825,11 +109430,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -109843,14 +109448,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -109859,9 +109464,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -109869,18 +109474,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -109888,42 +109493,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -109944,16 +109549,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -109965,27 +109570,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -109993,14 +109598,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -110008,14 +109613,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -110028,15 +109633,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -110058,13 +109666,10 @@ "testsCompleted": 32, "static": false, "killedBy": [ - "671" + "674" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -110093,11 +109698,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -110111,14 +109716,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -110127,9 +109732,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -110137,18 +109742,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -110156,42 +109761,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -110212,16 +109817,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -110233,27 +109838,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -110261,14 +109866,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -110276,14 +109881,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -110296,15 +109901,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -110326,10 +109934,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -110358,11 +109963,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -110376,14 +109981,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -110392,9 +109997,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -110402,18 +110007,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -110421,44 +110026,44 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", - "1299", - "1300", + "1257", + "1258", + "1259", + "1299", + "1300", "1301", "1302", "1303", @@ -110477,16 +110082,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -110498,27 +110103,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -110526,14 +110131,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -110541,14 +110146,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -110561,15 +110166,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -110591,13 +110199,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -110626,11 +110231,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -110644,14 +110249,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -110660,9 +110265,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -110670,18 +110275,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -110689,42 +110294,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -110745,16 +110350,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -110766,27 +110371,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -110794,14 +110399,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -110809,14 +110414,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -110829,15 +110434,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -110859,10 +110467,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -110891,11 +110496,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -110909,14 +110514,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -110925,9 +110530,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -110935,18 +110540,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -110954,42 +110559,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -111010,16 +110615,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -111031,27 +110636,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -111059,14 +110664,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -111074,14 +110679,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -111094,15 +110699,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -111124,13 +110732,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -111159,11 +110764,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -111177,14 +110782,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -111193,9 +110798,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -111203,18 +110808,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -111222,42 +110827,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -111278,16 +110883,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -111299,27 +110904,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -111327,14 +110932,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -111342,14 +110947,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -111362,15 +110967,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -111392,13 +111000,10 @@ "testsCompleted": 50, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -111427,11 +111032,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -111445,14 +111050,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -111461,9 +111066,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -111471,18 +111076,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -111490,42 +111095,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -111546,16 +111151,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -111567,27 +111172,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -111595,14 +111200,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -111610,14 +111215,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -111630,15 +111235,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -111660,10 +111268,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -111692,11 +111297,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -111710,14 +111315,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -111726,9 +111331,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -111736,18 +111341,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -111755,42 +111360,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -111811,16 +111416,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -111832,27 +111437,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -111860,14 +111465,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -111875,14 +111480,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -111895,15 +111500,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -111925,13 +111533,10 @@ "testsCompleted": 73, "static": false, "killedBy": [ - "1533" + "1536" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -111960,11 +111565,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -111978,14 +111583,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -111994,9 +111599,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -112004,18 +111609,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -112023,42 +111628,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -112079,16 +111684,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -112100,27 +111705,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -112128,14 +111733,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -112143,14 +111748,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -112163,15 +111768,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -112193,10 +111801,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -112225,11 +111830,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -112243,14 +111848,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -112259,9 +111864,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -112269,18 +111874,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", - "1042", + "1030", + "1031", + "1032", + "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -112288,42 +111893,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -112344,16 +111949,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -112365,27 +111970,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -112393,14 +111998,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -112408,14 +112013,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -112428,15 +112033,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -112458,13 +112066,10 @@ "testsCompleted": 34, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -112493,11 +112098,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -112511,14 +112116,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -112527,9 +112132,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -112537,18 +112142,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -112556,42 +112161,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -112612,16 +112217,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -112633,27 +112238,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -112661,14 +112266,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -112676,14 +112281,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -112696,15 +112301,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -112726,10 +112334,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -112758,11 +112363,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -112776,14 +112381,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -112792,9 +112397,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -112802,18 +112407,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -112821,42 +112426,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -112877,16 +112482,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -112898,27 +112503,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -112926,14 +112531,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -112941,14 +112546,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -112961,15 +112566,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -112991,13 +112599,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -113026,11 +112631,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -113044,14 +112649,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -113060,9 +112665,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -113070,18 +112675,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -113089,42 +112694,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -113145,16 +112750,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -113166,27 +112771,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -113194,14 +112799,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -113209,14 +112814,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -113229,15 +112834,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -113259,13 +112867,10 @@ "testsCompleted": 34, "static": false, "killedBy": [ - "685" + "688" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -113294,11 +112899,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -113312,14 +112917,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -113328,9 +112933,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -113338,18 +112943,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -113357,42 +112962,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -113413,16 +113018,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -113434,27 +113039,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -113462,14 +113067,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -113477,14 +113082,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -113497,15 +113102,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -113527,10 +113135,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -113559,11 +113164,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -113577,14 +113182,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -113593,9 +113198,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -113603,18 +113208,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -113622,42 +113227,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -113678,16 +113283,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -113699,27 +113304,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -113727,14 +113332,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -113742,14 +113347,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -113762,15 +113367,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -113792,13 +113400,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -113827,11 +113432,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -113845,14 +113450,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -113861,9 +113466,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -113871,18 +113476,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -113890,42 +113495,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -113946,16 +113551,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -113967,27 +113572,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -113995,14 +113600,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -114010,14 +113615,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -114030,15 +113635,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -114060,10 +113668,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -114092,11 +113697,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -114110,14 +113715,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -114126,9 +113731,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -114136,18 +113741,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -114155,42 +113760,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -114211,16 +113816,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -114232,27 +113837,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -114260,14 +113865,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -114275,14 +113880,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -114295,15 +113900,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -114325,13 +113933,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -114360,11 +113965,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -114378,14 +113983,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -114394,9 +113999,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -114404,18 +114009,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -114423,42 +114028,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -114479,16 +114084,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -114500,27 +114105,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -114528,14 +114133,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -114543,14 +114148,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -114563,15 +114168,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -114593,13 +114201,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -114628,11 +114233,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -114646,14 +114251,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -114662,9 +114267,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -114672,18 +114277,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -114691,42 +114296,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -114747,16 +114352,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -114768,27 +114373,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -114796,14 +114401,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -114811,14 +114416,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -114831,15 +114436,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -114861,10 +114469,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -114893,11 +114498,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -114911,14 +114516,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -114927,9 +114532,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -114937,18 +114542,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -114956,42 +114561,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -115012,16 +114617,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -115033,27 +114638,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -115061,14 +114666,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -115076,14 +114681,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -115096,15 +114701,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -115126,13 +114734,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -115161,11 +114766,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -115179,14 +114784,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -115195,9 +114800,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -115205,18 +114810,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -115224,42 +114829,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -115280,16 +114885,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -115301,27 +114906,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -115329,14 +114934,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -115344,14 +114949,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -115364,15 +114969,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -115394,13 +115002,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -115429,11 +115034,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -115447,14 +115052,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -115463,9 +115068,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -115473,18 +115078,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -115492,42 +115097,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -115548,16 +115153,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -115569,27 +115174,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -115597,14 +115202,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -115612,14 +115217,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -115632,15 +115237,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -115662,10 +115270,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -115694,11 +115299,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -115712,14 +115317,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -115728,9 +115333,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -115738,18 +115343,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -115757,42 +115362,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -115813,16 +115418,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -115834,27 +115439,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -115862,14 +115467,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -115877,14 +115482,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -115897,15 +115502,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -115927,10 +115535,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -115959,11 +115564,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -115977,14 +115582,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -115993,9 +115598,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -116003,18 +115608,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -116022,42 +115627,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -116078,16 +115683,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -116099,27 +115704,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -116127,14 +115732,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -116142,14 +115747,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -116162,15 +115767,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -116192,13 +115800,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -116227,11 +115832,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -116245,14 +115850,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -116261,9 +115866,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -116271,18 +115876,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -116290,42 +115895,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -116346,16 +115951,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -116367,27 +115972,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -116395,14 +116000,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -116410,14 +116015,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -116430,15 +116035,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -116460,13 +116068,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -116495,11 +116100,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -116513,14 +116118,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -116529,9 +116134,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -116539,18 +116144,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -116558,42 +116163,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -116614,16 +116219,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -116635,27 +116240,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -116663,14 +116268,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -116678,14 +116283,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -116698,15 +116303,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -116728,10 +116336,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -116760,11 +116365,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -116778,14 +116383,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -116794,9 +116399,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -116804,18 +116409,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -116823,42 +116428,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -116879,16 +116484,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -116900,27 +116505,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -116928,14 +116533,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -116943,14 +116548,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -116963,15 +116568,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -116993,13 +116601,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -117028,11 +116633,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -117046,14 +116651,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -117062,9 +116667,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -117072,18 +116677,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -117091,42 +116696,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -117147,16 +116752,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -117168,27 +116773,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -117196,14 +116801,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -117211,14 +116816,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -117231,15 +116836,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -117261,10 +116869,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -117293,11 +116898,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -117311,14 +116916,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -117327,9 +116932,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -117337,18 +116942,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -117356,42 +116961,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -117412,16 +117017,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -117433,27 +117038,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -117461,14 +117066,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -117476,14 +117081,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -117496,15 +117101,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -117526,13 +117134,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -117561,11 +117166,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -117579,14 +117184,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -117595,9 +117200,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -117605,18 +117210,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -117624,42 +117229,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -117680,16 +117285,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -117701,27 +117306,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -117729,14 +117334,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -117744,14 +117349,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -117764,15 +117369,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -117794,10 +117402,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -117826,11 +117431,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -117844,14 +117449,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -117860,9 +117465,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -117870,18 +117475,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -117889,42 +117494,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -117945,16 +117550,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -117966,27 +117571,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -117994,14 +117599,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -118009,14 +117614,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -118029,15 +117634,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -118059,13 +117667,10 @@ "testsCompleted": 16, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -118094,11 +117699,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -118112,14 +117717,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -118128,9 +117733,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -118138,18 +117743,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -118157,42 +117762,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -118213,16 +117818,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -118234,27 +117839,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -118262,14 +117867,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -118277,14 +117882,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -118297,15 +117902,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -118327,13 +117935,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -118362,11 +117967,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -118380,14 +117985,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -118396,9 +118001,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -118406,18 +118011,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -118425,42 +118030,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -118481,16 +118086,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -118502,27 +118107,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -118530,14 +118135,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -118545,14 +118150,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -118565,15 +118170,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -118595,13 +118203,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -118630,11 +118235,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -118648,14 +118253,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -118664,9 +118269,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -118674,18 +118279,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -118693,42 +118298,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -118749,16 +118354,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -118770,27 +118375,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -118798,14 +118403,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -118813,14 +118418,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -118833,15 +118438,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -118863,10 +118471,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -118895,11 +118500,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -118913,14 +118518,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -118929,9 +118534,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -118939,18 +118544,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -118958,42 +118563,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -119014,16 +118619,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -119035,27 +118640,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -119063,14 +118668,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -119078,14 +118683,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -119098,15 +118703,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -119128,13 +118736,10 @@ "testsCompleted": 50, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -119163,11 +118768,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -119181,14 +118786,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -119197,9 +118802,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -119207,18 +118812,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -119226,42 +118831,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -119282,16 +118887,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -119303,27 +118908,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -119331,14 +118936,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -119346,14 +118951,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -119366,15 +118971,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -119396,10 +119004,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -119428,11 +119033,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -119446,14 +119051,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -119462,9 +119067,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -119472,18 +119077,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -119491,42 +119096,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", - "1254", - "1255", + "1205", + "1206", + "1207", + "1254", + "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -119547,16 +119152,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -119568,27 +119173,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -119596,14 +119201,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -119611,14 +119216,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -119631,15 +119236,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -119661,13 +119269,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -119696,11 +119301,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -119714,14 +119319,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -119730,9 +119335,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -119740,18 +119345,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -119759,42 +119364,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -119815,16 +119420,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -119836,27 +119441,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -119864,14 +119469,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -119879,14 +119484,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -119899,15 +119504,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -119929,13 +119537,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -119964,11 +119569,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -119982,14 +119587,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -119998,9 +119603,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -120008,18 +119613,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -120027,42 +119632,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -120083,16 +119688,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -120104,27 +119709,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -120132,14 +119737,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -120147,14 +119752,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -120167,15 +119772,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -120197,10 +119805,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -120229,11 +119834,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -120247,14 +119852,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -120263,9 +119868,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -120273,18 +119878,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -120292,42 +119897,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -120348,16 +119953,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -120369,27 +119974,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -120397,14 +120002,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -120412,14 +120017,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -120432,15 +120037,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -120462,13 +120070,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -120497,11 +120102,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -120515,14 +120120,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -120531,9 +120136,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -120541,18 +120146,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -120560,42 +120165,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -120616,16 +120221,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -120637,27 +120242,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -120665,14 +120270,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -120680,14 +120285,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -120700,15 +120305,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -120730,13 +120338,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -120765,11 +120370,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -120783,14 +120388,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -120799,9 +120404,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -120809,18 +120414,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -120828,42 +120433,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -120884,16 +120489,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -120905,27 +120510,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -120933,14 +120538,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -120948,14 +120553,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -120968,15 +120573,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -120998,10 +120606,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -121030,11 +120635,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -121048,14 +120653,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -121064,9 +120669,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -121074,18 +120679,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -121093,42 +120698,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -121149,16 +120754,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -121170,27 +120775,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -121198,14 +120803,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -121213,14 +120818,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -121233,15 +120838,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -121263,13 +120871,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -121298,11 +120903,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -121316,14 +120921,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -121332,9 +120937,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -121342,18 +120947,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -121361,42 +120966,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -121417,16 +121022,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -121438,27 +121043,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -121466,14 +121071,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -121481,14 +121086,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -121501,15 +121106,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -121531,10 +121139,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -121563,11 +121168,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -121581,14 +121186,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -121597,9 +121202,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -121607,18 +121212,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -121626,42 +121231,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -121682,16 +121287,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -121703,27 +121308,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -121731,14 +121336,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -121746,14 +121351,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -121766,15 +121371,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -121796,13 +121404,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -121831,11 +121436,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -121849,14 +121454,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -121865,9 +121470,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -121875,18 +121480,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -121894,42 +121499,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -121950,16 +121555,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -121971,27 +121576,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -121999,14 +121604,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -122014,14 +121619,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -122034,15 +121639,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -122064,10 +121672,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -122096,11 +121701,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -122114,14 +121719,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -122130,9 +121735,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -122140,18 +121745,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -122159,42 +121764,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -122215,16 +121820,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -122236,27 +121841,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -122264,14 +121869,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -122279,14 +121884,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -122299,15 +121904,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -122329,13 +121937,10 @@ "testsCompleted": 50, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -122364,11 +121969,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -122382,14 +121987,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -122398,9 +122003,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -122408,18 +122013,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -122427,42 +122032,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -122483,16 +122088,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -122504,27 +122109,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -122532,14 +122137,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -122547,14 +122152,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -122567,15 +122172,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -122597,13 +122205,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -122632,11 +122237,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -122650,14 +122255,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -122666,9 +122271,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -122676,18 +122281,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -122695,42 +122300,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -122751,16 +122356,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -122772,27 +122377,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -122800,14 +122405,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -122815,14 +122420,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -122835,15 +122440,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -122865,10 +122473,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -122897,11 +122502,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -122915,14 +122520,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -122931,9 +122536,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -122941,18 +122546,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -122960,42 +122565,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -123016,16 +122621,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -123037,27 +122642,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -123065,14 +122670,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -123080,14 +122685,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -123100,15 +122705,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -123130,13 +122738,10 @@ "testsCompleted": 50, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -123165,11 +122770,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -123183,14 +122788,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -123199,9 +122804,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -123209,18 +122814,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -123228,42 +122833,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -123284,16 +122889,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -123305,27 +122910,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -123333,14 +122938,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -123348,14 +122953,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -123368,15 +122973,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -123398,10 +123006,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -123430,11 +123035,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -123448,14 +123053,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -123464,9 +123069,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -123474,18 +123079,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -123493,42 +123098,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -123549,16 +123154,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -123570,27 +123175,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -123598,14 +123203,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -123613,14 +123218,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -123633,15 +123238,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -123663,13 +123271,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -123698,11 +123303,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -123716,14 +123321,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -123732,9 +123337,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -123742,18 +123347,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -123761,42 +123366,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -123817,16 +123422,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -123838,27 +123443,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -123866,14 +123471,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -123881,14 +123486,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -123901,15 +123506,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -123931,13 +123539,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -123966,11 +123571,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -123984,14 +123589,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -124000,9 +123605,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -124010,18 +123615,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -124029,42 +123634,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -124085,16 +123690,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -124106,27 +123711,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -124134,14 +123739,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -124149,14 +123754,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -124169,15 +123774,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -124199,10 +123807,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -124231,11 +123836,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -124249,14 +123854,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -124265,9 +123870,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -124275,18 +123880,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -124294,42 +123899,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -124350,16 +123955,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -124371,27 +123976,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -124399,14 +124004,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -124414,14 +124019,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -124434,15 +124039,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -124464,13 +124072,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -124499,11 +124104,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -124517,14 +124122,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -124533,9 +124138,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -124543,18 +124148,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -124562,42 +124167,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -124618,16 +124223,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -124639,27 +124244,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -124667,14 +124272,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -124682,14 +124287,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -124702,15 +124307,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -124732,13 +124340,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -124767,11 +124372,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -124785,14 +124390,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -124801,9 +124406,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -124811,18 +124416,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -124830,42 +124435,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -124886,16 +124491,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -124907,27 +124512,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -124935,14 +124540,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -124950,14 +124555,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -124970,15 +124575,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -125000,10 +124608,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -125032,11 +124637,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -125050,14 +124655,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -125066,9 +124671,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -125076,18 +124681,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -125095,42 +124700,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -125151,16 +124756,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -125172,27 +124777,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -125200,14 +124805,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -125215,14 +124820,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -125235,15 +124840,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -125265,13 +124873,10 @@ "testsCompleted": 17, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -125300,11 +124905,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -125318,14 +124923,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -125334,9 +124939,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -125344,18 +124949,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -125363,42 +124968,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -125419,16 +125024,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -125440,27 +125045,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -125468,14 +125073,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -125483,14 +125088,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -125503,15 +125108,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -125533,13 +125141,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -125568,11 +125173,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -125586,14 +125191,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -125602,9 +125207,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -125612,18 +125217,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -125631,42 +125236,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -125687,16 +125292,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -125708,27 +125313,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -125736,14 +125341,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -125751,14 +125356,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -125771,15 +125376,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -125801,13 +125409,10 @@ "testsCompleted": 17, "static": false, "killedBy": [ - "652" + "655" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -125836,11 +125441,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -125854,14 +125459,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -125870,9 +125475,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -125880,18 +125485,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -125899,42 +125504,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -125955,16 +125560,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -125976,27 +125581,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -126004,14 +125609,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -126019,14 +125624,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -126039,15 +125644,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -126069,13 +125677,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -126104,11 +125709,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -126122,14 +125727,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -126138,9 +125743,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -126148,18 +125753,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -126167,42 +125772,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -126223,16 +125828,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -126244,27 +125849,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -126272,14 +125877,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -126287,14 +125892,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -126307,15 +125912,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -126337,10 +125945,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -126369,11 +125974,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -126387,14 +125992,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -126403,9 +126008,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -126413,18 +126018,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -126432,42 +126037,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -126488,16 +126093,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -126509,27 +126114,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -126537,14 +126142,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -126552,14 +126157,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -126572,15 +126177,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -126602,13 +126210,10 @@ "testsCompleted": 50, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -126637,11 +126242,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -126655,14 +126260,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -126671,9 +126276,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -126681,18 +126286,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -126700,42 +126305,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -126756,16 +126361,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -126777,27 +126382,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -126805,14 +126410,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -126820,14 +126425,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -126840,15 +126445,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -126870,13 +126478,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -126905,11 +126510,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -126923,14 +126528,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -126939,9 +126544,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -126949,18 +126554,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -126968,42 +126573,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -127024,16 +126629,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -127045,27 +126650,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -127073,14 +126678,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -127088,14 +126693,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -127108,15 +126713,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -127138,10 +126746,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -127170,11 +126775,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -127188,14 +126793,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -127204,9 +126809,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -127214,18 +126819,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -127233,42 +126838,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -127289,16 +126894,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -127310,27 +126915,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -127338,14 +126943,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -127353,14 +126958,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -127373,15 +126978,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -127403,13 +127011,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -127438,11 +127043,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -127456,14 +127061,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -127472,9 +127077,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -127482,18 +127087,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -127501,42 +127106,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -127557,16 +127162,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -127578,27 +127183,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -127606,14 +127211,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -127621,14 +127226,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -127641,15 +127246,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -127671,10 +127279,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -127703,11 +127308,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -127721,14 +127326,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -127737,9 +127342,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -127747,18 +127352,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -127766,42 +127371,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -127822,16 +127427,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -127843,27 +127448,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -127871,14 +127476,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -127886,14 +127491,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -127906,15 +127511,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -127936,13 +127544,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "843" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -127971,11 +127576,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -127989,14 +127594,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -128005,9 +127610,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -128015,18 +127620,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -128034,42 +127639,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -128090,16 +127695,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -128111,27 +127716,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -128139,14 +127744,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -128154,14 +127759,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -128174,15 +127779,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -128204,10 +127812,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -128236,11 +127841,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -128254,14 +127859,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -128270,9 +127875,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -128280,18 +127885,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -128299,42 +127904,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -128355,16 +127960,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -128376,27 +127981,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -128404,14 +128009,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -128419,14 +128024,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -128439,15 +128044,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -128469,13 +128077,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1927" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -128504,11 +128109,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -128522,14 +128127,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -128538,9 +128143,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -128548,18 +128153,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -128567,42 +128172,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", - "1199", - "1200", + "1169", + "1170", + "1171", + "1199", + "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -128623,16 +128228,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -128644,27 +128249,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -128672,14 +128277,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -128687,14 +128292,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -128707,15 +128312,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -128737,9 +128345,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -128756,44 +128361,47 @@ "384", "385", "386", - "667", - "668", - "669", + "387", + "388", + "389", "670", "671", "672", "673", - "844", - "845", - "1251", - "1252", - "1253", + "674", + "675", + "676", + "847", + "848", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", "1302", "1303", "1304", - "1437", - "1438", - "1439", + "1305", + "1306", + "1307", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -128815,12 +128423,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1296" + "1299" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -128837,44 +128442,47 @@ "384", "385", "386", - "667", - "668", - "669", + "387", + "388", + "389", "670", "671", "672", "673", - "844", - "845", - "1251", - "1252", - "1253", + "674", + "675", + "676", + "847", + "848", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", "1302", "1303", "1304", - "1437", - "1438", - "1439", + "1305", + "1306", + "1307", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -128896,12 +128504,9 @@ "testsCompleted": 20, "static": false, "killedBy": [ - "845" + "848" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -128918,44 +128523,47 @@ "384", "385", "386", - "667", - "668", - "669", + "387", + "388", + "389", "670", "671", "672", "673", - "844", - "845", - "1251", - "1252", - "1253", + "674", + "675", + "676", + "847", + "848", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", "1302", "1303", "1304", - "1437", - "1438", - "1439", + "1305", + "1306", + "1307", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -128977,12 +128585,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -128999,44 +128604,47 @@ "384", "385", "386", - "667", - "668", - "669", + "387", + "388", + "389", "670", "671", "672", "673", - "844", - "845", - "1251", - "1252", - "1253", + "674", + "675", + "676", + "847", + "848", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", "1302", "1303", "1304", - "1437", - "1438", - "1439", + "1305", + "1306", + "1307", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -129058,12 +128666,9 @@ "testsCompleted": 19, "static": false, "killedBy": [ - "1296" + "1299" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -129080,44 +128685,47 @@ "384", "385", "386", - "667", - "668", - "669", + "387", + "388", + "389", "670", "671", "672", "673", - "844", - "845", - "1251", - "1252", - "1253", + "674", + "675", + "676", + "847", + "848", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", "1302", "1303", "1304", - "1437", - "1438", - "1439", + "1305", + "1306", + "1307", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -129139,12 +128747,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "369" + "372" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -129161,44 +128766,47 @@ "384", "385", "386", - "667", - "668", - "669", + "387", + "388", + "389", "670", "671", "672", "673", - "844", - "845", - "1251", - "1252", - "1253", + "674", + "675", + "676", + "847", + "848", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", "1302", "1303", "1304", - "1437", - "1438", - "1439", + "1305", + "1306", + "1307", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -129220,12 +128828,9 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "845" + "848" ], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -129242,44 +128847,47 @@ "384", "385", "386", - "667", - "668", - "669", + "387", + "388", + "389", "670", "671", "672", "673", - "844", - "845", - "1251", - "1252", - "1253", + "674", + "675", + "676", + "847", + "848", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", "1302", "1303", "1304", - "1437", - "1438", - "1439", + "1305", + "1306", + "1307", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -129301,9 +128909,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -129320,44 +128925,47 @@ "384", "385", "386", - "667", - "668", - "669", + "387", + "388", + "389", "670", "671", "672", "673", - "844", - "845", - "1251", - "1252", - "1253", + "674", + "675", + "676", + "847", + "848", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", "1302", "1303", "1304", - "1437", - "1438", - "1439", + "1305", + "1306", + "1307", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", - "1478" + "1478", + "1479", + "1480", + "1481" ], "location": { "end": { @@ -129379,10 +128987,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -129411,11 +129016,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -129429,11 +129034,11 @@ "698", "699", "700", - "845", - "846", - "961", - "962", - "963", + "701", + "702", + "703", + "848", + "849", "964", "965", "966", @@ -129442,9 +129047,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -129452,18 +129057,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -129471,42 +129076,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -129527,16 +129132,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -129548,27 +129153,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -129576,14 +129181,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -129591,14 +129196,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -129611,15 +129216,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -129641,11 +129249,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "847", - "848", - "1254", - "1255", - "1256" + "850", + "851", + "1257", + "1258", + "1259" ], "location": { "end": { @@ -129667,14 +129275,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "847" + "850" ], "coveredBy": [ - "847", - "848", - "1254", - "1255", - "1256" + "850", + "851", + "1257", + "1258", + "1259" ], "location": { "end": { @@ -129696,14 +129304,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "847" + "850" ], "coveredBy": [ - "847", - "848", - "1254", - "1255", - "1256" + "850", + "851", + "1257", + "1258", + "1259" ], "location": { "end": { @@ -129725,14 +129333,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "847" + "850" ], "coveredBy": [ - "847", - "848", - "1254", - "1255", - "1256" + "850", + "851", + "1257", + "1258", + "1259" ], "location": { "end": { @@ -129754,14 +129362,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "847" + "850" ], "coveredBy": [ - "847", - "848", - "1254", - "1255", - "1256" + "850", + "851", + "1257", + "1258", + "1259" ], "location": { "end": { @@ -129783,9 +129391,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "368", - "369", - "370", "371", "372", "373", @@ -129802,9 +129407,9 @@ "384", "385", "386", - "636", - "637", - "638", + "387", + "388", + "389", "639", "640", "641", @@ -129840,9 +129445,9 @@ "671", "672", "673", - "685", - "686", - "687", + "674", + "675", + "676", "688", "689", "690", @@ -129856,15 +129461,15 @@ "698", "699", "700", - "843", - "844", - "845", + "701", + "702", + "703", "846", "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -129873,9 +129478,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -129883,18 +129488,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -129902,42 +129507,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -129958,16 +129563,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -129979,33 +129584,33 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", + "1391", + "1392", + "1393", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -130013,14 +129618,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -130028,14 +129633,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -130048,15 +129653,18 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", - "1930" + "1616", + "1617", + "1618", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { @@ -130084,12 +129692,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "1873", - "1874", - "1875", - "1939", - "2034", - "2035" + "1876", + "1877", + "1878", + "1942", + "2037", + "2038" ], "location": { "end": { @@ -130111,12 +129719,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "1873", - "1874", - "1875", - "1939", - "2034", - "2035" + "1876", + "1877", + "1878", + "1942", + "2037", + "2038" ], "location": { "end": { @@ -130138,15 +129746,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "2034" + "2037" ], "coveredBy": [ - "1873", - "1874", - "1875", - "1939", - "2034", - "2035" + "1876", + "1877", + "1878", + "1942", + "2037", + "2038" ], "location": { "end": { @@ -130168,15 +129776,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1873" + "1876" ], "coveredBy": [ - "1873", - "1874", - "1875", - "1939", - "2034", - "2035" + "1876", + "1877", + "1878", + "1942", + "2037", + "2038" ], "location": { "end": { @@ -130198,15 +129806,15 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "2034" + "2037" ], "coveredBy": [ - "1873", - "1874", - "1875", - "1939", - "2034", - "2035" + "1876", + "1877", + "1878", + "1942", + "2037", + "2038" ], "location": { "end": { @@ -130228,15 +129836,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1873" + "1876" ], "coveredBy": [ - "1873", - "1874", - "1875", - "1939", - "2034", - "2035" + "1876", + "1877", + "1878", + "1942", + "2037", + "2038" ], "location": { "end": { @@ -130258,12 +129866,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "1873", - "1874", - "1875", - "1939", - "2034", - "2035" + "1876", + "1877", + "1878", + "1942", + "2037", + "2038" ], "location": { "end": { @@ -130285,10 +129893,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "2034" + "2037" ], "coveredBy": [ - "2034" + "2037" ], "location": { "end": { @@ -130310,14 +129918,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "2035" + "2038" ], "coveredBy": [ - "1873", - "1874", - "1875", - "1939", - "2035" + "1876", + "1877", + "1878", + "1942", + "2038" ], "location": { "end": { @@ -130339,12 +129947,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "1873", - "1874", - "1875", - "1939", - "2034", - "2035" + "1876", + "1877", + "1878", + "1942", + "2037", + "2038" ], "location": { "end": { @@ -130372,9 +129980,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", "413", "414", @@ -130387,9 +129992,9 @@ "421", "422", "423", - "438", - "439", - "440", + "424", + "425", + "426", "441", "442", "443", @@ -130415,9 +130020,9 @@ "463", "464", "465", - "494", - "495", - "496", + "466", + "467", + "468", "497", "498", "499", @@ -130428,18 +130033,18 @@ "504", "505", "506", - "575", - "576", - "577", + "507", + "508", + "509", "578", "579", "580", "581", "582", + "583", "584", - "722", - "723", - "724", + "585", + "587", "725", "726", "727", @@ -130450,33 +130055,36 @@ "732", "733", "734", - "1055", - "1056", - "1057", + "735", + "736", + "737", "1058", "1059", "1060", - "1267", - "1268", - "1269", + "1061", + "1062", + "1063", "1270", "1271", - "1408", - "1409", - "1410", + "1272", + "1273", + "1274", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -130498,9 +130106,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", "413", "414", @@ -130513,9 +130118,9 @@ "421", "422", "423", - "438", - "439", - "440", + "424", + "425", + "426", "441", "442", "443", @@ -130541,9 +130146,9 @@ "463", "464", "465", - "494", - "495", - "496", + "466", + "467", + "468", "497", "498", "499", @@ -130554,18 +130159,18 @@ "504", "505", "506", - "575", - "576", - "577", + "507", + "508", + "509", "578", "579", "580", "581", "582", + "583", "584", - "722", - "723", - "724", + "585", + "587", "725", "726", "727", @@ -130576,33 +130181,36 @@ "732", "733", "734", - "1055", - "1056", - "1057", + "735", + "736", + "737", "1058", "1059", "1060", - "1267", - "1268", - "1269", + "1061", + "1062", + "1063", "1270", "1271", - "1408", - "1409", - "1410", + "1272", + "1273", + "1274", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -130624,12 +130232,9 @@ "testsCompleted": 18, "static": false, "killedBy": [ - "421" + "424" ], "coveredBy": [ - "409", - "410", - "411", "412", "413", "414", @@ -130642,9 +130247,9 @@ "421", "422", "423", - "438", - "439", - "440", + "424", + "425", + "426", "441", "442", "443", @@ -130670,9 +130275,9 @@ "463", "464", "465", - "494", - "495", - "496", + "466", + "467", + "468", "497", "498", "499", @@ -130683,18 +130288,18 @@ "504", "505", "506", - "575", - "576", - "577", + "507", + "508", + "509", "578", "579", "580", "581", "582", + "583", "584", - "722", - "723", - "724", + "585", + "587", "725", "726", "727", @@ -130705,33 +130310,36 @@ "732", "733", "734", - "1055", - "1056", - "1057", + "735", + "736", + "737", "1058", "1059", "1060", - "1267", - "1268", - "1269", + "1061", + "1062", + "1063", "1270", "1271", - "1408", - "1409", - "1410", + "1272", + "1273", + "1274", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -130753,9 +130361,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", "413", "414", @@ -130768,9 +130373,9 @@ "421", "422", "423", - "438", - "439", - "440", + "424", + "425", + "426", "441", "442", "443", @@ -130796,9 +130401,9 @@ "463", "464", "465", - "494", - "495", - "496", + "466", + "467", + "468", "497", "498", "499", @@ -130809,18 +130414,18 @@ "504", "505", "506", - "575", - "576", - "577", + "507", + "508", + "509", "578", "579", "580", "581", "582", + "583", "584", - "722", - "723", - "724", + "585", + "587", "725", "726", "727", @@ -130831,33 +130436,36 @@ "732", "733", "734", - "1055", - "1056", - "1057", + "735", + "736", + "737", "1058", "1059", "1060", - "1267", - "1268", - "1269", + "1061", + "1062", + "1063", "1270", "1271", - "1408", - "1409", - "1410", + "1272", + "1273", + "1274", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -130879,15 +130487,15 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -130909,15 +130517,15 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -130939,15 +130547,15 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -130969,18 +130577,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "576" + "579" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131002,18 +130610,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "578" + "581" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131035,18 +130643,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "576" + "579" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131068,18 +130676,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "576" + "579" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131101,18 +130709,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "576" + "579" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131134,15 +130742,15 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131164,11 +130772,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "410", - "412", - "578", - "580", - "582" + "413", + "415", + "581", + "583", + "585" ], "location": { "end": { @@ -131190,18 +130798,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "576" + "579" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131223,18 +130831,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "581" + "584" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131256,18 +130864,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "410" + "413" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131289,18 +130897,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "410" + "413" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131322,18 +130930,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "576" + "579" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131355,15 +130963,15 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131385,18 +130993,18 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "576" + "579" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131418,18 +131026,18 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "578" + "581" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131451,18 +131059,18 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "412" + "415" ], "coveredBy": [ - "409", - "410", - "411", "412", - "576", - "578", - "580", + "413", + "414", + "415", + "579", "581", - "582" + "583", + "584", + "585" ], "location": { "end": { @@ -131484,13 +131092,10 @@ "static": false, "killedBy": [], "coveredBy": [ - "413", - "414", - "415", "416", - "438", - "439", - "440", + "417", + "418", + "419", "441", "442", "443", @@ -131516,9 +131121,9 @@ "463", "464", "465", - "722", - "723", - "724", + "466", + "467", + "468", "725", "726", "727", @@ -131528,7 +131133,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -131550,16 +131158,13 @@ "testsCompleted": 21, "static": false, "killedBy": [ - "455" + "458" ], "coveredBy": [ - "413", - "414", - "415", "416", - "438", - "439", - "440", + "417", + "418", + "419", "441", "442", "443", @@ -131585,9 +131190,9 @@ "463", "464", "465", - "722", - "723", - "724", + "466", + "467", + "468", "725", "726", "727", @@ -131597,7 +131202,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -131619,13 +131227,10 @@ "static": false, "killedBy": [], "coveredBy": [ - "413", - "414", - "415", "416", - "438", - "439", - "440", + "417", + "418", + "419", "441", "442", "443", @@ -131651,9 +131256,9 @@ "463", "464", "465", - "722", - "723", - "724", + "466", + "467", + "468", "725", "726", "727", @@ -131663,7 +131268,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -131685,13 +131293,10 @@ "static": false, "killedBy": [], "coveredBy": [ - "413", - "414", - "415", "416", - "438", - "439", - "440", + "417", + "418", + "419", "441", "442", "443", @@ -131717,9 +131322,9 @@ "463", "464", "465", - "722", - "723", - "724", + "466", + "467", + "468", "725", "726", "727", @@ -131729,7 +131334,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -131751,13 +131359,10 @@ "static": false, "killedBy": [], "coveredBy": [ - "413", - "414", - "415", "416", - "438", - "439", - "440", + "417", + "418", + "419", "441", "442", "443", @@ -131783,9 +131388,9 @@ "463", "464", "465", - "722", - "723", - "724", + "466", + "467", + "468", "725", "726", "727", @@ -131795,7 +131400,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -131817,16 +131425,13 @@ "testsCompleted": 21, "static": false, "killedBy": [ - "455" + "458" ], "coveredBy": [ - "413", - "414", - "415", "416", - "438", - "439", - "440", + "417", + "418", + "419", "441", "442", "443", @@ -131852,9 +131457,9 @@ "463", "464", "465", - "722", - "723", - "724", + "466", + "467", + "468", "725", "726", "727", @@ -131864,7 +131469,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -131886,13 +131494,10 @@ "static": false, "killedBy": [], "coveredBy": [ - "413", - "414", - "415", "416", - "438", - "439", - "440", + "417", + "418", + "419", "441", "442", "443", @@ -131918,9 +131523,9 @@ "463", "464", "465", - "722", - "723", - "724", + "466", + "467", + "468", "725", "726", "727", @@ -131930,7 +131535,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -131952,13 +131560,10 @@ "static": false, "killedBy": [], "coveredBy": [ - "413", - "414", - "415", "416", - "438", - "439", - "440", + "417", + "418", + "419", "441", "442", "443", @@ -131984,9 +131589,9 @@ "463", "464", "465", - "722", - "723", - "724", + "466", + "467", + "468", "725", "726", "727", @@ -131996,7 +131601,10 @@ "731", "732", "733", - "734" + "734", + "735", + "736", + "737" ], "location": { "end": { @@ -132018,15 +131626,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "415", + "420", + "421", "497", "498", "499", @@ -132037,39 +131642,42 @@ "504", "505", "506", - "576", - "578", - "580", + "507", + "508", + "509", + "579", "581", - "582", - "726", - "728", + "583", + "584", + "585", "729", - "730", + "731", + "732", "733", - "734", - "1055", - "1056", - "1057", + "736", + "737", "1058", "1059", "1060", - "1408", - "1409", - "1410", + "1061", + "1062", + "1063", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132091,15 +131699,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "415", + "420", + "421", "497", "498", "499", @@ -132110,39 +131715,42 @@ "504", "505", "506", - "576", - "578", - "580", + "507", + "508", + "509", + "579", "581", - "582", - "726", - "728", + "583", + "584", + "585", "729", - "730", + "731", + "732", "733", - "734", - "1055", - "1056", - "1057", + "736", + "737", "1058", "1059", "1060", - "1408", - "1409", - "1410", + "1061", + "1062", + "1063", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132164,15 +131772,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "415", + "420", + "421", "497", "498", "499", @@ -132183,39 +131788,42 @@ "504", "505", "506", - "576", - "578", - "580", + "507", + "508", + "509", + "579", "581", - "582", - "726", - "728", + "583", + "584", + "585", "729", - "730", + "731", + "732", "733", - "734", - "1055", - "1056", - "1057", + "736", + "737", "1058", "1059", "1060", - "1408", - "1409", - "1410", + "1061", + "1062", + "1063", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132237,15 +131845,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "415", + "420", + "421", "497", "498", "499", @@ -132256,39 +131861,42 @@ "504", "505", "506", - "576", - "578", - "580", + "507", + "508", + "509", + "579", "581", - "582", - "726", - "728", + "583", + "584", + "585", "729", - "730", + "731", + "732", "733", - "734", - "1055", - "1056", - "1057", + "736", + "737", "1058", "1059", "1060", - "1408", - "1409", - "1410", + "1061", + "1062", + "1063", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132310,15 +131918,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "415", + "420", + "421", "497", "498", "499", @@ -132329,39 +131934,42 @@ "504", "505", "506", - "576", - "578", - "580", + "507", + "508", + "509", + "579", "581", - "582", - "726", - "728", + "583", + "584", + "585", "729", - "730", + "731", + "732", "733", - "734", - "1055", - "1056", - "1057", + "736", + "737", "1058", "1059", "1060", - "1408", - "1409", - "1410", + "1061", + "1062", + "1063", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132383,27 +131991,27 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "417", - "576", - "578", - "580", + "412", + "420", + "579", "581", - "582", - "728", - "729", - "733", - "734", - "1409", - "1410", - "1411", - "1432", - "1433", - "1434", + "583", + "584", + "585", + "731", + "732", + "736", + "737", + "1412", + "1413", + "1414", "1435", "1436", - "1451", - "1453" + "1437", + "1438", + "1439", + "1454", + "1456" ], "location": { "end": { @@ -132425,27 +132033,27 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "417", - "576", - "578", - "580", + "412", + "420", + "579", "581", - "582", - "728", - "729", - "733", - "734", - "1409", - "1410", - "1411", - "1432", - "1433", - "1434", + "583", + "584", + "585", + "731", + "732", + "736", + "737", + "1412", + "1413", + "1414", "1435", "1436", - "1451", - "1453" + "1437", + "1438", + "1439", + "1454", + "1456" ], "location": { "end": { @@ -132467,17 +132075,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "410" + "413" ], "coveredBy": [ - "410", - "411", - "412", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "415", + "420", + "421", "497", "498", "499", @@ -132488,27 +132093,30 @@ "504", "505", "506", - "726", - "730", - "1055", - "1056", - "1057", + "507", + "508", + "509", + "729", + "733", "1058", "1059", "1060", - "1408", - "1409", + "1061", + "1062", + "1063", "1411", "1412", - "1433", - "1434", + "1414", + "1415", "1436", - "1448", - "1449", - "1450", + "1437", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132530,16 +132138,13 @@ "testsCompleted": 5, "static": false, "killedBy": [ - "417" + "420" ], "coveredBy": [ - "410", - "411", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "420", + "421", "497", "498", "499", @@ -132550,27 +132155,30 @@ "504", "505", "506", - "726", - "730", - "1055", - "1056", - "1057", + "507", + "508", + "509", + "729", + "733", "1058", "1059", "1060", - "1408", - "1409", + "1061", + "1062", + "1063", "1411", "1412", - "1433", - "1434", + "1414", + "1415", "1436", - "1448", - "1449", - "1450", + "1437", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132592,16 +132200,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "410" + "413" ], "coveredBy": [ - "410", - "411", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "420", + "421", "497", "498", "499", @@ -132612,27 +132217,30 @@ "504", "505", "506", - "726", - "730", - "1055", - "1056", - "1057", + "507", + "508", + "509", + "729", + "733", "1058", "1059", "1060", - "1408", - "1409", + "1061", + "1062", + "1063", "1411", "1412", - "1433", - "1434", + "1414", + "1415", "1436", - "1448", - "1449", - "1450", + "1437", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132654,16 +132262,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "410" + "413" ], "coveredBy": [ - "410", - "411", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "420", + "421", "497", "498", "499", @@ -132674,27 +132279,30 @@ "504", "505", "506", - "726", - "730", - "1055", - "1056", - "1057", + "507", + "508", + "509", + "729", + "733", "1058", "1059", "1060", - "1408", - "1409", + "1061", + "1062", + "1063", "1411", "1412", - "1433", - "1434", + "1414", + "1415", "1436", - "1448", - "1449", - "1450", + "1437", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132716,14 +132324,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "410", - "411", - "412", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "415", + "420", + "421", "497", "498", "499", @@ -132734,27 +132339,30 @@ "504", "505", "506", - "726", - "730", - "1055", - "1056", - "1057", + "507", + "508", + "509", + "729", + "733", "1058", "1059", "1060", - "1408", - "1409", + "1061", + "1062", + "1063", "1411", "1412", - "1433", - "1434", + "1414", + "1415", "1436", - "1448", - "1449", - "1450", + "1437", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132776,14 +132384,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "410", - "411", - "412", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "415", + "420", + "421", "497", "498", "499", @@ -132794,27 +132399,30 @@ "504", "505", "506", - "726", - "730", - "1055", - "1056", - "1057", + "507", + "508", + "509", + "729", + "733", "1058", "1059", "1060", - "1408", - "1409", + "1061", + "1062", + "1063", "1411", "1412", - "1433", - "1434", + "1414", + "1415", "1436", - "1448", - "1449", - "1450", + "1437", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132836,14 +132444,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "410", - "411", - "412", - "417", - "418", - "494", - "495", - "496", + "413", + "414", + "415", + "420", + "421", "497", "498", "499", @@ -132854,27 +132459,30 @@ "504", "505", "506", - "726", - "730", - "1055", - "1056", - "1057", + "507", + "508", + "509", + "729", + "733", "1058", "1059", "1060", - "1408", - "1409", + "1061", + "1062", + "1063", "1411", "1412", - "1433", - "1434", + "1414", + "1415", "1436", - "1448", - "1449", - "1450", + "1437", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -132896,11 +132504,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "412", - "417", - "494", - "495", - "496", + "415", + "420", "497", "498", "499", @@ -132911,11 +132516,14 @@ "504", "505", "506", - "1058", - "1408", - "1409", + "507", + "508", + "509", + "1061", "1411", - "1412" + "1412", + "1414", + "1415" ], "location": { "end": { @@ -132937,11 +132545,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "412", - "417", - "494", - "495", - "496", + "415", + "420", "497", "498", "499", @@ -132952,11 +132557,14 @@ "504", "505", "506", - "1058", - "1408", - "1409", + "507", + "508", + "509", + "1061", "1411", - "1412" + "1412", + "1414", + "1415" ], "location": { "end": { @@ -132978,16 +132586,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "421", "422", "423", - "1267", - "1268", - "1269", + "424", + "425", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133009,16 +132617,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "421", "422", "423", - "1267", - "1268", - "1269", + "424", + "425", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133040,16 +132648,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "421", "422", "423", - "1267", - "1268", - "1269", + "424", + "425", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133071,16 +132679,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "421", "422", "423", - "1267", - "1268", - "1269", + "424", + "425", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133102,16 +132710,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "421", "422", "423", - "1267", - "1268", - "1269", + "424", + "425", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133133,16 +132741,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "421", "422", "423", - "1267", - "1268", - "1269", + "424", + "425", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133164,16 +132772,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "421", "422", "423", - "1267", - "1268", - "1269", + "424", + "425", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133195,16 +132803,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "421", "422", "423", - "1267", - "1268", - "1269", + "424", + "425", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133226,13 +132834,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133254,13 +132862,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133282,9 +132890,9 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "422" + "422", + "423", + "425" ], "location": { "end": { @@ -133306,9 +132914,9 @@ "static": false, "killedBy": [], "coveredBy": [ - "419", - "420", - "422" + "422", + "423", + "425" ], "location": { "end": { @@ -133330,16 +132938,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "421" + "424" ], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133361,16 +132969,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "421" + "424" ], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133392,16 +133000,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "421" + "424" ], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133423,16 +133031,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "421" + "424" ], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133454,16 +133062,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "421" + "424" ], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133485,16 +133093,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "421" + "424" ], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133516,16 +133124,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "421" + "424" ], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133547,16 +133155,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "421" + "424" ], "coveredBy": [ - "421", - "423", - "1267", - "1268", - "1269", + "424", + "426", "1270", - "1271" + "1271", + "1272", + "1273", + "1274" ], "location": { "end": { @@ -133578,9 +133186,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "409", - "410", - "411", "412", "413", "414", @@ -133593,9 +133198,9 @@ "421", "422", "423", - "438", - "439", - "440", + "424", + "425", + "426", "441", "442", "443", @@ -133621,9 +133226,9 @@ "463", "464", "465", - "494", - "495", - "496", + "466", + "467", + "468", "497", "498", "499", @@ -133634,18 +133239,18 @@ "504", "505", "506", - "575", - "576", - "577", + "507", + "508", + "509", "578", "579", "580", "581", "582", + "583", "584", - "722", - "723", - "724", + "585", + "587", "725", "726", "727", @@ -133656,33 +133261,36 @@ "732", "733", "734", - "1055", - "1056", - "1057", + "735", + "736", + "737", "1058", "1059", "1060", - "1267", - "1268", - "1269", + "1061", + "1062", + "1063", "1270", "1271", - "1408", - "1409", - "1410", + "1272", + "1273", + "1274", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", - "1453" + "1453", + "1454", + "1455", + "1456" ], "location": { "end": { @@ -133710,9 +133318,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -133723,20 +133328,23 @@ "732", "733", "734", - "1065", - "1066", - "1067", + "735", + "736", + "737", "1068", "1069", "1070", - "1448", - "1449", - "1450", + "1071", + "1072", + "1073", "1451", "1452", "1453", - "2009", - "2010" + "1454", + "1455", + "1456", + "2012", + "2013" ], "location": { "end": { @@ -133758,22 +133366,22 @@ "static": false, "killedBy": [], "coveredBy": [ - "726", - "728", "729", - "730", + "731", + "732", "733", - "734", - "1069", - "1070", - "1448", - "1449", - "1450", + "736", + "737", + "1072", + "1073", "1451", "1452", "1453", - "2009", - "2010" + "1454", + "1455", + "1456", + "2012", + "2013" ], "location": { "end": { @@ -133795,17 +133403,17 @@ "static": false, "killedBy": [], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -133827,20 +133435,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -133862,20 +133470,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -133897,20 +133505,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -133932,20 +133540,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "2009" + "2012" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -133967,20 +133575,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "2009" + "2012" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -134002,20 +133610,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -134037,20 +133645,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -134072,20 +133680,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1448" + "1451" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -134107,20 +133715,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "2009" + "2012" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -134142,20 +133750,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -134177,20 +133785,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "726" + "729" ], "coveredBy": [ - "726", - "730", - "1069", - "1070", - "1448", - "1449", - "1450", + "729", + "733", + "1072", + "1073", "1451", "1452", "1453", - "2009" + "1454", + "1455", + "1456", + "2012" ], "location": { "end": { @@ -134212,10 +133820,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "2009" + "2012" ], "coveredBy": [ - "2009" + "2012" ], "location": { "end": { @@ -134237,25 +133845,25 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "2010" + "2013" ], "coveredBy": [ - "726", - "728", "729", - "730", + "731", + "732", "733", - "734", - "1069", - "1070", - "1448", - "1449", - "1450", + "736", + "737", + "1072", + "1073", "1451", "1452", "1453", - "2009", - "2010" + "1454", + "1455", + "1456", + "2012", + "2013" ], "location": { "end": { @@ -134277,9 +133885,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "722", - "723", - "724", "725", "726", "727", @@ -134290,20 +133895,23 @@ "732", "733", "734", - "1065", - "1066", - "1067", + "735", + "736", + "737", "1068", "1069", "1070", - "1448", - "1449", - "1450", + "1071", + "1072", + "1073", "1451", "1452", "1453", - "2009", - "2010" + "1454", + "1455", + "1456", + "2012", + "2013" ], "location": { "end": { @@ -134331,20 +133939,20 @@ "static": true, "killedBy": [], "coveredBy": [ - "422", - "423", - "626", - "628", + "425", + "426", + "629", "631", - "633", - "739", - "743", - "997", - "1235", - "1282", - "1556", - "1847", - "2015" + "634", + "636", + "742", + "746", + "1000", + "1238", + "1285", + "1559", + "1850", + "2018" ], "location": { "end": { @@ -134372,47 +133980,47 @@ "static": true, "killedBy": [], "coveredBy": [ - "586", - "588", "589", - "590", "591", "592", "593", "594", "595", "596", - "704", - "739", - "743", - "811", - "812", - "813", - "992", - "993", + "597", + "598", + "599", + "707", + "742", + "746", + "814", + "815", + "816", "995", "996", - "997", "998", - "1089", - "1091", + "999", + "1000", + "1001", "1092", - "1093", - "1136", - "1137", - "1138", - "1180", - "1181", - "1235", - "1676", - "1677", - "1721", - "1753", - "1770", - "1847", + "1094", + "1095", + "1096", + "1139", + "1140", + "1141", + "1183", + "1184", + "1238", + "1679", + "1680", + "1724", + "1756", + "1773", "1850", - "1867", - "1988" + "1853", + "1870", + "1991" ], "location": { "end": { @@ -134440,19 +134048,19 @@ "static": true, "killedBy": [], "coveredBy": [ - "995", - "1089", - "1091", + "998", "1092", - "1093", - "1208", - "1209", - "1210", + "1094", + "1095", + "1096", "1211", "1212", "1213", - "1847", - "1997" + "1214", + "1215", + "1216", + "1850", + "2000" ], "location": { "end": { @@ -134480,8 +134088,8 @@ "static": true, "killedBy": [], "coveredBy": [ - "1847", - "1998" + "1850", + "2001" ], "location": { "end": { @@ -134509,10 +134117,10 @@ "static": true, "killedBy": [], "coveredBy": [ - "1136", - "1138", - "1847", - "1982" + "1139", + "1141", + "1850", + "1985" ], "location": { "end": { @@ -134540,46 +134148,46 @@ "static": true, "killedBy": [], "coveredBy": [ - "586", - "588", "589", - "590", "591", "592", "593", "594", "595", "596", - "704", - "739", - "743", - "811", - "812", - "813", - "992", - "993", + "597", + "598", + "599", + "707", + "742", + "746", + "814", + "815", + "816", "995", "996", - "997", "998", - "1089", - "1091", + "999", + "1000", + "1001", "1092", - "1093", - "1136", - "1137", - "1138", - "1180", - "1181", - "1235", - "1676", - "1677", - "1721", - "1753", - "1770", - "1847", + "1094", + "1095", + "1096", + "1139", + "1140", + "1141", + "1183", + "1184", + "1238", + "1679", + "1680", + "1724", + "1756", + "1773", "1850", - "1867" + "1853", + "1870" ], "location": { "end": { @@ -134607,8 +134215,8 @@ "static": true, "killedBy": [], "coveredBy": [ - "1867", - "1969" + "1870", + "1972" ], "location": { "end": { @@ -134636,45 +134244,45 @@ "static": true, "killedBy": [], "coveredBy": [ - "586", - "588", "589", - "590", "591", "592", "593", "594", "595", "596", - "704", - "739", - "743", - "811", - "812", - "813", - "992", - "993", + "597", + "598", + "599", + "707", + "742", + "746", + "814", + "815", + "816", "995", "996", - "997", "998", - "1089", - "1091", + "999", + "1000", + "1001", "1092", - "1093", - "1136", - "1137", - "1138", - "1180", - "1181", - "1235", - "1676", - "1677", - "1721", - "1753", - "1770", - "1850", - "1867" + "1094", + "1095", + "1096", + "1139", + "1140", + "1141", + "1183", + "1184", + "1238", + "1679", + "1680", + "1724", + "1756", + "1773", + "1853", + "1870" ], "location": { "end": { @@ -134719,36 +134327,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -134767,11 +134345,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -134800,16 +134405,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -134825,24 +134430,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -134862,13 +134467,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -134887,13 +134492,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -134902,10 +134507,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -134920,27 +134525,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -134949,34 +134554,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -134985,76 +134590,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -135072,116 +134677,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -135189,19 +134794,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2046" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2049" ], "location": { "end": { @@ -135246,36 +134854,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -135294,11 +134872,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -135327,16 +134932,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -135352,24 +134957,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -135389,13 +134994,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -135414,13 +135019,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -135429,10 +135034,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -135447,27 +135052,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -135476,34 +135081,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -135512,76 +135117,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -135599,116 +135204,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -135716,18 +135321,21 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973" ], "location": { "end": { @@ -135772,36 +135380,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -135820,22 +135398,49 @@ "180", "181", "182", - "205", - "206", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", "251", "252", "253", @@ -135853,16 +135458,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -135878,24 +135483,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -135915,13 +135520,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -135940,13 +135545,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -135955,10 +135560,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -135973,27 +135578,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -136002,34 +135607,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -136038,76 +135643,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -136125,116 +135730,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -136242,19 +135847,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2047" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2050" ], "location": { "end": { @@ -136299,36 +135907,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -136347,11 +135925,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -136380,16 +135985,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -136405,24 +136010,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -136442,13 +136047,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -136467,13 +136072,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -136482,10 +136087,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -136500,27 +136105,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -136529,34 +136134,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -136565,76 +136170,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -136652,116 +136257,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -136769,19 +136374,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2039" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2042" ], "location": { "end": { @@ -136826,36 +136434,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -136874,11 +136452,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -136907,16 +136512,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -136932,24 +136537,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -136969,13 +136574,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -136994,13 +136599,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -137009,10 +136614,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -137027,27 +136632,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -137056,34 +136661,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -137092,76 +136697,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -137179,116 +136784,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -137296,19 +136901,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2043" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2046" ], "location": { "end": { @@ -137353,36 +136961,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -137401,11 +136979,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -137434,16 +137039,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -137459,24 +137064,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -137496,13 +137101,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -137521,13 +137126,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -137536,10 +137141,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -137554,27 +137159,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -137583,34 +137188,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -137619,76 +137224,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -137706,116 +137311,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -137823,19 +137428,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2003" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2006" ], "location": { "end": { @@ -137880,36 +137488,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -137928,11 +137506,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -137961,16 +137566,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -137986,24 +137591,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -138023,13 +137628,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -138048,13 +137653,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -138063,10 +137668,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -138081,27 +137686,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -138110,34 +137715,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -138146,76 +137751,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -138233,116 +137838,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -138350,20 +137955,23 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2003", - "2031" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2006", + "2034" ], "location": { "end": { @@ -138408,36 +138016,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -138456,15 +138034,42 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", - "240", - "241", - "242", - "243", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", + "240", + "241", + "242", + "243", "244", "245", "246", @@ -138489,16 +138094,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -138514,24 +138119,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -138551,13 +138156,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -138576,13 +138181,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -138591,10 +138196,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -138609,27 +138214,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -138638,34 +138243,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -138674,76 +138279,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -138761,116 +138366,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -138878,19 +138483,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2048" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2051" ], "location": { "end": { @@ -138935,36 +138543,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -138983,11 +138561,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -139016,16 +138621,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -139041,24 +138646,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -139078,13 +138683,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -139103,13 +138708,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -139118,10 +138723,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -139136,27 +138741,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -139165,34 +138770,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -139201,76 +138806,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -139288,116 +138893,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -139405,19 +139010,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2030" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2033" ], "location": { "end": { @@ -139462,36 +139070,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -139510,11 +139088,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -139543,16 +139148,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -139568,24 +139173,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -139605,13 +139210,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -139630,13 +139235,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -139645,10 +139250,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -139663,27 +139268,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -139692,34 +139297,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -139728,76 +139333,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -139815,116 +139420,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", - "1254", - "1255", + "1220", + "1221", + "1222", + "1237", + "1238", + "1254", + "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -139932,19 +139537,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2054" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2057" ], "location": { "end": { @@ -139989,36 +139597,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -140037,11 +139615,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -140070,16 +139675,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -140095,24 +139700,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -140132,13 +139737,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -140157,13 +139762,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -140172,10 +139777,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -140190,27 +139795,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -140219,34 +139824,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -140255,76 +139860,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -140342,116 +139947,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -140459,19 +140064,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2053" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2056" ], "location": { "end": { @@ -140516,36 +140124,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -140564,11 +140142,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -140597,16 +140202,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -140622,24 +140227,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -140659,13 +140264,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -140684,13 +140289,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -140699,10 +140304,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -140717,27 +140322,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -140746,34 +140351,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -140782,76 +140387,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -140869,116 +140474,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -140986,19 +140591,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2037" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2040" ], "location": { "end": { @@ -141043,36 +140651,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -141091,11 +140669,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -141124,16 +140729,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -141149,24 +140754,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -141186,13 +140791,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -141211,13 +140816,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -141226,10 +140831,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -141244,27 +140849,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -141273,34 +140878,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -141309,76 +140914,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -141396,116 +141001,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -141513,19 +141118,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2006" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2009" ], "location": { "end": { @@ -141570,36 +141178,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -141618,11 +141196,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -141651,16 +141256,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -141676,24 +141281,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -141713,13 +141318,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -141738,13 +141343,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -141753,10 +141358,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -141771,27 +141376,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -141800,34 +141405,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -141836,76 +141441,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -141923,116 +141528,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -142040,18 +141645,21 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973" ], "location": { "end": { @@ -142096,36 +141704,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -142144,11 +141722,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -142177,16 +141782,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -142202,24 +141807,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -142239,13 +141844,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -142264,13 +141869,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -142279,10 +141884,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -142297,27 +141902,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -142326,34 +141931,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -142362,76 +141967,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -142449,116 +142054,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -142566,18 +142171,21 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973" ], "location": { "end": { @@ -142622,36 +142230,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -142670,11 +142248,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -142703,16 +142308,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -142728,24 +142333,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -142765,13 +142370,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -142790,13 +142395,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -142805,10 +142410,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -142823,27 +142428,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -142852,34 +142457,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -142888,76 +142493,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -142975,116 +142580,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -143092,19 +142697,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2033" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2036" ], "location": { "end": { @@ -143149,36 +142757,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -143197,11 +142775,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -143230,16 +142835,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -143255,24 +142860,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -143292,13 +142897,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -143317,13 +142922,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -143332,10 +142937,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -143350,27 +142955,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -143379,34 +142984,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -143415,76 +143020,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -143502,116 +143107,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -143619,19 +143224,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2040" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2043" ], "location": { "end": { @@ -143676,36 +143284,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -143724,11 +143302,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -143757,16 +143362,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -143782,24 +143387,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -143819,13 +143424,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -143844,13 +143449,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -143859,10 +143464,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -143877,27 +143482,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -143906,34 +143511,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -143942,76 +143547,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -144029,116 +143634,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -144146,20 +143751,23 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "1972", - "2017" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "1975", + "2020" ], "location": { "end": { @@ -144204,36 +143812,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -144252,11 +143830,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -144285,16 +143890,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -144310,24 +143915,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -144347,13 +143952,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -144372,13 +143977,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -144387,10 +143992,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -144405,27 +144010,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -144434,34 +144039,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -144470,76 +144075,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -144557,116 +144162,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -144674,19 +144279,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "1972" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "1975" ], "location": { "end": { @@ -144731,36 +144339,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -144779,11 +144357,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -144812,16 +144417,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -144837,24 +144442,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -144874,13 +144479,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -144899,13 +144504,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -144914,10 +144519,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -144932,27 +144537,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -144961,34 +144566,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -144997,76 +144602,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -145084,116 +144689,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", - "1556", - "1557", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", + "1556", + "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -145201,19 +144806,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2027" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2030" ], "location": { "end": { @@ -145258,36 +144866,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -145306,11 +144884,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -145339,16 +144944,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -145364,24 +144969,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -145401,13 +145006,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -145426,13 +145031,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -145441,10 +145046,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -145459,27 +145064,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -145488,34 +145093,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -145524,76 +145129,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -145611,116 +145216,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -145728,19 +145333,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2025" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2028" ], "location": { "end": { @@ -145785,36 +145393,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -145833,11 +145411,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -145866,16 +145471,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -145891,24 +145496,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -145928,13 +145533,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -145953,13 +145558,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -145968,10 +145573,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -145986,27 +145591,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -146015,34 +145620,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -146051,76 +145656,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -146138,116 +145743,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -146255,19 +145860,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2032" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2035" ], "location": { "end": { @@ -146312,36 +145920,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -146360,11 +145938,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -146393,16 +145998,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -146418,24 +146023,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -146455,13 +146060,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -146480,13 +146085,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -146495,10 +146100,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -146513,27 +146118,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -146542,34 +146147,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -146578,76 +146183,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -146665,116 +146270,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -146782,19 +146387,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2042" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2045" ], "location": { "end": { @@ -146839,36 +146447,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -146887,11 +146465,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -146920,16 +146525,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -146945,24 +146550,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -146982,13 +146587,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -147007,13 +146612,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -147022,10 +146627,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -147040,27 +146645,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -147069,34 +146674,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -147105,76 +146710,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -147192,116 +146797,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -147309,19 +146914,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2049" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2052" ], "location": { "end": { @@ -147366,36 +146974,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -147414,11 +146992,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -147447,16 +147052,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -147472,24 +147077,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -147509,13 +147114,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -147534,13 +147139,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -147549,10 +147154,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -147567,27 +147172,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -147596,34 +147201,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -147632,76 +147237,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -147719,116 +147324,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -147836,19 +147441,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2038" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2041" ], "location": { "end": { @@ -147893,36 +147501,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -147941,11 +147519,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -147974,16 +147579,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -147999,24 +147604,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -148036,13 +147641,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -148061,13 +147666,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -148076,10 +147681,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -148094,27 +147699,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -148123,34 +147728,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -148159,76 +147764,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -148246,116 +147851,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -148363,19 +147968,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2041" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2044" ], "location": { "end": { @@ -148420,36 +148028,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -148468,11 +148046,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -148501,16 +148106,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -148526,24 +148131,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -148563,13 +148168,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -148588,13 +148193,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -148603,10 +148208,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -148621,27 +148226,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -148650,34 +148255,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -148686,76 +148291,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -148773,116 +148378,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -148890,19 +148495,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2052" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2055" ], "location": { "end": { @@ -148947,36 +148555,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -148995,11 +148573,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -149028,16 +148633,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -149053,24 +148658,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -149090,13 +148695,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -149115,13 +148720,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -149130,10 +148735,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -149148,27 +148753,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -149177,34 +148782,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -149213,76 +148818,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -149300,116 +148905,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -149417,19 +149022,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2021" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2024" ], "location": { "end": { @@ -149474,36 +149082,6 @@ "58", "60", "61", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -149522,11 +149100,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -149555,16 +149160,16 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "282", "283", "284", "285", @@ -149580,24 +149185,24 @@ "295", "296", "297", - "326", + "298", + "299", + "300", "329", - "331", "332", - "333", "334", "335", "336", "337", "338", - "370", - "371", - "372", + "339", + "340", + "341", "373", - "377", - "387", - "388", - "389", + "374", + "375", + "376", + "380", "390", "391", "392", @@ -149617,13 +149222,13 @@ "406", "407", "408", - "422", - "423", - "467", - "468", - "473", - "474", - "475", + "409", + "410", + "411", + "425", + "426", + "470", + "471", "476", "477", "478", @@ -149642,13 +149247,13 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "523", - "524", - "525", + "515", + "516", + "517", "526", "527", "528", @@ -149657,10 +149262,10 @@ "531", "532", "533", - "546", - "568", - "569", - "570", + "534", + "535", + "536", + "549", "571", "572", "573", @@ -149675,27 +149280,27 @@ "582", "583", "584", - "643", + "585", + "586", + "587", "646", - "647", "649", "650", - "656", - "657", - "662", - "666", - "667", - "668", + "652", + "653", + "659", + "660", + "665", "669", "670", "671", "672", "673", - "692", - "696", - "700", - "701", - "702", + "674", + "675", + "676", + "695", + "699", "703", "704", "705", @@ -149704,34 +149309,34 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "748", - "752", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "751", + "755", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -149740,76 +149345,76 @@ "823", "824", "825", - "843", - "844", - "845", - "879", - "881", + "826", + "827", + "828", + "846", + "847", + "848", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "930", - "931", - "932", + "904", + "905", + "906", "933", "934", "935", "936", "937", "938", - "965", - "966", - "971", - "977", - "978", - "979", + "939", + "940", + "941", + "968", + "969", + "974", "980", - "1024", + "981", + "982", + "983", "1027", - "1028", "1030", "1031", - "1032", "1033", "1034", "1035", "1036", "1037", "1038", - "1043", - "1047", - "1048", - "1049", + "1039", + "1040", + "1041", + "1046", "1050", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1082", - "1086", - "1109", - "1113", - "1140", - "1141", - "1142", + "1077", + "1078", + "1079", + "1085", + "1089", + "1112", + "1116", "1143", "1144", "1145", @@ -149827,116 +149432,116 @@ "1157", "1158", "1159", - "1164", - "1168", - "1200", - "1204", - "1214", - "1215", - "1216", + "1160", + "1161", + "1162", + "1167", + "1171", + "1203", + "1207", "1217", "1218", "1219", - "1234", - "1235", - "1251", - "1252", - "1253", + "1220", + "1221", + "1222", + "1237", + "1238", "1254", "1255", "1256", - "1276", - "1277", - "1278", + "1257", + "1258", + "1259", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", "1302", "1303", "1304", - "1309", - "1310", - "1316", - "1317", + "1305", + "1306", + "1307", + "1312", + "1313", "1319", "1320", - "1321", "1322", "1323", "1324", - "1339", - "1340", - "1352", - "1354", + "1325", + "1326", + "1327", + "1342", + "1343", "1355", "1357", - "1359", + "1358", "1360", - "1381", - "1382", - "1388", - "1389", - "1437", - "1438", - "1439", + "1362", + "1363", + "1384", + "1385", + "1391", + "1392", "1440", "1441", "1442", - "1451", - "1453", - "1479", - "1480", - "1481", + "1443", + "1444", + "1445", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1500", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", + "1503", "1509", "1510", "1511", - "1522", - "1532", - "1537", - "1542", - "1553", - "1554", - "1555", + "1512", + "1513", + "1514", + "1525", + "1535", + "1540", + "1545", "1556", "1557", "1558", - "1563", - "1568", - "1569", - "1570", + "1559", + "1560", + "1561", + "1566", "1571", "1572", "1573", "1574", - "1584", - "1592", - "1597", - "1602", - "1603", - "1604", - "1615", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", + "1587", + "1595", + "1600", + "1605", + "1606", + "1607", + "1618", "1653", "1654", "1655", @@ -149944,19 +149549,22 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1726", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1729", "1822", - "1934", - "1935", - "1970", - "2045" + "1823", + "1824", + "1825", + "1937", + "1938", + "1973", + "2048" ], "location": { "end": { @@ -149984,36 +149592,6 @@ "static": true, "killedBy": [], "coveredBy": [ - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -150032,11 +149610,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -150065,20 +149670,20 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "334", - "335", - "387", - "388", - "389", + "283", + "284", + "337", + "338", "390", "391", "392", @@ -150098,11 +149703,11 @@ "406", "407", "408", - "422", - "423", - "482", - "483", - "484", + "409", + "410", + "411", + "425", + "426", "485", "486", "487", @@ -150112,14 +149717,14 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "546", - "568", - "569", - "570", + "515", + "516", + "517", + "549", "571", "572", "573", @@ -150134,26 +149739,26 @@ "582", "583", "584", + "585", "586", - "588", + "587", "589", - "590", "591", "592", "593", "594", "595", "596", - "667", - "668", - "669", + "597", + "598", + "599", "670", "671", "672", "673", - "701", - "702", - "703", + "674", + "675", + "676", "704", "705", "706", @@ -150161,141 +149766,141 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", + "809", + "810", "811", - "812", - "813", - "879", - "881", + "814", + "815", + "816", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "977", - "978", - "979", + "904", + "905", + "906", "980", - "992", - "993", + "981", + "982", + "983", "995", "996", - "997", "998", - "1030", - "1031", - "1032", + "999", + "1000", + "1001", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1089", - "1091", + "1077", + "1078", + "1079", "1092", - "1093", - "1136", - "1137", - "1138", - "1180", - "1181", - "1214", - "1215", - "1216", + "1094", + "1095", + "1096", + "1139", + "1140", + "1141", + "1183", + "1184", "1217", "1218", "1219", - "1234", - "1235", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", + "1220", + "1221", + "1222", + "1237", + "1238", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1352", - "1354", + "1325", + "1326", + "1327", "1355", "1357", - "1359", + "1358", "1360", - "1451", - "1453", - "1479", - "1480", - "1481", + "1362", + "1363", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1532", - "1569", - "1570", - "1571", + "1512", + "1513", + "1514", + "1535", "1572", "1573", "1574", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", "1653", "1654", "1655", @@ -150303,21 +149908,24 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1677", - "1721", - "1726", - "1753", - "1770", - "1819", - "1820", - "1821", + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1680", + "1724", + "1729", + "1756", + "1773", "1822", - "1850", - "1867", - "2055" + "1823", + "1824", + "1825", + "1853", + "1870", + "2058" ], "location": { "end": { @@ -150345,7 +149953,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "2001" + "2004" ], "location": { "end": { @@ -150373,7 +149981,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1963" + "1966" ], "location": { "end": { @@ -150417,52 +150025,49 @@ "103", "104", "105", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", "184", - "205", - "206", - "422", - "423", - "487", - "495", - "496", - "497", + "185", + "186", + "187", + "188", + "214", + "235", + "236", + "425", + "426", + "490", "498", + "499", + "500", "501", - "502", - "503", + "504", + "505", "506", - "512", - "513", - "514", - "535", - "536", + "509", + "515", + "516", + "517", "538", "539", - "540", "541", "542", "543", @@ -150471,67 +150076,70 @@ "546", "547", "548", - "575", - "576", - "577", + "549", + "550", + "551", "578", "579", "580", "581", "582", "583", - "667", - "668", - "669", + "584", + "585", + "586", "670", "671", "672", "673", - "982", - "983", - "984", + "674", + "675", + "676", "985", "986", "987", "988", "989", - "1057", - "1058", - "1059", - "1238", - "1239", - "1240", + "990", + "991", + "992", + "1060", + "1061", + "1062", + "1241", "1242", - "1411", - "1412", - "1433", - "1434", - "1435", + "1243", + "1245", + "1414", + "1415", "1436", - "1453", - "1485", - "1486", - "1487", + "1437", + "1438", + "1439", + "1456", "1488", "1489", - "1503", - "1505", - "1570", - "1571", - "1572", + "1490", + "1491", + "1492", + "1506", + "1508", "1573", - "1619", - "1672", - "1676", - "1677", - "2002", - "2004" - ], - "location": { - "end": { - "column": 4, - "line": 22 - }, + "1574", + "1575", + "1576", + "1622", + "1675", + "1679", + "1680", + "2005", + "2007" + ], + "location": { + "end": { + "column": 4, + "line": 22 + }, "start": { "column": 72, "line": 20 @@ -150569,52 +150177,49 @@ "103", "104", "105", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", "184", - "205", - "206", - "422", - "423", - "487", - "495", - "496", - "497", + "185", + "186", + "187", + "188", + "214", + "235", + "236", + "425", + "426", + "490", "498", + "499", + "500", "501", - "502", - "503", + "504", + "505", "506", - "512", - "513", - "514", - "535", - "536", + "509", + "515", + "516", + "517", "538", "539", - "540", "541", "542", "543", @@ -150623,60 +150228,63 @@ "546", "547", "548", - "575", - "576", - "577", + "549", + "550", + "551", "578", "579", "580", "581", "582", "583", - "667", - "668", - "669", + "584", + "585", + "586", "670", "671", "672", "673", - "982", - "983", - "984", + "674", + "675", + "676", "985", "986", "987", "988", "989", - "1057", - "1058", - "1059", - "1238", - "1239", - "1240", + "990", + "991", + "992", + "1060", + "1061", + "1062", + "1241", "1242", - "1411", - "1412", - "1433", - "1434", - "1435", + "1243", + "1245", + "1414", + "1415", "1436", - "1453", - "1485", - "1486", - "1487", + "1437", + "1438", + "1439", + "1456", "1488", "1489", - "1503", - "1505", - "1570", - "1571", - "1572", + "1490", + "1491", + "1492", + "1506", + "1508", "1573", - "1619", - "1672", - "1676", - "1677", - "2002" + "1574", + "1575", + "1576", + "1622", + "1675", + "1679", + "1680", + "2005" ], "location": { "end": { @@ -150704,9 +150312,9 @@ "static": true, "killedBy": [], "coveredBy": [ - "831", - "1818", - "2020" + "834", + "1821", + "2023" ], "location": { "end": { @@ -150734,36 +150342,6 @@ "static": true, "killedBy": [], "coveredBy": [ - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", "165", "166", "167", @@ -150782,11 +150360,38 @@ "180", "181", "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", "205", "206", - "237", - "238", - "239", + "207", + "208", + "209", + "210", + "211", + "212", + "235", + "236", "240", "241", "242", @@ -150815,20 +150420,20 @@ "265", "266", "267", + "268", + "269", "270", - "272", "273", "275", "276", - "277", "278", + "279", "280", "281", - "334", - "335", - "387", - "388", - "389", + "283", + "284", + "337", + "338", "390", "391", "392", @@ -150848,11 +150453,11 @@ "406", "407", "408", - "422", - "423", - "482", - "483", - "484", + "409", + "410", + "411", + "425", + "426", "485", "486", "487", @@ -150862,14 +150467,14 @@ "491", "492", "493", - "511", - "512", - "513", + "494", + "495", + "496", "514", - "546", - "568", - "569", - "570", + "515", + "516", + "517", + "549", "571", "572", "573", @@ -150884,16 +150489,16 @@ "582", "583", "584", - "667", - "668", - "669", + "585", + "586", + "587", "670", "671", "672", "673", - "701", - "702", - "703", + "674", + "675", + "676", "704", "705", "706", @@ -150901,123 +150506,123 @@ "708", "709", "710", - "735", - "736", - "737", + "711", + "712", + "713", "738", "739", "740", "741", "742", "743", - "758", - "765", - "766", - "767", + "744", + "745", + "746", + "761", "768", - "800", - "801", - "802", + "769", + "770", + "771", "803", "804", "805", "806", "807", "808", - "879", - "881", + "809", + "810", + "811", "882", - "883", - "891", - "895", - "896", - "897", + "884", + "885", + "886", + "894", "898", "899", "900", "901", "902", "903", - "977", - "978", - "979", + "904", + "905", + "906", "980", - "1030", - "1031", - "1032", + "981", + "982", + "983", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", + "1055", + "1056", "1057", - "1058", - "1059", - "1071", - "1072", - "1073", + "1060", + "1061", + "1062", "1074", "1075", "1076", - "1214", - "1215", - "1216", + "1077", + "1078", + "1079", "1217", "1218", "1219", - "1234", - "1235", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", + "1220", + "1221", + "1222", + "1237", + "1238", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1352", - "1354", + "1325", + "1326", + "1327", "1355", "1357", - "1359", + "1358", "1360", - "1451", - "1453", - "1479", - "1480", - "1481", + "1362", + "1363", + "1454", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1532", - "1569", - "1570", - "1571", + "1512", + "1513", + "1514", + "1535", "1572", "1573", "1574", - "1650", - "1651", - "1652", + "1575", + "1576", + "1577", "1653", "1654", "1655", @@ -151025,14 +150630,17 @@ "1657", "1658", "1659", - "1671", - "1672", - "1676", - "1726", - "1819", - "1820", - "1821", - "1822" + "1660", + "1661", + "1662", + "1674", + "1675", + "1679", + "1729", + "1822", + "1823", + "1824", + "1825" ], "location": { "end": { @@ -151054,7 +150662,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1677" + "1680" ], "location": { "end": { @@ -151082,8 +150690,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1990", - "2016" + "1993", + "2019" ], "location": { "end": { @@ -151111,10 +150719,10 @@ "static": true, "killedBy": [], "coveredBy": [ - "1819", - "1820", - "1964", - "1990" + "1822", + "1823", + "1967", + "1993" ], "location": { "end": { @@ -151144,42 +150752,42 @@ "coveredBy": [ "95", "98", - "495", - "496", - "497", "498", + "499", + "500", "501", - "502", - "503", + "504", + "505", "506", - "850", - "852", + "509", "853", "855", "856", - "857", + "858", "859", "860", - "995", - "1411", - "1412", - "1433", + "862", + "863", + "998", + "1414", + "1415", "1436", - "1819", - "1820", - "1847", - "1867", - "1963", - "1964", - "1982", - "1988", - "1997", - "1998", - "2004", + "1439", + "1822", + "1823", + "1850", + "1870", + "1966", + "1967", + "1985", + "1991", + "2000", + "2001", "2007", - "2009", - "2020", - "2036" + "2010", + "2012", + "2023", + "2039" ], "location": { "end": { @@ -151209,38 +150817,38 @@ "coveredBy": [ "95", "98", - "272", - "273", - "280", - "281", - "495", - "496", - "497", + "275", + "276", + "283", + "284", "498", + "499", + "500", "501", - "502", - "503", + "504", + "505", "506", - "995", - "1411", - "1412", - "1433", + "509", + "998", + "1414", + "1415", "1436", - "1819", - "1820", - "1847", - "1867", - "1963", - "1964", - "1982", - "1988", - "1997", - "1998", - "2004", + "1439", + "1822", + "1823", + "1850", + "1870", + "1966", + "1967", + "1985", + "1991", + "2000", + "2001", "2007", - "2009", - "2020", - "2050" + "2010", + "2012", + "2023", + "2053" ], "location": { "end": { @@ -151275,77 +150883,77 @@ "98", "102", "103", - "272", - "273", - "280", - "281", - "324", - "495", - "496", - "497", + "275", + "276", + "283", + "284", + "327", "498", + "499", + "500", "501", - "502", - "503", + "504", + "505", "506", - "804", - "808", + "509", + "807", "811", - "850", - "852", + "814", "853", "855", "856", - "857", + "858", "859", "860", - "977", - "978", - "979", + "862", + "863", "980", - "995", - "1010", - "1011", - "1012", + "981", + "982", + "983", + "998", "1013", "1014", "1015", "1016", "1017", "1018", - "1091", - "1136", - "1208", - "1209", - "1210", + "1019", + "1020", + "1021", + "1094", + "1139", "1211", "1212", "1213", - "1242", - "1411", - "1412", - "1433", + "1214", + "1215", + "1216", + "1245", + "1414", + "1415", "1436", - "1505", - "1636", - "1638", - "1640", - "1819", - "1820", - "1821", + "1439", + "1508", + "1639", + "1641", + "1643", "1822", - "1847", - "1867", - "1963", - "1964", - "1982", - "1988", - "1997", - "1998", - "2004", + "1823", + "1824", + "1825", + "1850", + "1870", + "1966", + "1967", + "1985", + "1991", + "2000", + "2001", "2007", - "2009", - "2020" + "2010", + "2012", + "2023" ], "location": { "end": { @@ -151412,9 +151020,6 @@ "36", "37", "38", - "325", - "326", - "327", "328", "329", "330", @@ -151430,9 +151035,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -151446,20 +151051,23 @@ "479", "480", "481", - "930", - "931", - "932", + "482", + "483", + "484", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -151520,9 +151128,6 @@ "36", "37", "38", - "325", - "326", - "327", "328", "329", "330", @@ -151538,9 +151143,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -151554,20 +151159,23 @@ "479", "480", "481", - "930", - "931", - "932", + "482", + "483", + "484", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -151604,9 +151212,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -151622,9 +151227,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -151637,7 +151242,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -151674,9 +151282,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -151692,9 +151297,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -151707,7 +151312,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -151744,9 +151352,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -151762,9 +151367,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -151777,7 +151382,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -151814,9 +151422,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -151832,9 +151437,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -151847,7 +151452,10 @@ "478", "479", "480", - "481" + "481", + "482", + "483", + "484" ], "location": { "end": { @@ -151908,9 +151516,6 @@ "36", "37", "38", - "325", - "326", - "327", "328", "329", "330", @@ -151926,9 +151531,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -151942,20 +151547,23 @@ "479", "480", "481", - "930", - "931", - "932", + "482", + "483", + "484", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -151988,9 +151596,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -152005,7 +151610,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -152038,9 +151646,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -152055,7 +151660,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -152088,16 +151696,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152130,16 +151738,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152172,16 +151780,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152242,9 +151850,6 @@ "36", "37", "38", - "325", - "326", - "327", "328", "329", "330", @@ -152260,9 +151865,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -152276,20 +151881,23 @@ "479", "480", "481", - "930", - "931", - "932", + "482", + "483", + "484", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -152321,9 +151929,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -152338,7 +151943,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -152370,9 +151978,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -152387,7 +151992,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -152419,16 +152027,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152460,16 +152068,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152501,16 +152109,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152539,16 +152147,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152609,9 +152217,6 @@ "36", "37", "38", - "325", - "326", - "327", "328", "329", "330", @@ -152627,9 +152232,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -152643,20 +152248,23 @@ "479", "480", "481", - "930", - "931", - "932", + "482", + "483", + "484", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -152687,9 +152295,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -152704,7 +152309,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -152735,9 +152343,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -152752,7 +152357,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -152783,16 +152391,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152823,16 +152431,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152863,16 +152471,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152900,16 +152508,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -152935,8 +152543,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -152962,8 +152570,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -152989,8 +152597,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -153016,8 +152624,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -153089,8 +152697,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -153115,8 +152723,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -153144,8 +152752,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -153173,8 +152781,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -153202,8 +152810,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -153231,8 +152839,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -153260,8 +152868,8 @@ "9", "10", "33", - "327", - "330" + "330", + "333" ], "location": { "end": { @@ -153288,9 +152896,6 @@ "13", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153305,7 +152910,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153332,9 +152940,6 @@ "13", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153349,7 +152954,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153376,9 +152984,6 @@ "13", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153393,7 +152998,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153420,9 +153028,6 @@ "13", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153437,7 +153042,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153460,9 +153068,6 @@ "killedBy": [], "coveredBy": [ "11", - "325", - "326", - "327", "328", "329", "330", @@ -153477,7 +153082,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153503,9 +153111,6 @@ ], "coveredBy": [ "11", - "325", - "326", - "327", "328", "329", "330", @@ -153520,7 +153125,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153547,9 +153155,6 @@ "16", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153564,7 +153169,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153591,9 +153199,6 @@ "16", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153608,7 +153213,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153635,9 +153243,6 @@ "16", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153652,7 +153257,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153679,9 +153287,6 @@ "16", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153696,7 +153301,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153719,9 +153327,6 @@ "killedBy": [], "coveredBy": [ "14", - "325", - "326", - "327", "328", "329", "330", @@ -153736,7 +153341,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153762,9 +153370,6 @@ ], "coveredBy": [ "14", - "325", - "326", - "327", "328", "329", "330", @@ -153779,7 +153384,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -153808,9 +153416,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153826,20 +153431,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -153871,9 +153479,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153889,20 +153494,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -153934,9 +153542,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -153952,20 +153557,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -153997,30 +153605,30 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", "338", - "930", - "931", - "932", + "339", + "340", + "341", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154052,30 +153660,30 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", "338", - "930", - "931", - "932", + "339", + "340", + "341", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154097,7 +153705,7 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1554" + "1557" ], "coveredBy": [ "17", @@ -154107,30 +153715,30 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", "338", - "930", - "931", - "932", + "339", + "340", + "341", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154159,30 +153767,30 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", "338", - "930", - "931", - "932", + "339", + "340", + "341", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154214,9 +153822,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -154232,20 +153837,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154277,9 +153885,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -154295,20 +153900,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154340,9 +153948,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -154358,20 +153963,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154403,9 +154011,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -154421,20 +154026,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154463,9 +154071,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -154481,20 +154086,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154516,22 +154124,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ "17", "18", "21", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -154559,16 +154167,16 @@ "17", "18", "21", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -154590,22 +154198,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1556" + "1559" ], "coveredBy": [ "17", "18", "21", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -154627,22 +154235,22 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "930" + "933" ], "coveredBy": [ "17", "18", "21", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -154667,16 +154275,16 @@ "17", "18", "21", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -154708,9 +154316,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -154726,20 +154331,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154771,9 +154379,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -154789,20 +154394,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154834,9 +154442,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -154852,20 +154457,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154887,7 +154495,7 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "933" + "936" ], "coveredBy": [ "17", @@ -154895,20 +154503,20 @@ "21", "23", "34", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -154938,9 +154546,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -154955,7 +154560,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -154985,9 +154593,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155003,20 +154608,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155049,9 +154657,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155067,20 +154672,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155113,9 +154721,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155131,20 +154736,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155166,7 +154774,7 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "1556" + "1559" ], "coveredBy": [ "19", @@ -155177,30 +154785,30 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", "338", - "930", - "931", - "932", + "339", + "340", + "341", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155233,30 +154841,30 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", "338", - "930", - "931", - "932", + "339", + "340", + "341", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155289,30 +154897,30 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", "338", - "930", - "931", - "932", + "339", + "340", + "341", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155342,30 +154950,30 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", "338", - "930", - "931", - "932", + "339", + "340", + "341", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155398,9 +155006,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155416,20 +155021,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155462,9 +155070,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155480,20 +155085,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155526,9 +155134,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155544,20 +155149,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155590,9 +155198,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155608,20 +155213,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155651,9 +155259,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155669,20 +155274,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155711,16 +155319,16 @@ "20", "21", "22", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -155749,16 +155357,16 @@ "20", "21", "22", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -155787,16 +155395,16 @@ "20", "21", "22", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -155825,16 +155433,16 @@ "20", "21", "22", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -155860,16 +155468,16 @@ "20", "21", "22", - "930", - "931", - "932", "933", "934", "935", "936", "937", "938", - "1556" + "939", + "940", + "941", + "1559" ], "location": { "end": { @@ -155902,9 +155510,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155920,20 +155525,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -155966,9 +155574,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -155984,20 +155589,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -156030,9 +155638,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156048,20 +155653,23 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -156083,7 +155691,7 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "935" + "938" ], "coveredBy": [ "19", @@ -156091,10 +155699,10 @@ "21", "22", "34", - "935", - "936", - "937", - "938" + "938", + "939", + "940", + "941" ], "location": { "end": { @@ -156125,9 +155733,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156143,17 +155748,20 @@ "340", "341", "342", - "930", - "931", - "932", + "343", + "344", + "345", "933", "934", "935", - "1554", - "1555", - "1556", + "936", + "937", + "938", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -156214,9 +155822,6 @@ "36", "37", "38", - "325", - "326", - "327", "328", "329", "330", @@ -156232,9 +155837,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -156248,20 +155853,23 @@ "479", "480", "481", - "930", - "931", - "932", + "482", + "483", + "484", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -156289,11 +155897,11 @@ "21", "22", "23", - "1554", - "1555", - "1556", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -156321,11 +155929,11 @@ "21", "22", "23", - "1554", - "1555", - "1556", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -156353,11 +155961,11 @@ "21", "22", "23", - "1554", - "1555", - "1556", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -156384,9 +155992,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156401,7 +156006,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -156431,9 +156039,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156448,7 +156053,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -156478,9 +156086,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156495,7 +156100,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -156525,16 +156133,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -156564,16 +156172,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -156603,16 +156211,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -156639,16 +156247,16 @@ "33", "34", "35", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -156678,9 +156286,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156695,7 +156300,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -156725,9 +156333,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156742,7 +156347,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -156772,9 +156380,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156789,7 +156394,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -156819,9 +156427,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156836,7 +156441,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -156892,9 +156500,6 @@ "33", "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -156909,7 +156514,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -156970,9 +156578,6 @@ "36", "37", "38", - "325", - "326", - "327", "328", "329", "330", @@ -156988,9 +156593,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -157004,20 +156609,23 @@ "479", "480", "481", - "930", - "931", - "932", + "482", + "483", + "484", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -157050,9 +156658,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157067,7 +156672,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157100,9 +156708,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157117,7 +156722,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157150,9 +156758,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157167,7 +156772,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157200,9 +156808,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157217,7 +156822,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157250,9 +156858,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157267,7 +156872,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157300,9 +156908,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157317,7 +156922,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157350,9 +156958,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157367,7 +156972,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157400,9 +157008,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157417,7 +157022,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157450,9 +157058,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157467,7 +157072,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157500,9 +157108,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157517,7 +157122,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157550,9 +157158,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157567,7 +157172,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157600,9 +157208,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157617,7 +157222,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157650,9 +157258,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157667,7 +157272,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157700,9 +157308,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157717,7 +157322,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157750,9 +157358,6 @@ "31", "32", "33", - "325", - "326", - "327", "328", "329", "330", @@ -157767,7 +157372,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157791,9 +157399,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -157808,7 +157413,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157835,9 +157443,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -157852,7 +157457,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157879,9 +157487,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -157896,7 +157501,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157923,9 +157531,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -157940,7 +157545,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -157967,9 +157575,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -157984,7 +157589,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158011,9 +157619,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158028,7 +157633,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158055,9 +157663,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158072,7 +157677,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158099,9 +157707,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158116,7 +157721,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158143,9 +157751,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158160,7 +157765,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158187,9 +157795,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158204,7 +157809,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158231,9 +157839,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158248,7 +157853,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158275,9 +157883,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158292,7 +157897,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158319,9 +157927,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158336,7 +157941,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158363,9 +157971,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158380,7 +157985,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158407,9 +158015,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158424,7 +158029,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158451,9 +158059,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158468,7 +158073,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158495,9 +158103,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158512,7 +158117,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158539,9 +158147,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158556,7 +158161,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158583,9 +158191,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158600,7 +158205,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158627,9 +158235,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158644,7 +158249,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158671,9 +158279,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158688,7 +158293,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158715,9 +158323,6 @@ "coveredBy": [ "34", "35", - "325", - "326", - "327", "328", "329", "330", @@ -158732,7 +158337,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158766,9 +158374,6 @@ "36", "37", "38", - "327", - "328", - "329", "330", "331", "332", @@ -158781,7 +158386,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158818,9 +158426,6 @@ "36", "37", "38", - "327", - "328", - "329", "330", "331", "332", @@ -158833,7 +158438,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158870,9 +158478,6 @@ "36", "37", "38", - "327", - "328", - "329", "330", "331", "332", @@ -158885,7 +158490,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -158922,16 +158530,16 @@ "36", "37", "38", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -158968,16 +158576,16 @@ "36", "37", "38", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -159014,16 +158622,16 @@ "36", "37", "38", - "327", "330", - "331", - "332", "333", "334", "335", "336", "337", - "338" + "338", + "339", + "340", + "341" ], "location": { "end": { @@ -159060,9 +158668,6 @@ "36", "37", "38", - "327", - "328", - "329", "330", "331", "332", @@ -159075,7 +158680,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -159112,9 +158720,6 @@ "36", "37", "38", - "327", - "328", - "329", "330", "331", "332", @@ -159127,7 +158732,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -159164,9 +158772,6 @@ "36", "37", "38", - "327", - "328", - "329", "330", "331", "332", @@ -159179,7 +158784,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -159216,9 +158824,6 @@ "36", "37", "38", - "327", - "328", - "329", "330", "331", "332", @@ -159231,7 +158836,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -159268,9 +158876,6 @@ "36", "37", "38", - "327", - "328", - "329", "330", "331", "332", @@ -159283,7 +158888,10 @@ "339", "340", "341", - "342" + "342", + "343", + "344", + "345" ], "location": { "end": { @@ -159443,9 +159051,6 @@ "36", "37", "38", - "325", - "326", - "327", "328", "329", "330", @@ -159461,9 +159066,9 @@ "340", "341", "342", - "466", - "467", - "468", + "343", + "344", + "345", "469", "470", "471", @@ -159477,20 +159082,23 @@ "479", "480", "481", - "930", - "931", - "932", + "482", + "483", + "484", "933", "934", "935", "936", "937", "938", - "1554", - "1555", - "1556", + "939", + "940", + "941", "1557", - "1558" + "1558", + "1559", + "1560", + "1561" ], "location": { "end": { @@ -159509,6 +159117,578 @@ "app/composables/api/game/useFetchGames.ts": { "language": "typescript", "mutants": [ + { + "id": "3619", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(16,60): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1606", + "1607" + ], + "location": { + "end": { + "column": 4, + "line": 25 + }, + "start": { + "column": 108, + "line": 16 + } + } + }, + { + "id": "3620", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(16,60): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1606", + "1607" + ], + "location": { + "end": { + "column": 6, + "line": 22 + }, + "start": { + "column": 9, + "line": 17 + } + } + }, + { + "id": "3621", + "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\":false},\"votes\":{\"canBeSkipped\":true,\"duration\":447},\"roles\":{\"doSkipCallIfNoTarget\":true,\"areRevealedOnDeath\":false,\"sheriff\":{\"isEnabled\":false,\"electedAt\":{\"turn\":7965461375352832,\"phaseName\":\"night\"},\"hasDoubledVote\":true,\"mustSettleTieInVotes\":true},\"werewolf\":{\"canEatEachOther\":true},\"bigBadWolf\":{\"isPowerlessIfWerewolfDies\":true},\"whiteWerewolf\":{\"wakingUpInterval\":3},\"seer\":{\"isTalkative\":true,\"canSeeRoles\":true},\"cupid\":{\"lovers\":{\"doRevealRoleToEachOther\":true},\"mustWinWithLovers\":true},\"littleGirl\":{\"isProtectedByDefender\":true},\"defender\":{\"canProtectTwice\":true},\"elder\":{\"livesCountAgainstWerewolves\":4,\"doesTakeHisRevenge\":true},\"idiot\":{\"doesDieOnElderDeath\":true},\"twoSisters\":{\"wakingUpInterval\":5},\"threeBrothers\":{\"wakingUpInterval\":3},\"fox\":{\"isPowerlessIfMissesWerewolf\":false},\"bearTamer\":{\"doesGrowlOnWerewolvesSide\":true},\"stutteringJudge\":{\"voteRequestsCount\":5},\"wildChild\":{\"isTransformationRevealed\":true},\"wolfHound\":{\"isChosenSideRevealed\":false,\"isSideRandomlyChosen\":false},\"thief\":{\"mustChooseBetweenWerewolves\":false,\"isChosenCardRevealed\":true,\"additionalCardsCount\":4},\"piedPiper\":{\"charmedPeopleCountPerNight\":5,\"isPowerlessOnWerewolvesSide\":false,\"areCharmedPeopleRevealed\":true},\"scandalmonger\":{\"markPenalty\":3},\"witch\":{\"doesKnowWerewolvesTargets\":false},\"prejudicedManipulator\":{\"isPowerlessOnWerewolvesSide\":true},\"actor\":{\"isPowerlessOnWerewolvesSide\":false,\"additionalCardsCount\":3}}}}\",\n \"method\": \"POST\",\n },\n], but it was called with \"\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1606" + ], + "coveredBy": [ + "1606", + "1607" + ], + "location": { + "end": { + "column": 62, + "line": 18 + }, + "start": { + "column": 54, + "line": 18 + } + } + }, + { + "id": "3622", + "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\":199},\"roles\":{\"doSkipCallIfNoTarget\":false,\"areRevealedOnDeath\":true,\"sheriff\":{\"isEnabled\":true,\"electedAt\":{\"turn\":1193518995341312,\"phaseName\":\"day\"},\"hasDoubledVote\":false,\"mustSettleTieInVotes\":true},\"werewolf\":{\"canEatEachOther\":false},\"bigBadWolf\":{\"isPowerlessIfWerewolfDies\":true},\"whiteWerewolf\":{\"wakingUpInterval\":1},\"seer\":{\"isTalkative\":true,\"canSeeRoles\":true},\"cupid\":{\"lovers\":{\"doRevealRoleToEachOther\":true},\"mustWinWithLovers\":false},\"littleGirl\":{\"isProtectedByDefender\":false},\"defender\":{\"canProtectTwice\":false},\"elder\":{\"livesCountAgainstWerewolves\":5,\"doesTakeHisRevenge\":true},\"idiot\":{\"doesDieOnElderDeath\":false},\"twoSisters\":{\"wakingUpInterval\":2},\"threeBrothers\":{\"wakingUpInterval\":2},\"fox\":{\"isPowerlessIfMissesWerewolf\":true},\"bearTamer\":{\"doesGrowlOnWerewolvesSide\":true},\"stutteringJudge\":{\"voteRequestsCount\":1},\"wildChild\":{\"isTransformationRevealed\":false},\"wolfHound\":{\"isChosenSideRevealed\":true,\"isSideRandomlyChosen\":false},\"thief\":{\"mustChooseBetweenWerewolves\":true,\"isChosenCardRevealed\":false,\"additionalCardsCount\":4},\"piedPiper\":{\"charmedPeopleCountPerNight\":4,\"isPowerlessOnWerewolvesSide\":true,\"areCharmedPeopleRevealed\":false},\"scandalmonger\":{\"markPenalty\":3},\"witch\":{\"doesKnowWerewolvesTargets\":true},\"prejudicedManipulator\":{\"isPowerlessOnWerewolvesSide\":false},\"actor\":{\"isPowerlessOnWerewolvesSide\":true,\"additionalCardsCount\":3}}}}\",\n \"method\": \"POST\",\n },\n], but it was called with \"/games\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1606" + ], + "coveredBy": [ + "1606", + "1607" + ], + "location": { + "end": { + "column": 8, + "line": 21 + }, + "start": { + "column": 64, + "line": 18 + } + } + }, + { + "id": "3623", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/composables/api/game/useFetchGames.ts(19,9): error TS2322: Type '\"\"' is not assignable to type '\"delete\" | \"get\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1606", + "1607" + ], + "location": { + "end": { + "column": 23, + "line": 19 + }, + "start": { + "column": 17, + "line": 19 + } + } + }, + { + "id": "3624", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(16,60): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1607" + ], + "location": { + "end": { + "column": 6, + "line": 24 + }, + "start": { + "column": 13, + "line": 22 + } + } + }, + { + "id": "3625", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(27,43): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1608", + "1609" + ], + "location": { + "end": { + "column": 4, + "line": 33 + }, + "start": { + "column": 91, + "line": 27 + } + } + }, + { + "id": "3626", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(27,43): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1608", + "1609" + ], + "location": { + "end": { + "column": 6, + "line": 30 + }, + "start": { + "column": 9, + "line": 28 + } + } + }, + { + "id": "3627", + "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 \"\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1608" + ], + "coveredBy": [ + "1608", + "1609" + ], + "location": { + "end": { + "column": 72, + "line": 29 + }, + "start": { + "column": 54, + "line": 29 + } + } + }, + { + "id": "3628", + "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\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1608" + ], + "coveredBy": [ + "1608", + "1609" + ], + "location": { + "end": { + "column": 91, + "line": 29 + }, + "start": { + "column": 74, + "line": 29 + } + } + }, + { + "id": "3629", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/composables/api/game/useFetchGames.ts(29,76): error TS2322: Type '\"\"' is not assignable to type '\"delete\" | \"get\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1608", + "1609" + ], + "location": { + "end": { + "column": 89, + "line": 29 + }, + "start": { + "column": 84, + "line": 29 + } + } + }, + { + "id": "3630", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(27,43): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1609" + ], + "location": { + "end": { + "column": 6, + "line": 32 + }, + "start": { + "column": 13, + "line": 30 + } + } + }, + { + "id": "3631", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(35,46): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1610", + "1611" + ], + "location": { + "end": { + "column": 4, + "line": 41 + }, + "start": { + "column": 94, + "line": 35 + } + } + }, + { + "id": "3632", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(35,46): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1610", + "1611" + ], + "location": { + "end": { + "column": 6, + "line": 38 + }, + "start": { + "column": 9, + "line": 36 + } + } + }, + { + "id": "3633", + "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 \"\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1610" + ], + "coveredBy": [ + "1610", + "1611" + ], + "location": { + "end": { + "column": 72, + "line": 37 + }, + "start": { + "column": 54, + "line": 37 + } + } + }, + { + "id": "3634", + "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\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1610" + ], + "coveredBy": [ + "1610", + "1611" + ], + "location": { + "end": { + "column": 94, + "line": 37 + }, + "start": { + "column": 74, + "line": 37 + } + } + }, + { + "id": "3635", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/composables/api/game/useFetchGames.ts(37,76): error TS2322: Type '\"\"' is not assignable to type '\"delete\" | \"get\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1610", + "1611" + ], + "location": { + "end": { + "column": 92, + "line": 37 + }, + "start": { + "column": 84, + "line": 37 + } + } + }, + { + "id": "3636", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(35,46): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1611" + ], + "location": { + "end": { + "column": 6, + "line": 40 + }, + "start": { + "column": 13, + "line": 38 + } + } + }, + { + "id": "3637", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(43,82): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1612", + "1613" + ], + "location": { + "end": { + "column": 4, + "line": 52 + }, + "start": { + "column": 130, + "line": 43 + } + } + }, + { + "id": "3638", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(43,82): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1612", + "1613" + ], + "location": { + "end": { + "column": 6, + "line": 49 + }, + "start": { + "column": 9, + "line": 44 + } + } + }, + { + "id": "3639", + "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 \"\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1612" + ], + "coveredBy": [ + "1612", + "1613" + ], + "location": { + "end": { + "column": 77, + "line": 45 + }, + "start": { + "column": 54, + "line": 45 + } + } + }, + { + "id": "3640", + "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\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1612" + ], + "coveredBy": [ + "1612", + "1613" + ], + "location": { + "end": { + "column": 8, + "line": 48 + }, + "start": { + "column": 79, + "line": 45 + } + } + }, + { + "id": "3641", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/composables/api/game/useFetchGames.ts(46,9): error TS2322: Type '\"\"' is not assignable to type '\"delete\" | \"get\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1612", + "1613" + ], + "location": { + "end": { + "column": 23, + "line": 46 + }, + "start": { + "column": 17, + "line": 46 + } + } + }, + { + "id": "3642", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useFetchGames.ts(43,82): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1613" + ], + "location": { + "end": { + "column": 6, + "line": 51 + }, + "start": { + "column": 13, + "line": 49 + } + } + }, { "id": "3618", "mutatorName": "BlockStatement", @@ -159516,7 +159696,6 @@ "statusReason": "app/composables/api/game/useFetchGames.ts(13,27): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", "status": "CompileError", "static": true, - "killedBy": [], "coveredBy": [ "82", "83", @@ -159595,6 +159774,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -159602,29 +159804,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -159667,9 +159846,9 @@ "279", "280", "281", - "387", - "388", - "389", + "282", + "283", + "284", "390", "391", "392", @@ -159689,9 +159868,9 @@ "406", "407", "408", - "438", - "439", - "440", + "409", + "410", + "411", "441", "442", "443", @@ -159717,9 +159896,9 @@ "463", "464", "465", - "482", - "483", - "484", + "466", + "467", + "468", "485", "486", "487", @@ -159758,9 +159937,9 @@ "520", "521", "522", - "534", - "535", - "536", + "523", + "524", + "525", "537", "538", "539", @@ -159773,16 +159952,16 @@ "546", "547", "548", - "667", - "668", - "669", + "549", + "550", + "551", "670", "671", "672", "673", - "701", - "702", - "703", + "674", + "675", + "676", "704", "705", "706", @@ -159790,9 +159969,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -159812,9 +159991,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -159827,18 +160006,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -159853,9 +160032,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -159893,10 +160072,10 @@ "913", "914", "915", - "953", - "972", - "973", - "974", + "916", + "917", + "918", + "956", "975", "976", "977", @@ -159913,18 +160092,18 @@ "988", "989", "990", - "1030", - "1031", - "1032", + "991", + "992", + "993", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", @@ -159935,9 +160114,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -159947,24 +160126,24 @@ "1074", "1075", "1076", - "1169", - "1170", - "1171", + "1077", + "1078", + "1079", "1172", "1173", "1174", "1175", "1176", "1177", - "1214", - "1215", - "1216", + "1178", + "1179", + "1180", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -159975,10 +160154,10 @@ "1240", "1241", "1242", + "1243", "1244", - "1267", - "1268", - "1269", + "1245", + "1247", "1270", "1271", "1272", @@ -159988,15 +160167,15 @@ "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -160016,28 +160195,28 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", "1469", "1470", - "1479", - "1480", - "1481", + "1471", + "1472", + "1473", "1482", "1483", "1484", @@ -160052,9 +160231,9 @@ "1493", "1494", "1495", - "1501", - "1502", - "1503", + "1496", + "1497", + "1498", "1504", "1505", "1506", @@ -160063,39 +160242,39 @@ "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1569", - "1570", - "1571", + "1549", + "1550", + "1551", "1572", "1573", "1574", - "1603", - "1604", - "1605", + "1575", + "1576", + "1577", "1606", "1607", "1608", "1609", "1610", - "1616", - "1617", - "1618", + "1611", + "1612", + "1613", "1619", - "1626", - "1650", - "1651", - "1652", + "1620", + "1621", + "1622", + "1629", "1653", "1654", "1655", @@ -160103,72 +160282,75 @@ "1657", "1658", "1659", - "1670", - "1671", - "1672", + "1660", + "1661", + "1662", "1673", - "1688", - "1689", - "1690", + "1674", + "1675", + "1676", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" ], "location": { "end": { @@ -160181,578 +160363,6 @@ } } }, - { - "id": "3619", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(16,60): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1603", - "1604" - ], - "location": { - "end": { - "column": 4, - "line": 25 - }, - "start": { - "column": 108, - "line": 16 - } - } - }, - { - "id": "3620", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(16,60): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1603", - "1604" - ], - "location": { - "end": { - "column": 6, - "line": 22 - }, - "start": { - "column": 9, - "line": 17 - } - } - }, - { - "id": "3621", - "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\":false},\"votes\":{\"canBeSkipped\":true,\"duration\":447},\"roles\":{\"doSkipCallIfNoTarget\":true,\"areRevealedOnDeath\":false,\"sheriff\":{\"isEnabled\":false,\"electedAt\":{\"turn\":7965461375352832,\"phaseName\":\"night\"},\"hasDoubledVote\":true,\"mustSettleTieInVotes\":true},\"werewolf\":{\"canEatEachOther\":true},\"bigBadWolf\":{\"isPowerlessIfWerewolfDies\":true},\"whiteWerewolf\":{\"wakingUpInterval\":3},\"seer\":{\"isTalkative\":true,\"canSeeRoles\":true},\"cupid\":{\"lovers\":{\"doRevealRoleToEachOther\":true},\"mustWinWithLovers\":true},\"littleGirl\":{\"isProtectedByDefender\":true},\"defender\":{\"canProtectTwice\":true},\"elder\":{\"livesCountAgainstWerewolves\":4,\"doesTakeHisRevenge\":true},\"idiot\":{\"doesDieOnElderDeath\":true},\"twoSisters\":{\"wakingUpInterval\":5},\"threeBrothers\":{\"wakingUpInterval\":3},\"fox\":{\"isPowerlessIfMissesWerewolf\":false},\"bearTamer\":{\"doesGrowlOnWerewolvesSide\":true},\"stutteringJudge\":{\"voteRequestsCount\":5},\"wildChild\":{\"isTransformationRevealed\":true},\"wolfHound\":{\"isChosenSideRevealed\":false,\"isSideRandomlyChosen\":false},\"thief\":{\"mustChooseBetweenWerewolves\":false,\"isChosenCardRevealed\":true,\"additionalCardsCount\":4},\"piedPiper\":{\"charmedPeopleCountPerNight\":5,\"isPowerlessOnWerewolvesSide\":false,\"areCharmedPeopleRevealed\":true},\"scandalmonger\":{\"markPenalty\":3},\"witch\":{\"doesKnowWerewolvesTargets\":false},\"prejudicedManipulator\":{\"isPowerlessOnWerewolvesSide\":true},\"actor\":{\"isPowerlessOnWerewolvesSide\":false,\"additionalCardsCount\":3}}}}\",\n \"method\": \"POST\",\n },\n], but it was called with \"\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1603" - ], - "coveredBy": [ - "1603", - "1604" - ], - "location": { - "end": { - "column": 62, - "line": 18 - }, - "start": { - "column": 54, - "line": 18 - } - } - }, - { - "id": "3622", - "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\":199},\"roles\":{\"doSkipCallIfNoTarget\":false,\"areRevealedOnDeath\":true,\"sheriff\":{\"isEnabled\":true,\"electedAt\":{\"turn\":1193518995341312,\"phaseName\":\"day\"},\"hasDoubledVote\":false,\"mustSettleTieInVotes\":true},\"werewolf\":{\"canEatEachOther\":false},\"bigBadWolf\":{\"isPowerlessIfWerewolfDies\":true},\"whiteWerewolf\":{\"wakingUpInterval\":1},\"seer\":{\"isTalkative\":true,\"canSeeRoles\":true},\"cupid\":{\"lovers\":{\"doRevealRoleToEachOther\":true},\"mustWinWithLovers\":false},\"littleGirl\":{\"isProtectedByDefender\":false},\"defender\":{\"canProtectTwice\":false},\"elder\":{\"livesCountAgainstWerewolves\":5,\"doesTakeHisRevenge\":true},\"idiot\":{\"doesDieOnElderDeath\":false},\"twoSisters\":{\"wakingUpInterval\":2},\"threeBrothers\":{\"wakingUpInterval\":2},\"fox\":{\"isPowerlessIfMissesWerewolf\":true},\"bearTamer\":{\"doesGrowlOnWerewolvesSide\":true},\"stutteringJudge\":{\"voteRequestsCount\":1},\"wildChild\":{\"isTransformationRevealed\":false},\"wolfHound\":{\"isChosenSideRevealed\":true,\"isSideRandomlyChosen\":false},\"thief\":{\"mustChooseBetweenWerewolves\":true,\"isChosenCardRevealed\":false,\"additionalCardsCount\":4},\"piedPiper\":{\"charmedPeopleCountPerNight\":4,\"isPowerlessOnWerewolvesSide\":true,\"areCharmedPeopleRevealed\":false},\"scandalmonger\":{\"markPenalty\":3},\"witch\":{\"doesKnowWerewolvesTargets\":true},\"prejudicedManipulator\":{\"isPowerlessOnWerewolvesSide\":false},\"actor\":{\"isPowerlessOnWerewolvesSide\":true,\"additionalCardsCount\":3}}}}\",\n \"method\": \"POST\",\n },\n], but it was called with \"/games\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1603" - ], - "coveredBy": [ - "1603", - "1604" - ], - "location": { - "end": { - "column": 8, - "line": 21 - }, - "start": { - "column": 64, - "line": 18 - } - } - }, - { - "id": "3623", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/composables/api/game/useFetchGames.ts(19,9): error TS2322: Type '\"\"' is not assignable to type '\"delete\" | \"get\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1603", - "1604" - ], - "location": { - "end": { - "column": 23, - "line": 19 - }, - "start": { - "column": 17, - "line": 19 - } - } - }, - { - "id": "3624", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(16,60): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1604" - ], - "location": { - "end": { - "column": 6, - "line": 24 - }, - "start": { - "column": 13, - "line": 22 - } - } - }, - { - "id": "3625", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(27,43): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1605", - "1606" - ], - "location": { - "end": { - "column": 4, - "line": 33 - }, - "start": { - "column": 91, - "line": 27 - } - } - }, - { - "id": "3626", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(27,43): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1605", - "1606" - ], - "location": { - "end": { - "column": 6, - "line": 30 - }, - "start": { - "column": 9, - "line": 28 - } - } - }, - { - "id": "3627", - "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 \"\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1605" - ], - "coveredBy": [ - "1605", - "1606" - ], - "location": { - "end": { - "column": 72, - "line": 29 - }, - "start": { - "column": 54, - "line": 29 - } - } - }, - { - "id": "3628", - "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\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1605" - ], - "coveredBy": [ - "1605", - "1606" - ], - "location": { - "end": { - "column": 91, - "line": 29 - }, - "start": { - "column": 74, - "line": 29 - } - } - }, - { - "id": "3629", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/composables/api/game/useFetchGames.ts(29,76): error TS2322: Type '\"\"' is not assignable to type '\"delete\" | \"get\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1605", - "1606" - ], - "location": { - "end": { - "column": 89, - "line": 29 - }, - "start": { - "column": 84, - "line": 29 - } - } - }, - { - "id": "3630", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(27,43): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1606" - ], - "location": { - "end": { - "column": 6, - "line": 32 - }, - "start": { - "column": 13, - "line": 30 - } - } - }, - { - "id": "3631", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(35,46): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1607", - "1608" - ], - "location": { - "end": { - "column": 4, - "line": 41 - }, - "start": { - "column": 94, - "line": 35 - } - } - }, - { - "id": "3632", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(35,46): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1607", - "1608" - ], - "location": { - "end": { - "column": 6, - "line": 38 - }, - "start": { - "column": 9, - "line": 36 - } - } - }, - { - "id": "3633", - "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 \"\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1607" - ], - "coveredBy": [ - "1607", - "1608" - ], - "location": { - "end": { - "column": 72, - "line": 37 - }, - "start": { - "column": 54, - "line": 37 - } - } - }, - { - "id": "3634", - "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\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1607" - ], - "coveredBy": [ - "1607", - "1608" - ], - "location": { - "end": { - "column": 94, - "line": 37 - }, - "start": { - "column": 74, - "line": 37 - } - } - }, - { - "id": "3635", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/composables/api/game/useFetchGames.ts(37,76): error TS2322: Type '\"\"' is not assignable to type '\"delete\" | \"get\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1607", - "1608" - ], - "location": { - "end": { - "column": 92, - "line": 37 - }, - "start": { - "column": 84, - "line": 37 - } - } - }, - { - "id": "3636", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(35,46): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1608" - ], - "location": { - "end": { - "column": 6, - "line": 40 - }, - "start": { - "column": 13, - "line": 38 - } - } - }, - { - "id": "3637", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(43,82): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1609", - "1610" - ], - "location": { - "end": { - "column": 4, - "line": 52 - }, - "start": { - "column": 130, - "line": 43 - } - } - }, - { - "id": "3638", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(43,82): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1609", - "1610" - ], - "location": { - "end": { - "column": 6, - "line": 49 - }, - "start": { - "column": 9, - "line": 44 - } - } - }, - { - "id": "3639", - "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 \"\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1609" - ], - "coveredBy": [ - "1609", - "1610" - ], - "location": { - "end": { - "column": 77, - "line": 45 - }, - "start": { - "column": 54, - "line": 45 - } - } - }, - { - "id": "3640", - "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\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1609" - ], - "coveredBy": [ - "1609", - "1610" - ], - "location": { - "end": { - "column": 8, - "line": 48 - }, - "start": { - "column": 79, - "line": 45 - } - } - }, - { - "id": "3641", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/composables/api/game/useFetchGames.ts(46,9): error TS2322: Type '\"\"' is not assignable to type '\"delete\" | \"get\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1609", - "1610" - ], - "location": { - "end": { - "column": 23, - "line": 46 - }, - "start": { - "column": 17, - "line": 46 - } - } - }, - { - "id": "3642", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useFetchGames.ts(43,82): error TS2366: Function lacks ending return statement and return type does not include 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1610" - ], - "location": { - "end": { - "column": 6, - "line": 51 - }, - "start": { - "column": 13, - "line": 49 - } - } - }, { "id": "3643", "mutatorName": "ObjectLiteral", @@ -160760,7 +160370,6 @@ "statusReason": "app/composables/api/game/useFetchGames.ts(53,3): error TS2739: Type '{}' is missing the following properties from type 'UseFetchGames': createGame, getGame, cancelGame, makeGamePlay\n", "status": "CompileError", "static": true, - "killedBy": [], "coveredBy": [ "82", "83", @@ -160839,6 +160448,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -160846,29 +160478,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -160911,9 +160520,9 @@ "279", "280", "281", - "387", - "388", - "389", + "282", + "283", + "284", "390", "391", "392", @@ -160933,9 +160542,9 @@ "406", "407", "408", - "438", - "439", - "440", + "409", + "410", + "411", "441", "442", "443", @@ -160961,9 +160570,9 @@ "463", "464", "465", - "482", - "483", - "484", + "466", + "467", + "468", "485", "486", "487", @@ -161002,9 +160611,9 @@ "520", "521", "522", - "534", - "535", - "536", + "523", + "524", + "525", "537", "538", "539", @@ -161017,16 +160626,16 @@ "546", "547", "548", - "667", - "668", - "669", + "549", + "550", + "551", "670", "671", "672", "673", - "701", - "702", - "703", + "674", + "675", + "676", "704", "705", "706", @@ -161034,9 +160643,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -161056,9 +160665,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -161071,18 +160680,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -161097,9 +160706,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -161137,10 +160746,10 @@ "913", "914", "915", - "953", - "972", - "973", - "974", + "916", + "917", + "918", + "956", "975", "976", "977", @@ -161157,18 +160766,18 @@ "988", "989", "990", - "1030", - "1031", - "1032", + "991", + "992", + "993", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", @@ -161179,9 +160788,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -161191,24 +160800,24 @@ "1074", "1075", "1076", - "1169", - "1170", - "1171", + "1077", + "1078", + "1079", "1172", "1173", "1174", "1175", "1176", "1177", - "1214", - "1215", - "1216", + "1178", + "1179", + "1180", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -161219,10 +160828,10 @@ "1240", "1241", "1242", + "1243", "1244", - "1267", - "1268", - "1269", + "1245", + "1247", "1270", "1271", "1272", @@ -161232,15 +160841,15 @@ "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -161260,28 +160869,28 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", "1469", "1470", - "1479", - "1480", - "1481", + "1471", + "1472", + "1473", "1482", "1483", "1484", @@ -161296,9 +160905,9 @@ "1493", "1494", "1495", - "1501", - "1502", - "1503", + "1496", + "1497", + "1498", "1504", "1505", "1506", @@ -161307,39 +160916,39 @@ "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1569", - "1570", - "1571", + "1549", + "1550", + "1551", "1572", "1573", "1574", - "1603", - "1604", - "1605", + "1575", + "1576", + "1577", "1606", "1607", "1608", "1609", "1610", - "1616", - "1617", - "1618", + "1611", + "1612", + "1613", "1619", - "1626", - "1650", - "1651", - "1652", + "1620", + "1621", + "1622", + "1629", "1653", "1654", "1655", @@ -161347,72 +160956,75 @@ "1657", "1658", "1659", - "1670", - "1671", - "1672", + "1660", + "1661", + "1662", "1673", - "1688", - "1689", - "1690", + "1674", + "1675", + "1676", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" ], "location": { "end": { @@ -161440,7 +161052,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1946" + "1949" ], "location": { "end": { @@ -161462,7 +161074,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1946" + "1949" ], "location": { "end": { @@ -161484,10 +161096,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1946" + "1949" ], "coveredBy": [ - "1946" + "1949" ], "location": { "end": { @@ -161509,10 +161121,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1946" + "1949" ], "coveredBy": [ - "1946" + "1949" ], "location": { "end": { @@ -161534,7 +161146,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1946" + "1949" ], "location": { "end": { @@ -161556,7 +161168,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "1946" + "1949" ], "location": { "end": { @@ -161584,10 +161196,10 @@ "static": false, "killedBy": [], "coveredBy": [ - "1819", - "1820", - "1821", - "1822" + "1822", + "1823", + "1824", + "1825" ], "location": { "end": { @@ -161609,13 +161221,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1819" + "1822" ], "coveredBy": [ - "1819", - "1820", - "1821", - "1822" + "1822", + "1823", + "1824", + "1825" ], "location": { "end": { @@ -161637,11 +161249,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1819" + "1822" ], "coveredBy": [ - "1819", - "1820" + "1822", + "1823" ], "location": { "end": { @@ -161663,11 +161275,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1819" + "1822" ], "coveredBy": [ - "1819", - "1820" + "1822", + "1823" ], "location": { "end": { @@ -161689,11 +161301,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1819" + "1822" ], "coveredBy": [ - "1819", - "1820" + "1822", + "1823" ], "location": { "end": { @@ -161715,11 +161327,11 @@ "testsCompleted": 11, "static": false, "killedBy": [ - "1820" + "1823" ], "coveredBy": [ - "1819", - "1820" + "1822", + "1823" ], "location": { "end": { @@ -161741,11 +161353,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1819" + "1822" ], "coveredBy": [ - "1819", - "1820" + "1822", + "1823" ], "location": { "end": { @@ -161767,11 +161379,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1819" + "1822" ], "coveredBy": [ - "1819", - "1820" + "1822", + "1823" ], "location": { "end": { @@ -161793,8 +161405,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1819", - "1820" + "1822", + "1823" ], "location": { "end": { @@ -161816,8 +161428,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "1821", - "1822" + "1824", + "1825" ], "location": { "end": { @@ -161839,11 +161451,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1821" + "1824" ], "coveredBy": [ - "1821", - "1822" + "1824", + "1825" ], "location": { "end": { @@ -161865,11 +161477,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1821" + "1824" ], "coveredBy": [ - "1821", - "1822" + "1824", + "1825" ], "location": { "end": { @@ -161891,11 +161503,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1821" + "1824" ], "coveredBy": [ - "1821", - "1822" + "1824", + "1825" ], "location": { "end": { @@ -161917,11 +161529,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1821" + "1824" ], "coveredBy": [ - "1821", - "1822" + "1824", + "1825" ], "location": { "end": { @@ -161943,11 +161555,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1821" + "1824" ], "coveredBy": [ - "1821", - "1822" + "1824", + "1825" ], "location": { "end": { @@ -161969,10 +161581,10 @@ "static": false, "killedBy": [], "coveredBy": [ - "1819", - "1820", - "1821", - "1822" + "1822", + "1823", + "1824", + "1825" ], "location": { "end": { @@ -162000,13 +161612,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952", - "1953" + "1448", + "1449", + "1450", + "1955", + "1956" ], "location": { "end": { @@ -162028,13 +161640,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952", - "1953" + "1448", + "1449", + "1450", + "1955", + "1956" ], "location": { "end": { @@ -162056,16 +161668,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1443" + "1446" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952", - "1953" + "1448", + "1449", + "1450", + "1955", + "1956" ], "location": { "end": { @@ -162087,16 +161699,16 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "1952" + "1955" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952", - "1953" + "1448", + "1449", + "1450", + "1955", + "1956" ], "location": { "end": { @@ -162118,16 +161730,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1443" + "1446" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952", - "1953" + "1448", + "1449", + "1450", + "1955", + "1956" ], "location": { "end": { @@ -162149,13 +161761,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952", - "1953" + "1448", + "1449", + "1450", + "1955", + "1956" ], "location": { "end": { @@ -162177,10 +161789,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1952" + "1955" ], "coveredBy": [ - "1952" + "1955" ], "location": { "end": { @@ -162202,10 +161814,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1952" + "1955" ], "coveredBy": [ - "1952" + "1955" ], "location": { "end": { @@ -162227,16 +161839,16 @@ "testsCompleted": 9, "static": false, "killedBy": [ - "1953" + "1956" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952", - "1953" + "1448", + "1449", + "1450", + "1955", + "1956" ], "location": { "end": { @@ -162258,16 +161870,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1443" + "1446" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952", - "1953" + "1448", + "1449", + "1450", + "1955", + "1956" ], "location": { "end": { @@ -162289,15 +161901,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1443" + "1446" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952" + "1448", + "1449", + "1450", + "1955" ], "location": { "end": { @@ -162319,15 +161931,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1443" + "1446" ], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952" + "1448", + "1449", + "1450", + "1955" ], "location": { "end": { @@ -162349,13 +161961,13 @@ "static": false, "killedBy": [], "coveredBy": [ - "1443", - "1444", - "1445", "1446", "1447", - "1952", - "1953" + "1448", + "1449", + "1450", + "1955", + "1956" ], "location": { "end": { @@ -162383,32 +161995,29 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "193", - "194", - "195", - "196", - "197", - "198", - "199", - "200", - "201", - "202", - "203", - "204", - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "223", + "224", + "225", + "226", + "227", + "228", + "229", + "230", + "231", + "232", + "233", + "234", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -162420,7 +162029,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -162442,20 +162054,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162477,20 +162089,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162512,20 +162124,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162547,20 +162159,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162582,20 +162194,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162617,20 +162229,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162652,20 +162264,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162687,20 +162299,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162722,12 +162334,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "188", - "189", - "190", - "191", - "192", - "208" + "218", + "219", + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -162749,12 +162361,12 @@ "static": false, "killedBy": [], "coveredBy": [ - "188", - "189", - "190", - "191", - "192", - "208" + "218", + "219", + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -162776,16 +162388,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "189", - "208", - "209", - "534", - "535", - "536", + "217", + "219", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162807,19 +162419,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "187" + "217" ], "coveredBy": [ - "187", - "189", - "208", - "209", - "534", - "535", - "536", + "217", + "219", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -162841,11 +162453,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "188", - "190", - "191", - "192", - "208" + "218", + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -162867,11 +162479,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "188", - "190", - "191", - "192", - "208" + "218", + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -162893,11 +162505,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "188", - "190", - "191", - "192", - "208" + "218", + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -162919,11 +162531,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "188", - "190", - "191", - "192", - "208" + "218", + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -162945,7 +162557,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "188" + "218" ], "location": { "end": { @@ -162967,10 +162579,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "188" + "218" ], "coveredBy": [ - "188" + "218" ], "location": { "end": { @@ -162992,13 +162604,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "190" + "220" ], "coveredBy": [ - "190", - "191", - "192", - "208" + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -163020,13 +162632,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "191" + "221" ], "coveredBy": [ - "190", - "191", - "192", - "208" + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -163048,13 +162660,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "191" + "221" ], "coveredBy": [ - "190", - "191", - "192", - "208" + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -163076,13 +162688,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "190" + "220" ], "coveredBy": [ - "190", - "191", - "192", - "208" + "220", + "221", + "222", + "238" ], "location": { "end": { @@ -163104,20 +162716,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "193", - "194", - "195", - "196", - "197", - "198", - "208", - "209", - "534", - "535", - "536", + "223", + "224", + "225", + "226", + "227", + "228", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163139,20 +162751,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "193", - "194", - "195", - "196", - "197", - "198", - "208", - "209", - "534", - "535", - "536", + "223", + "224", + "225", + "226", + "227", + "228", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163174,20 +162786,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "193", - "194", - "195", - "196", - "197", - "198", - "208", - "209", - "534", - "535", - "536", + "223", + "224", + "225", + "226", + "227", + "228", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163209,20 +162821,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "193", - "194", - "195", - "196", - "197", - "198", - "208", - "209", - "534", - "535", - "536", + "223", + "224", + "225", + "226", + "227", + "228", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163244,20 +162856,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "193", - "194", - "195", - "196", - "197", - "198", - "208", - "209", - "534", - "535", - "536", + "223", + "224", + "225", + "226", + "227", + "228", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163279,20 +162891,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "193", - "194", - "195", - "196", - "197", - "198", - "208", - "209", - "534", - "535", - "536", + "223", + "224", + "225", + "226", + "227", + "228", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163314,20 +162926,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "193", - "194", - "195", - "196", - "197", - "198", - "208", - "209", - "534", - "535", - "536", + "223", + "224", + "225", + "226", + "227", + "228", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163349,20 +162961,20 @@ "static": false, "killedBy": [], "coveredBy": [ - "193", - "194", - "195", - "196", - "197", - "198", - "208", - "209", - "534", - "535", - "536", + "223", + "224", + "225", + "226", + "227", + "228", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163375,60 +162987,6 @@ } } }, - { - "id": "3710", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "194", - "195", - "196", - "197", - "198", - "208" - ], - "location": { - "end": { - "column": 97, - "line": 30 - }, - "start": { - "column": 54, - "line": 30 - } - } - }, - { - "id": "3711", - "mutatorName": "EqualityOperator", - "replacement": "makeGamePlayDto.value.targets !== undefined", - "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "194", - "195", - "196", - "197", - "198", - "208" - ], - "location": { - "end": { - "column": 97, - "line": 30 - }, - "start": { - "column": 54, - "line": 30 - } - } - }, { "id": "3712", "mutatorName": "BlockStatement", @@ -163438,16 +162996,16 @@ "static": false, "killedBy": [], "coveredBy": [ - "193", - "195", - "208", - "209", - "534", - "535", - "536", + "223", + "225", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163469,19 +163027,19 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "193" + "223" ], "coveredBy": [ - "193", - "195", - "208", - "209", - "534", - "535", - "536", + "223", + "225", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163503,11 +163061,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "194", - "196", - "197", - "198", - "208" + "224", + "226", + "227", + "228", + "238" ], "location": { "end": { @@ -163529,11 +163087,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "194", - "196", - "197", - "198", - "208" + "224", + "226", + "227", + "228", + "238" ], "location": { "end": { @@ -163555,11 +163113,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "194", - "196", - "197", - "198", - "208" + "224", + "226", + "227", + "228", + "238" ], "location": { "end": { @@ -163581,11 +163139,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "194", - "196", - "197", - "198", - "208" + "224", + "226", + "227", + "228", + "238" ], "location": { "end": { @@ -163607,7 +163165,7 @@ "static": false, "killedBy": [], "coveredBy": [ - "194" + "224" ], "location": { "end": { @@ -163629,10 +163187,10 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "194" + "224" ], "coveredBy": [ - "194" + "224" ], "location": { "end": { @@ -163654,13 +163212,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "196" + "226" ], "coveredBy": [ - "196", - "197", - "198", - "208" + "226", + "227", + "228", + "238" ], "location": { "end": { @@ -163682,13 +163240,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "197" + "227" ], "coveredBy": [ - "196", - "197", - "198", - "208" + "226", + "227", + "228", + "238" ], "location": { "end": { @@ -163710,13 +163268,13 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "197" + "227" ], "coveredBy": [ - "196", - "197", - "198", - "208" + "226", + "227", + "228", + "238" ], "location": { "end": { @@ -163738,13 +163296,13 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "196" + "226" ], "coveredBy": [ - "196", - "197", - "198", - "208" + "226", + "227", + "228", + "238" ], "location": { "end": { @@ -163766,32 +163324,29 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "193", - "194", - "195", - "196", - "197", - "198", - "199", - "200", - "201", - "202", - "203", - "204", - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "223", + "224", + "225", + "226", + "227", + "228", + "229", + "230", + "231", + "232", + "233", + "234", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -163803,7 +163358,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -163825,20 +163383,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "199" + "229" ], "coveredBy": [ - "199", - "200", - "201", - "208", - "209", - "534", - "535", - "536", + "229", + "230", + "231", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163860,20 +163418,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "201" + "231" ], "coveredBy": [ - "199", - "200", - "201", - "208", - "209", - "534", - "535", - "536", + "229", + "230", + "231", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163895,20 +163453,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "199" + "229" ], "coveredBy": [ - "199", - "200", - "201", - "208", - "209", - "534", - "535", - "536", + "229", + "230", + "231", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163930,20 +163488,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "199" + "229" ], "coveredBy": [ - "199", - "200", - "201", - "208", - "209", - "534", - "535", - "536", + "229", + "230", + "231", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -163965,20 +163523,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "199" + "229" ], "coveredBy": [ - "199", - "200", - "201", - "208", - "209", - "534", - "535", - "536", + "229", + "230", + "231", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164000,17 +163558,17 @@ "static": false, "killedBy": [], "coveredBy": [ - "199", - "200", - "201", - "208", - "209", - "534", - "535", - "536", + "229", + "230", + "231", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164032,17 +163590,17 @@ "static": false, "killedBy": [], "coveredBy": [ - "199", - "200", - "201", - "208", - "209", - "534", - "535", - "536", + "229", + "230", + "231", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164064,14 +163622,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "200" + "230" ], "coveredBy": [ - "200", - "201", - "208", + "230", + "231", + "238", "538", - "539" + "539", + "541", + "542" ], "location": { "end": { @@ -164093,14 +163653,16 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "200" + "230" ], "coveredBy": [ - "200", - "201", - "208", + "230", + "231", + "238", "538", - "539" + "539", + "541", + "542" ], "location": { "end": { @@ -164122,32 +163684,29 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "193", - "194", - "195", - "196", - "197", - "198", - "199", - "200", - "201", - "202", - "203", - "204", - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "223", + "224", + "225", + "226", + "227", + "228", + "229", + "230", + "231", + "232", + "233", + "234", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -164159,7 +163718,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164181,20 +163743,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "202" + "232" ], "coveredBy": [ - "202", - "203", - "204", - "208", - "209", - "534", - "535", - "536", + "232", + "233", + "234", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164216,20 +163778,20 @@ "testsCompleted": 4, "static": false, "killedBy": [ - "204" + "234" ], "coveredBy": [ - "202", - "203", - "204", - "208", - "209", - "534", - "535", - "536", + "232", + "233", + "234", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164251,20 +163813,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "202" + "232" ], "coveredBy": [ - "202", - "203", - "204", - "208", - "209", - "534", - "535", - "536", + "232", + "233", + "234", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164286,20 +163848,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "202" + "232" ], "coveredBy": [ - "202", - "203", - "204", - "208", - "209", - "534", - "535", - "536", + "232", + "233", + "234", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164321,20 +163883,20 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "202" + "232" ], "coveredBy": [ - "202", - "203", - "204", - "208", - "209", - "534", - "535", - "536", + "232", + "233", + "234", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164356,17 +163918,17 @@ "static": false, "killedBy": [], "coveredBy": [ - "202", - "203", - "204", - "208", - "209", - "534", - "535", - "536", + "232", + "233", + "234", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164388,17 +163950,17 @@ "static": false, "killedBy": [], "coveredBy": [ - "202", - "203", - "204", - "208", - "209", - "534", - "535", - "536", + "232", + "233", + "234", + "238", + "239", + "537", "538", "539", - "546" + "541", + "542", + "549" ], "location": { "end": { @@ -164420,15 +163982,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "203" + "233" ], "coveredBy": [ - "203", - "204", - "208", - "209", - "535", - "536" + "233", + "234", + "238", + "239", + "537", + "538" ], "location": { "end": { @@ -164450,15 +164012,15 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "203" + "233" ], "coveredBy": [ - "203", - "204", - "208", - "209", - "535", - "536" + "233", + "234", + "238", + "239", + "537", + "538" ], "location": { "end": { @@ -164480,32 +164042,29 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "193", - "194", - "195", - "196", - "197", - "198", - "199", - "200", - "201", - "202", - "203", - "204", - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "223", + "224", + "225", + "226", + "227", + "228", + "229", + "230", + "231", + "232", + "233", + "234", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -164517,7 +164076,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164539,17 +164101,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "205" + "235" ], "coveredBy": [ - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -164561,7 +164120,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164583,17 +164145,14 @@ "testsCompleted": 2, "static": false, "killedBy": [ - "206" + "236" ], "coveredBy": [ - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -164605,7 +164164,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164627,17 +164189,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "205" + "235" ], "coveredBy": [ - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -164649,7 +164208,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164671,14 +164233,11 @@ "static": false, "killedBy": [], "coveredBy": [ - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -164690,7 +164249,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164712,17 +164274,14 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "205" + "235" ], "coveredBy": [ - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -164734,7 +164293,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164756,32 +164318,29 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "193", - "194", - "195", - "196", - "197", - "198", - "199", - "200", - "201", - "202", - "203", - "204", - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "223", + "224", + "225", + "226", + "227", + "228", + "229", + "230", + "231", + "232", + "233", + "234", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -164793,7 +164352,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164815,15 +164377,12 @@ "testsCompleted": 6, "static": false, "killedBy": [ - "209" + "239" ], "coveredBy": [ - "207", - "208", - "209", - "534", - "535", - "536", + "237", + "238", + "239", "537", "538", "539", @@ -164835,7 +164394,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164857,15 +164419,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "207" + "237" ], "coveredBy": [ - "207", - "208", - "209", - "534", - "535", - "536", + "237", + "238", + "239", "537", "538", "539", @@ -164877,7 +164436,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164899,15 +164461,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "207" + "237" ], "coveredBy": [ - "207", - "208", - "209", - "534", - "535", - "536", + "237", + "238", + "239", "537", "538", "539", @@ -164919,7 +164478,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164941,15 +164503,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "207" + "237" ], "coveredBy": [ - "207", - "208", - "209", - "534", - "535", - "536", + "237", + "238", + "239", "537", "538", "539", @@ -164961,7 +164520,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -164983,15 +164545,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "207" + "237" ], "coveredBy": [ - "207", - "208", - "209", - "534", - "535", - "536", + "237", + "238", + "239", "537", "538", "539", @@ -165003,7 +164562,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -165025,15 +164587,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "207" + "237" ], "coveredBy": [ - "207", - "208", - "209", - "534", - "535", - "536", + "237", + "238", + "239", "537", "538", "539", @@ -165045,7 +164604,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -165067,15 +164629,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "207" + "237" ], "coveredBy": [ - "207", - "208", - "209", - "534", - "535", - "536", + "237", + "238", + "239", "537", "538", "539", @@ -165087,7 +164646,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -165109,15 +164671,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "207" + "237" ], "coveredBy": [ - "207", - "208", - "209", - "534", - "535", - "536", + "237", + "238", + "239", "537", "538", "539", @@ -165129,7 +164688,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -165151,15 +164713,12 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "207" + "237" ], "coveredBy": [ - "207", - "208", - "209", - "534", - "535", - "536", + "237", + "238", + "239", "537", "538", "539", @@ -165171,7 +164730,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -165193,32 +164755,29 @@ "static": false, "killedBy": [], "coveredBy": [ - "187", - "188", - "189", - "190", - "191", - "192", - "193", - "194", - "195", - "196", - "197", - "198", - "199", - "200", - "201", - "202", - "203", - "204", - "205", - "206", - "207", - "208", - "209", - "534", - "535", - "536", + "217", + "218", + "219", + "220", + "221", + "222", + "223", + "224", + "225", + "226", + "227", + "228", + "229", + "230", + "231", + "232", + "233", + "234", + "235", + "236", + "237", + "238", + "239", "537", "538", "539", @@ -165230,7 +164789,10 @@ "545", "546", "547", - "548" + "548", + "549", + "550", + "551" ], "location": { "end": { @@ -165242,6 +164804,60 @@ "line": 55 } } + }, + { + "id": "3711", + "mutatorName": "EqualityOperator", + "replacement": "makeGamePlayDto.value.targets !== undefined", + "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "coveredBy": [ + "224", + "225", + "226", + "227", + "228", + "238", + "549" + ], + "location": { + "end": { + "column": 97, + "line": 30 + }, + "start": { + "column": 54, + "line": 30 + } + } + }, + { + "id": "3710", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "app/composables/api/game/useMakeGamePlayDtoValidation.ts(40,12): error TS18048: 'targets' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "coveredBy": [ + "224", + "225", + "226", + "227", + "228", + "238", + "549" + ], + "location": { + "end": { + "column": 97, + "line": 30 + }, + "start": { + "column": 54, + "line": 30 + } + } } ], "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 };" @@ -165268,12 +164884,9 @@ "73", "74", "75", - "286", "289", - "290", - "327", - "328", - "329", + "292", + "293", "330", "331", "332", @@ -165287,19 +164900,22 @@ "340", "341", "342", - "681", - "781", + "343", + "344", + "345", + "684", "784", - "1327", - "1328", - "1329", + "787", "1330", "1331", + "1332", "1333", "1334", - "1669", - "1836", - "2008" + "1336", + "1337", + "1672", + "1839", + "2011" ], "location": { "end": { @@ -165318,6 +164934,149 @@ "app/composables/api/role/useFetchRoles.ts": { "language": "typescript", "mutants": [ + { + "id": "3763", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1961", + "1962" + ], + "location": { + "end": { + "column": 4, + "line": 17 + }, + "start": { + "column": 82, + "line": 11 + } + } + }, + { + "id": "3764", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1961", + "1962" + ], + "location": { + "end": { + "column": 6, + "line": 14 + }, + "start": { + "column": 9, + "line": 12 + } + } + }, + { + "id": "3765", + "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 \"\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1961" + ], + "coveredBy": [ + "1961", + "1962" + ], + "location": { + "end": { + "column": 64, + "line": 13 + }, + "start": { + "column": 56, + "line": 13 + } + } + }, + { + "id": "3766", + "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\"", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1961" + ], + "coveredBy": [ + "1961", + "1962" + ], + "location": { + "end": { + "column": 83, + "line": 13 + }, + "start": { + "column": 66, + "line": 13 + } + } + }, + { + "id": "3767", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/composables/api/role/useFetchRoles.ts(13,68): error TS2322: Type '\"\"' is not assignable to type '\"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"get\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"delete\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1961", + "1962" + ], + "location": { + "end": { + "column": 81, + "line": 13 + }, + "start": { + "column": 76, + "line": 13 + } + } + }, + { + "id": "3768", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1962" + ], + "location": { + "end": { + "column": 6, + "line": 16 + }, + "start": { + "column": 13, + "line": 14 + } + } + }, { "id": "3762", "mutatorName": "BlockStatement", @@ -165325,7 +165084,6 @@ "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", "status": "CompileError", "static": false, - "killedBy": [], "coveredBy": [ "0", "1", @@ -165409,36 +165167,36 @@ "79", "80", "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "285", "286", "287", @@ -165452,9 +165210,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -165470,9 +165228,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -165489,9 +165247,9 @@ "384", "385", "386", - "424", - "425", - "426", + "387", + "388", + "389", "427", "428", "429", @@ -165503,9 +165261,9 @@ "435", "436", "437", - "466", - "467", - "468", + "438", + "439", + "440", "469", "470", "471", @@ -165519,9 +165277,9 @@ "479", "480", "481", - "523", - "524", - "525", + "482", + "483", + "484", "526", "527", "528", @@ -165530,9 +165288,9 @@ "531", "532", "533", - "549", - "550", - "551", + "534", + "535", + "536", "552", "553", "554", @@ -165549,9 +165307,9 @@ "565", "566", "567", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -165580,9 +165338,9 @@ "664", "665", "666", - "674", - "675", - "676", + "667", + "668", + "669", "677", "678", "679", @@ -165607,9 +165365,9 @@ "698", "699", "700", - "744", - "745", - "746", + "701", + "702", + "703", "747", "748", "749", @@ -165619,9 +165377,9 @@ "753", "754", "755", - "785", - "786", - "787", + "756", + "757", + "758", "788", "789", "790", @@ -165634,9 +165392,9 @@ "797", "798", "799", - "815", - "816", - "817", + "800", + "801", + "802", "818", "819", "820", @@ -165645,9 +165403,9 @@ "823", "824", "825", - "916", - "917", - "918", + "826", + "827", + "828", "919", "920", "921", @@ -165668,9 +165426,9 @@ "936", "937", "938", - "961", - "962", - "963", + "939", + "940", + "941", "964", "965", "966", @@ -165679,9 +165437,9 @@ "969", "970", "971", - "999", - "1000", - "1001", + "972", + "973", + "974", "1002", "1003", "1004", @@ -165689,9 +165447,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -165699,18 +165457,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -165718,18 +165476,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -165756,33 +165514,33 @@ "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1268", - "1269", - "1270", + "1257", + "1258", + "1259", "1271", - "1279", - "1280", - "1281", + "1272", + "1273", + "1274", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -165803,24 +165561,24 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -165832,28 +165590,28 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", + "1391", + "1392", + "1393", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1512", - "1513", - "1514", + "1501", + "1502", + "1503", "1515", "1516", "1517", @@ -165862,9 +165620,9 @@ "1520", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -165872,9 +165630,9 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", "1554", @@ -165892,9 +165650,9 @@ "1566", "1567", "1568", - "1575", - "1576", - "1577", + "1569", + "1570", + "1571", "1578", "1579", "1580", @@ -165920,28 +165678,31 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1660", - "1661", - "1662", + "1616", + "1617", + "1618", "1663", - "1674", - "1675", - "1911", - "1912", - "1913", + "1664", + "1665", + "1666", + "1677", + "1678", "1914", "1915", - "1927", - "1928", - "1929", + "1916", + "1917", + "1918", "1930", - "1958", - "1959" + "1931", + "1932", + "1933", + "1961", + "1962" ], "location": { "end": { @@ -165954,149 +165715,6 @@ } } }, - { - "id": "3763", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1958", - "1959" - ], - "location": { - "end": { - "column": 4, - "line": 17 - }, - "start": { - "column": 82, - "line": 11 - } - } - }, - { - "id": "3764", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1958", - "1959" - ], - "location": { - "end": { - "column": 6, - "line": 14 - }, - "start": { - "column": 9, - "line": 12 - } - } - }, - { - "id": "3765", - "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 \"\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1958" - ], - "coveredBy": [ - "1958", - "1959" - ], - "location": { - "end": { - "column": 64, - "line": 13 - }, - "start": { - "column": 56, - "line": 13 - } - } - }, - { - "id": "3766", - "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\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1958" - ], - "coveredBy": [ - "1958", - "1959" - ], - "location": { - "end": { - "column": 83, - "line": 13 - }, - "start": { - "column": 66, - "line": 13 - } - } - }, - { - "id": "3767", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/composables/api/role/useFetchRoles.ts(13,68): error TS2322: Type '\"\"' is not assignable to type '\"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\" | \"DELETE\" | \"CONNECT\" | \"OPTIONS\" | \"TRACE\" | \"get\" | \"head\" | \"patch\" | \"post\" | \"put\" | \"delete\" | \"connect\" | \"options\" | \"trace\" | undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1958", - "1959" - ], - "location": { - "end": { - "column": 81, - "line": 13 - }, - "start": { - "column": 76, - "line": 13 - } - } - }, - { - "id": "3768", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1959" - ], - "location": { - "end": { - "column": 6, - "line": 16 - }, - "start": { - "column": 13, - "line": 14 - } - } - }, { "id": "3769", "mutatorName": "ObjectLiteral", @@ -166104,7 +165722,6 @@ "statusReason": "app/composables/api/role/useFetchRoles.ts(18,3): error TS2741: Property 'fetchRoles' is missing in type '{}' but required in type 'UseFetchRoles'.\n", "status": "CompileError", "static": false, - "killedBy": [], "coveredBy": [ "0", "1", @@ -166188,36 +165805,36 @@ "79", "80", "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "285", "286", "287", @@ -166231,9 +165848,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -166249,9 +165866,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -166268,9 +165885,9 @@ "384", "385", "386", - "424", - "425", - "426", + "387", + "388", + "389", "427", "428", "429", @@ -166282,9 +165899,9 @@ "435", "436", "437", - "466", - "467", - "468", + "438", + "439", + "440", "469", "470", "471", @@ -166298,9 +165915,9 @@ "479", "480", "481", - "523", - "524", - "525", + "482", + "483", + "484", "526", "527", "528", @@ -166309,9 +165926,9 @@ "531", "532", "533", - "549", - "550", - "551", + "534", + "535", + "536", "552", "553", "554", @@ -166328,9 +165945,9 @@ "565", "566", "567", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -166359,9 +165976,9 @@ "664", "665", "666", - "674", - "675", - "676", + "667", + "668", + "669", "677", "678", "679", @@ -166386,9 +166003,9 @@ "698", "699", "700", - "744", - "745", - "746", + "701", + "702", + "703", "747", "748", "749", @@ -166398,9 +166015,9 @@ "753", "754", "755", - "785", - "786", - "787", + "756", + "757", + "758", "788", "789", "790", @@ -166413,9 +166030,9 @@ "797", "798", "799", - "815", - "816", - "817", + "800", + "801", + "802", "818", "819", "820", @@ -166424,9 +166041,9 @@ "823", "824", "825", - "916", - "917", - "918", + "826", + "827", + "828", "919", "920", "921", @@ -166447,9 +166064,9 @@ "936", "937", "938", - "961", - "962", - "963", + "939", + "940", + "941", "964", "965", "966", @@ -166458,9 +166075,9 @@ "969", "970", "971", - "999", - "1000", - "1001", + "972", + "973", + "974", "1002", "1003", "1004", @@ -166468,9 +166085,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -166478,18 +166095,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -166497,18 +166114,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -166535,33 +166152,33 @@ "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1268", - "1269", - "1270", + "1257", + "1258", + "1259", "1271", - "1279", - "1280", - "1281", + "1272", + "1273", + "1274", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -166582,24 +166199,24 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -166611,28 +166228,28 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", + "1391", + "1392", + "1393", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1512", - "1513", - "1514", + "1501", + "1502", + "1503", "1515", "1516", "1517", @@ -166641,9 +166258,9 @@ "1520", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -166651,9 +166268,9 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", "1554", @@ -166671,9 +166288,9 @@ "1566", "1567", "1568", - "1575", - "1576", - "1577", + "1569", + "1570", + "1571", "1578", "1579", "1580", @@ -166699,28 +166316,31 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1660", - "1661", - "1662", + "1616", + "1617", + "1618", "1663", - "1674", - "1675", - "1911", - "1912", - "1913", + "1664", + "1665", + "1666", + "1677", + "1678", "1914", "1915", - "1927", - "1928", - "1929", + "1916", + "1917", + "1918", "1930", - "1958", - "1959" + "1931", + "1932", + "1933", + "1961", + "1962" ], "location": { "end": { @@ -166748,9 +166368,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -166764,9 +166381,9 @@ "295", "296", "297", - "523", - "524", - "525", + "298", + "299", + "300", "526", "527", "528", @@ -166775,9 +166392,9 @@ "531", "532", "533", - "624", - "625", - "626", + "534", + "535", + "536", "627", "628", "629", @@ -166787,18 +166404,18 @@ "633", "634", "635", - "735", - "736", - "737", + "636", + "637", + "638", "738", "739", "740", "741", "742", "743", - "916", - "917", - "918", + "744", + "745", + "746", "919", "920", "921", @@ -166819,34 +166436,37 @@ "936", "937", "938", - "1268", - "1269", - "1270", + "939", + "940", + "941", "1271", - "1443", - "1444", - "1445", + "1272", + "1273", + "1274", "1446", "1447", - "1678", - "1679", - "1680", + "1448", + "1449", + "1450", "1681", "1682", "1683", "1684", - "1781", - "1782", - "1783", + "1685", + "1686", + "1687", "1784", "1785", "1786", - "1920", - "1921", - "1952", - "1953", - "1992", - "1993" + "1787", + "1788", + "1789", + "1923", + "1924", + "1955", + "1956", + "1995", + "1996" ], "location": { "end": { @@ -166868,9 +166488,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -166879,9 +166496,9 @@ "531", "532", "533", - "624", - "625", - "626", + "534", + "535", + "536", "627", "628", "629", @@ -166891,9 +166508,9 @@ "633", "634", "635", - "916", - "917", - "918", + "636", + "637", + "638", "919", "920", "921", @@ -166905,26 +166522,29 @@ "927", "928", "929", - "1268", - "1269", - "1270", + "930", + "931", + "932", "1271", - "1678", - "1679", - "1680", + "1272", + "1273", + "1274", "1681", "1682", "1683", "1684", - "1781", - "1782", - "1783", + "1685", + "1686", + "1687", "1784", "1785", "1786", - "1920", - "1921", - "1992" + "1787", + "1788", + "1789", + "1923", + "1924", + "1995" ], "location": { "end": { @@ -166946,12 +166566,9 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "916" + "919" ], "coveredBy": [ - "523", - "524", - "525", "526", "527", "528", @@ -166960,9 +166577,9 @@ "531", "532", "533", - "624", - "625", - "626", + "534", + "535", + "536", "627", "628", "629", @@ -166972,9 +166589,9 @@ "633", "634", "635", - "916", - "917", - "918", + "636", + "637", + "638", "919", "920", "921", @@ -166986,26 +166603,29 @@ "927", "928", "929", - "1268", - "1269", - "1270", + "930", + "931", + "932", "1271", - "1678", - "1679", - "1680", + "1272", + "1273", + "1274", "1681", "1682", "1683", "1684", - "1781", - "1782", - "1783", + "1685", + "1686", + "1687", "1784", "1785", "1786", - "1920", - "1921", - "1992" + "1787", + "1788", + "1789", + "1923", + "1924", + "1995" ], "location": { "end": { @@ -167027,11 +166647,8 @@ "static": false, "killedBy": [], "coveredBy": [ - "293", - "294", - "624", - "625", - "626", + "296", + "297", "627", "628", "629", @@ -167041,23 +166658,26 @@ "633", "634", "635", - "739", - "743", - "930", - "931", - "932", + "636", + "637", + "638", + "742", + "746", "933", "934", "935", "936", "937", "938", - "1268", - "1269", - "1270", + "939", + "940", + "941", "1271", - "1953", - "1993" + "1272", + "1273", + "1274", + "1956", + "1996" ], "location": { "end": { @@ -167079,14 +166699,11 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "1953" + "1956" ], "coveredBy": [ - "293", - "294", - "624", - "625", - "626", + "296", + "297", "627", "628", "629", @@ -167096,23 +166713,26 @@ "633", "634", "635", - "739", - "743", - "930", - "931", - "932", + "636", + "637", + "638", + "742", + "746", "933", "934", "935", "936", "937", "938", - "1268", - "1269", - "1270", + "939", + "940", + "941", "1271", - "1953", - "1993" + "1272", + "1273", + "1274", + "1956", + "1996" ], "location": { "end": { @@ -167134,9 +166754,6 @@ "static": false, "killedBy": [], "coveredBy": [ - "282", - "283", - "284", "285", "286", "287", @@ -167150,9 +166767,9 @@ "295", "296", "297", - "523", - "524", - "525", + "298", + "299", + "300", "526", "527", "528", @@ -167161,9 +166778,9 @@ "531", "532", "533", - "624", - "625", - "626", + "534", + "535", + "536", "627", "628", "629", @@ -167173,18 +166790,18 @@ "633", "634", "635", - "735", - "736", - "737", + "636", + "637", + "638", "738", "739", "740", "741", "742", "743", - "916", - "917", - "918", + "744", + "745", + "746", "919", "920", "921", @@ -167205,34 +166822,37 @@ "936", "937", "938", - "1268", - "1269", - "1270", + "939", + "940", + "941", "1271", - "1443", - "1444", - "1445", + "1272", + "1273", + "1274", "1446", "1447", - "1678", - "1679", - "1680", + "1448", + "1449", + "1450", "1681", "1682", "1683", "1684", - "1781", - "1782", - "1783", + "1685", + "1686", + "1687", "1784", "1785", "1786", - "1920", - "1921", - "1952", - "1953", - "1992", - "1993" + "1787", + "1788", + "1789", + "1923", + "1924", + "1955", + "1956", + "1995", + "1996" ], "location": { "end": { @@ -167248,286 +166868,18 @@ ], "source": "import type { RoleName } from \"~/composables/api/role/types/role.types\";\n\ntype UseRoleName = {\n getRoleNameLabel: (roleName: RoleName) => string;\n getDefiniteRoleNameLabel: (roleName: RoleName, count: number) => string;\n};\n\nfunction useRoleName(): UseRoleName {\n const { t } = useI18n();\n\n function getRoleNameLabel(roleName: RoleName): string {\n return t(`shared.role.name.${roleName}`);\n }\n\n function getDefiniteRoleNameLabel(roleName: RoleName, count: number): string {\n return t(`shared.role.definiteName.${roleName}`, count);\n }\n return {\n getRoleNameLabel,\n getDefiniteRoleNameLabel,\n };\n}\n\nexport { useRoleName };" }, - "app/composables/api/useWerewolvesAssistantApi.ts": { + "app/composables/misc/useArrays.ts": { "language": "typescript", "mutants": [ { - "id": "3776", + "id": "3781", "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", + "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", "status": "CompileError", - "static": true, + "static": false, "killedBy": [], "coveredBy": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25", - "26", - "27", - "28", - "29", - "30", - "31", - "32", - "33", - "34", - "35", - "36", - "37", - "38", - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", "371", "372", "373", @@ -167547,203 +166899,6 @@ "387", "388", "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "438", - "439", - "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "667", - "668", - "669", "670", "671", "672", @@ -167751,163 +166906,15 @@ "674", "675", "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "800", - "801", - "802", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", + "809", + "810", + "811", "898", "899", "900", @@ -167917,174 +166924,567 @@ "904", "905", "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "916", - "917", - "918", - "919", - "920", - "921", - "922", - "923", - "924", - "925", - "926", - "927", - "928", - "929", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "953", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "972", - "973", - "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", - "999", - "1000", - "1001", - "1002", - "1003", - "1004", - "1005", - "1006", - "1007", - "1008", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1725", + "1726", + "1727", + "1728", + "1729", + "2031", + "2032" + ], + "location": { + "end": { + "column": 2, + "line": 10 + }, + "start": { + "column": 33, + "line": 5 + } + } + }, + { + "id": "3782", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1725", + "1726", + "1727", + "1728", + "1729", + "2031", + "2032" + ], + "location": { + "end": { + "column": 4, + "line": 8 + }, + "start": { + "column": 64, + "line": 6 + } + } + }, + { + "id": "3783", + "mutatorName": "ArrayDeclaration", + "replacement": "[]", + "statusReason": "Snapshot `Game Fox May Have Sniffed Event Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "803" + ], + "coveredBy": [ + "373", + "374", + "375", + "376", + "380", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "904", + "906", + "1279", + "1281", + "1514", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1729", + "2032" + ], + "location": { + "end": { + "column": 36, + "line": 7 + }, + "start": { + "column": 29, + "line": 7 + } + } + }, + { + "id": "3784", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "672", + "673", + "808", + "809", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1725", + "1726", + "1727", + "1728", + "1729", + "2031" + ], + "location": { + "end": { + "column": 41, + "line": 7 + }, + "start": { + "column": 39, + "line": 7 + } + } + }, + { + "id": "3785", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1725", + "1726", + "1727", + "1728", + "1729", + "2031", + "2032" + ], + "location": { + "end": { + "column": 22, + "line": 9 + }, + "start": { + "column": 10, + "line": 9 + } + } + } + ], + "source": "type UseArrays = {\n insertIf: (mustBeInserted: boolean, value: T) => T[];\n};\n\nfunction useArrays(): UseArrays {\n function insertIf(mustBeInserted: boolean, value: T): T[] {\n return mustBeInserted ? [value] : [];\n }\n return { insertIf };\n}\n\nexport { useArrays };" + }, + "app/composables/misc/useStrings.ts": { + "language": "typescript", + "mutants": [ + { + "id": "3786", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", + "701", + "702", + "703", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "846", + "847", + "848", + "849", + "850", + "851", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", + "1030", + "1031", + "1032", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", + "1048", + "1049", + "1050", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", "1163", "1164", "1165", @@ -168094,67 +167494,25 @@ "1169", "1170", "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1267", - "1268", - "1269", - "1270", + "1257", + "1258", + "1259", "1271", "1272", "1273", "1274", - "1275", - "1276", - "1277", - "1278", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", "1299", "1300", "1301", @@ -168178,27 +167536,13 @@ "1319", "1320", "1321", - "1322", - "1323", - "1324", - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -168213,53 +167557,12 @@ "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1437", - "1438", - "1439", "1440", "1441", "1442", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", @@ -168268,55 +167571,16 @@ "1479", "1480", "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", - "1496", - "1497", - "1498", "1499", "1500", "1501", "1502", "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", "1521", "1522", - "1528", - "1529", - "1530", - "1531", - "1532", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -168327,22 +167591,11 @@ "1543", "1544", "1545", - "1546", - "1547", - "1548", - "1549", - "1550", - "1551", "1552", "1553", "1554", "1555", "1556", - "1557", - "1558", - "1559", - "1560", - "1561", "1562", "1563", "1564", @@ -168353,25 +167606,11 @@ "1569", "1570", "1571", - "1572", - "1573", - "1574", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", "1583", "1584", "1585", "1586", "1587", - "1588", - "1589", - "1590", "1591", "1592", "1593", @@ -168384,583 +167623,43 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1660", - "1661", - "1662", - "1663", - "1670", - "1671", - "1672", - "1673", - "1674", - "1675", - "1685", - "1686", - "1687", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1911", - "1912", - "1913", - "1914", - "1915", - "1927", - "1928", - "1929", "1930", - "2026" + "1931", + "1932", + "1933", + "2025", + "2026", + "2027" ], "location": { "end": { "column": 2, - "line": 22 + "line": 18 }, "start": { - "column": 65, - "line": 10 + "column": 35, + "line": 6 } } }, { - "id": "3777", - "mutatorName": "ObjectLiteral", + "id": "3787", + "mutatorName": "BlockStatement", "replacement": "{}", - "status": "Timeout", - "static": true, + "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", + "status": "CompileError", + "static": false, "killedBy": [], "coveredBy": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25", - "26", - "27", - "28", - "29", - "30", - "31", - "32", - "33", - "34", - "35", - "36", - "37", - "38", - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "438", - "439", - "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", "639", "640", "641", @@ -168992,24 +167691,8 @@ "667", "668", "669", - "670", - "671", - "672", - "673", "674", "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", "688", "689", "690", @@ -169026,181 +167709,11 @@ "701", "702", "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "916", - "917", - "918", - "919", - "920", - "921", - "922", - "923", - "924", - "925", - "926", - "927", - "928", - "929", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "953", - "961", - "962", - "963", + "846", + "848", + "849", + "850", + "851", "964", "965", "966", @@ -169212,35 +167725,6 @@ "972", "973", "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", - "999", - "1000", - "1001", - "1002", - "1003", - "1004", - "1005", - "1006", - "1007", - "1008", - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -169251,15 +167735,6 @@ "1030", "1031", "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1039", - "1040", - "1041", "1042", "1043", "1044", @@ -169269,31 +167744,6 @@ "1048", "1049", "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -169301,38 +167751,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", @@ -169342,67 +167772,21 @@ "1169", "1170", "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1267", - "1268", - "1269", - "1270", - "1271", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -169426,27 +167810,13 @@ "1319", "1320", "1321", - "1322", - "1323", - "1324", - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -169461,110 +167831,24 @@ "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1437", - "1438", - "1439", - "1440", - "1441", "1442", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1471", - "1472", - "1473", - "1474", - "1475", + "1444", "1476", "1477", "1478", "1479", "1480", "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", - "1496", - "1497", - "1498", "1499", "1500", "1501", "1502", "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", "1521", "1522", - "1528", - "1529", - "1530", - "1531", - "1532", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -169575,22 +167859,11 @@ "1543", "1544", "1545", - "1546", - "1547", - "1548", - "1549", - "1550", - "1551", "1552", "1553", "1554", "1555", "1556", - "1557", - "1558", - "1559", - "1560", - "1561", "1562", "1563", "1564", @@ -169601,25 +167874,11 @@ "1569", "1570", "1571", - "1572", - "1573", - "1574", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", "1583", "1584", "1585", "1586", "1587", - "1588", - "1589", - "1590", "1591", "1592", "1593", @@ -169632,583 +167891,42 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1660", - "1661", - "1662", - "1663", - "1670", - "1671", - "1672", - "1673", - "1674", - "1675", - "1685", - "1686", - "1687", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1911", - "1912", - "1913", - "1914", - "1915", - "1927", - "1928", - "1929", "1930", + "1931", + "1932", + "1933", + "2025", "2026" ], "location": { "end": { "column": 4, - "line": 19 + "line": 9 }, "start": { - "column": 60, - "line": 15 + "column": 76, + "line": 7 } } }, { - "id": "3778", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "status": "Timeout", - "static": true, + "id": "3788", + "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", + "status": "CompileError", + "static": false, "killedBy": [], "coveredBy": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25", - "26", - "27", - "28", - "29", - "30", - "31", - "32", - "33", - "34", - "35", - "36", - "37", - "38", - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "438", - "439", - "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", "639", "640", "641", @@ -170240,24 +167958,8 @@ "667", "668", "669", - "670", - "671", - "672", - "673", "674", "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", "688", "689", "690", @@ -170274,181 +167976,11 @@ "701", "702", "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "916", - "917", - "918", - "919", - "920", - "921", - "922", - "923", - "924", - "925", - "926", - "927", - "928", - "929", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "953", - "961", - "962", - "963", + "846", + "848", + "849", + "850", + "851", "964", "965", "966", @@ -170460,35 +167992,6 @@ "972", "973", "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", - "999", - "1000", - "1001", - "1002", - "1003", - "1004", - "1005", - "1006", - "1007", - "1008", - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -170499,15 +168002,6 @@ "1030", "1031", "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1039", - "1040", - "1041", "1042", "1043", "1044", @@ -170517,31 +168011,6 @@ "1048", "1049", "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -170549,38 +168018,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", @@ -170590,67 +168039,21 @@ "1169", "1170", "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1267", - "1268", - "1269", - "1270", - "1271", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -170674,27 +168077,13 @@ "1319", "1320", "1321", - "1322", - "1323", - "1324", - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -170709,110 +168098,24 @@ "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1437", - "1438", - "1439", - "1440", - "1441", "1442", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1471", - "1472", - "1473", - "1474", - "1475", + "1444", "1476", "1477", "1478", "1479", "1480", "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", - "1496", - "1497", - "1498", "1499", "1500", "1501", "1502", "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", "1521", "1522", - "1528", - "1529", - "1530", - "1531", - "1532", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -170823,22 +168126,11 @@ "1543", "1544", "1545", - "1546", - "1547", - "1548", - "1549", - "1550", - "1551", "1552", "1553", "1554", "1555", "1556", - "1557", - "1558", - "1559", - "1560", - "1561", "1562", "1563", "1564", @@ -170849,25 +168141,11 @@ "1569", "1570", "1571", - "1572", - "1573", - "1574", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", "1583", "1584", "1585", "1586", "1587", - "1588", - "1589", - "1590", "1591", "1592", "1593", @@ -170880,583 +168158,41 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1660", - "1661", - "1662", - "1663", - "1670", - "1671", - "1672", - "1673", - "1674", - "1675", - "1685", - "1686", - "1687", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1911", - "1912", - "1913", - "1914", - "1915", - "1927", - "1928", - "1929", "1930", - "2026" + "1931", + "1932", + "1933", + "2025" ], "location": { "end": { - "column": 52, - "line": 17 + "column": 25, + "line": 8 }, "start": { - "column": 14, - "line": 17 + "column": 20, + "line": 8 } } }, { - "id": "3779", + "id": "3789", "mutatorName": "StringLiteral", "replacement": "\"\"", - "status": "Timeout", - "static": true, + "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", + "status": "CompileError", + "static": false, "killedBy": [], "coveredBy": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25", - "26", - "27", - "28", - "29", - "30", - "31", - "32", - "33", - "34", - "35", - "36", - "37", - "38", - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "438", - "439", - "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", "639", "640", "641", @@ -171488,24 +168224,8 @@ "667", "668", "669", - "670", - "671", - "672", - "673", "674", "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", "688", "689", "690", @@ -171522,181 +168242,11 @@ "701", "702", "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "916", - "917", - "918", - "919", - "920", - "921", - "922", - "923", - "924", - "925", - "926", - "927", - "928", - "929", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "953", - "961", - "962", - "963", + "846", + "848", + "849", + "850", + "851", "964", "965", "966", @@ -171708,35 +168258,6 @@ "972", "973", "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", - "999", - "1000", - "1001", - "1002", - "1003", - "1004", - "1005", - "1006", - "1007", - "1008", - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -171747,15 +168268,6 @@ "1030", "1031", "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1039", - "1040", - "1041", "1042", "1043", "1044", @@ -171765,31 +168277,6 @@ "1048", "1049", "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -171797,38 +168284,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", @@ -171838,67 +168305,21 @@ "1169", "1170", "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1267", - "1268", - "1269", - "1270", - "1271", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -171922,27 +168343,13 @@ "1319", "1320", "1321", - "1322", - "1323", - "1324", - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -171957,110 +168364,24 @@ "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1437", - "1438", - "1439", - "1440", - "1441", "1442", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1471", - "1472", - "1473", - "1474", - "1475", + "1444", "1476", "1477", "1478", "1479", "1480", "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", - "1496", - "1497", - "1498", "1499", "1500", "1501", "1502", "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", "1521", "1522", - "1528", - "1529", - "1530", - "1531", - "1532", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -172071,22 +168392,11 @@ "1543", "1544", "1545", - "1546", - "1547", - "1548", - "1549", - "1550", - "1551", "1552", "1553", "1554", "1555", "1556", - "1557", - "1558", - "1559", - "1560", - "1561", "1562", "1563", "1564", @@ -172097,25 +168407,11 @@ "1569", "1570", "1571", - "1572", - "1573", - "1574", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", "1583", "1584", "1585", "1586", "1587", - "1588", - "1589", - "1590", "1591", "1592", "1593", @@ -172128,365 +168424,304 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1660", - "1661", - "1662", - "1663", - "1670", - "1671", - "1672", - "1673", - "1674", - "1675", - "1685", - "1686", - "1687", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1911", - "1912", - "1913", - "1914", - "1915", - "1927", - "1928", - "1929", "1930", + "1931", + "1932", + "1933", "2026" ], "location": { "end": { - "column": 50, - "line": 17 + "column": 32, + "line": 8 }, "start": { - "column": 32, - "line": 17 + "column": 28, + "line": 8 } } }, { - "id": "3780", - "mutatorName": "ObjectLiteral", + "id": "3790", + "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/composables/api/useWerewolvesAssistantApi.ts(21,3): error TS2741: Property 'fetchWerewolvesAssistantApi' is missing in type '{}' but required in type 'UseWerewolvesAssistantApi'.\n", + "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", "status": "CompileError", - "static": true, + "static": false, + "killedBy": [], + "coveredBy": [ + "296", + "297", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "742", + "746", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1271", + "1272", + "1273", + "1274", + "2027" + ], + "location": { + "end": { + "column": 4, + "line": 13 + }, + "start": { + "column": 56, + "line": 11 + } + } + }, + { + "id": "3791", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "296", + "297", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "742", + "746", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1271", + "1272", + "1273", + "1274", + "2027" + ], + "location": { + "end": { + "column": 58, + "line": 12 + }, + "start": { + "column": 12, + "line": 12 + } + } + }, + { + "id": "3792", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "297" + ], + "coveredBy": [ + "296", + "297", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "742", + "746", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1271", + "1272", + "1273", + "1274", + "2027" + ], + "location": { + "end": { + "column": 41, + "line": 12 + }, + "start": { + "column": 12, + "line": 12 + } + } + }, + { + "id": "3793", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "297" + ], + "coveredBy": [ + "296", + "297", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "742", + "746", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1271", + "1272", + "1273", + "1274", + "2027" + ], + "location": { + "end": { + "column": 27, + "line": 12 + }, + "start": { + "column": 12, + "line": 12 + } + } + }, + { + "id": "3794", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "297" + ], + "coveredBy": [ + "296", + "297", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "742", + "746", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1271", + "1272", + "1273", + "1274", + "2027" + ], + "location": { + "end": { + "column": 58, + "line": 12 + }, + "start": { + "column": 44, + "line": 12 + } + } + }, + { + "id": "3795", + "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", + "status": "CompileError", + "static": false, "killedBy": [], "coveredBy": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25", - "26", - "27", - "28", - "29", - "30", - "31", - "32", - "33", - "34", - "35", - "36", - "37", - "38", - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "282", - "283", - "284", "285", "286", "287", @@ -172500,27 +168735,9 @@ "295", "296", "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", + "298", + "299", + "300", "371", "372", "373", @@ -172540,169 +168757,15 @@ "387", "388", "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "438", - "439", - "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", "636", "637", "638", @@ -172744,17 +168807,6 @@ "674", "675", "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", "688", "689", "690", @@ -172771,29 +168823,6 @@ "701", "702", "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", "738", "739", "740", @@ -172803,149 +168832,21 @@ "744", "745", "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "916", - "917", - "918", - "919", - "920", - "921", - "922", - "923", - "924", - "925", - "926", - "927", - "928", - "929", - "930", - "931", - "932", + "846", + "847", + "848", + "849", + "850", + "851", "933", "934", "935", "936", "937", "938", - "953", - "961", - "962", - "963", + "939", + "940", + "941", "964", "965", "966", @@ -172957,35 +168858,6 @@ "972", "973", "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", - "999", - "1000", - "1001", - "1002", - "1003", - "1004", - "1005", - "1006", - "1007", - "1008", - "1020", - "1021", - "1022", "1023", "1024", "1025", @@ -172996,15 +168868,6 @@ "1030", "1031", "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1039", - "1040", - "1041", "1042", "1043", "1044", @@ -173014,31 +168877,6 @@ "1048", "1049", "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1077", - "1078", - "1079", "1080", "1081", "1082", @@ -173046,38 +168884,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", @@ -173087,67 +168905,25 @@ "1169", "1170", "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1196", - "1197", - "1198", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1267", - "1268", - "1269", - "1270", + "1257", + "1258", + "1259", "1271", "1272", "1273", "1274", - "1275", - "1276", - "1277", - "1278", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", "1299", "1300", "1301", @@ -173171,27 +168947,13 @@ "1319", "1320", "1321", - "1322", - "1323", - "1324", - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -173206,53 +168968,12 @@ "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1437", - "1438", - "1439", "1440", "1441", "1442", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", @@ -173261,55 +168982,16 @@ "1479", "1480", "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", - "1496", - "1497", - "1498", "1499", "1500", "1501", "1502", "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", "1521", "1522", - "1528", - "1529", - "1530", - "1531", - "1532", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -173320,22 +169002,11 @@ "1543", "1544", "1545", - "1546", - "1547", - "1548", - "1549", - "1550", - "1551", "1552", "1553", "1554", "1555", "1556", - "1557", - "1558", - "1559", - "1560", - "1561", "1562", "1563", "1564", @@ -173346,25 +169017,11 @@ "1569", "1570", "1571", - "1572", - "1573", - "1574", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", "1583", "1584", "1585", "1586", "1587", - "1588", - "1589", - "1590", "1591", "1592", "1593", @@ -173377,587 +169034,48 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1660", - "1661", - "1662", - "1663", - "1670", - "1671", - "1672", - "1673", - "1674", - "1675", - "1685", - "1686", - "1687", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1911", - "1912", - "1913", - "1914", - "1915", - "1927", - "1928", - "1929", "1930", - "2026" - ], - "location": { - "end": { - "column": 41, - "line": 21 - }, - "start": { - "column": 10, - "line": 21 - } - } - } - ], - "source": "import { createFetch } from \"ofetch\";\n\nimport { useWerewolvesAssistantApiError } from \"~/composables/api/error/useWerewolvesAssistantApiError\";\nimport { removeTrailingSlashes } from \"~/utils/url.utils\";\n\ntype UseWerewolvesAssistantApi = {\n fetchWerewolvesAssistantApi: typeof $fetch;\n};\n\nfunction useWerewolvesAssistantApi(): UseWerewolvesAssistantApi {\n const config = useRuntimeConfig();\n const { baseUrl } = config.public.werewolvesAssistantApi;\n const { handleWerewolvesAssistantApiError } = useWerewolvesAssistantApiError();\n\n const fetchWerewolvesAssistantApi = createFetch().create({\n baseURL: removeTrailingSlashes(baseUrl),\n headers: { \"Content-Type\": \"application/json\" },\n onResponseError: handleWerewolvesAssistantApiError,\n });\n\n return { fetchWerewolvesAssistantApi };\n}\n\nexport { useWerewolvesAssistantApi };" - }, - "app/composables/misc/useArrays.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3781", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "667", - "668", - "669", - "670", - "671", - "672", - "673", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1722", - "1723", - "1724", - "1725", - "1726", - "2028", - "2029" - ], - "location": { - "end": { - "column": 2, - "line": 10 - }, - "start": { - "column": 33, - "line": 5 - } - } - }, - { - "id": "3782", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "667", - "668", - "669", - "670", - "671", - "672", - "673", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1722", - "1723", - "1724", - "1725", - "1726", - "2028", - "2029" + "1931", + "1932", + "1933", + "2025", + "2026", + "2027" ], "location": { "end": { "column": 4, - "line": 8 - }, - "start": { - "column": 64, - "line": 6 - } - } - }, - { - "id": "3783", - "mutatorName": "ArrayDeclaration", - "replacement": "[]", - "statusReason": "Snapshot `Game Fox May Have Sniffed Event Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "800" - ], - "coveredBy": [ - "370", - "371", - "372", - "373", - "377", - "667", - "668", - "669", - "670", - "671", - "672", - "673", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "901", - "903", - "1276", - "1278", - "1511", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1726", - "2029" - ], - "location": { - "end": { - "column": 36, - "line": 7 - }, - "start": { - "column": 29, - "line": 7 - } - } - }, - { - "id": "3784", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "669", - "670", - "805", - "806", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1722", - "1723", - "1724", - "1725", - "1726", - "2028" - ], - "location": { - "end": { - "column": 41, - "line": 7 - }, - "start": { - "column": 39, - "line": 7 - } - } - }, - { - "id": "3785", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "667", - "668", - "669", - "670", - "671", - "672", - "673", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1722", - "1723", - "1724", - "1725", - "1726", - "2028", - "2029" - ], - "location": { - "end": { - "column": 22, - "line": 9 + "line": 17 }, "start": { "column": 10, - "line": 9 + "line": 14 } } } ], - "source": "type UseArrays = {\n insertIf: (mustBeInserted: boolean, value: T) => T[];\n};\n\nfunction useArrays(): UseArrays {\n function insertIf(mustBeInserted: boolean, value: T): T[] {\n return mustBeInserted ? [value] : [];\n }\n return { insertIf };\n}\n\nexport { useArrays };" + "source": "type UseStrings = {\n convertBooleanAsAffirmativeString: (value: boolean) => string;\n lowerCaseFirstLetter: (value: string) => string;\n};\n\nfunction useStrings(): UseStrings {\n function convertBooleanAsAffirmativeString(value: boolean): \"yes\" | \"no\" {\n return value ? \"yes\" : \"no\";\n }\n\n function lowerCaseFirstLetter(value: string): string {\n return value.charAt(0).toLowerCase() + value.slice(1);\n }\n return {\n convertBooleanAsAffirmativeString,\n lowerCaseFirstLetter,\n };\n}\n\nexport { useStrings };" }, - "app/composables/misc/useStrings.ts": { + "app/composables/misc/useTimers.ts": { "language": "typescript", "mutants": [ { - "id": "3786", + "id": "3796", "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", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "368", - "369", - "370", "371", "372", "373", @@ -173974,21 +169092,9 @@ "384", "385", "386", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "636", - "637", - "638", + "387", + "388", + "389", "639", "640", "641", @@ -174024,9 +169130,9 @@ "671", "672", "673", - "685", - "686", - "687", + "674", + "675", + "676", "688", "689", "690", @@ -174040,33 +169146,15 @@ "698", "699", "700", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "843", - "844", - "845", + "701", + "702", + "703", "846", "847", "848", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -174075,9 +169163,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -174085,18 +169173,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -174104,46 +169192,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1268", - "1269", - "1270", - "1271", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -174164,16 +169248,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -174185,33 +169269,33 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", + "1391", + "1392", + "1393", "1440", "1441", "1442", - "1471", - "1472", - "1473", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -174219,14 +169303,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -174234,14 +169318,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -174254,43 +169338,43 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2022", - "2023", - "2024" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { "column": 2, - "line": 18 + "line": 24 }, "start": { - "column": 35, - "line": 6 + "column": 33, + "line": 5 } } }, { - "id": "3787", + "id": "3797", "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", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -174319,11 +169403,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -174337,14 +169421,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -174353,9 +169437,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -174363,18 +169447,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -174382,42 +169466,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -174438,16 +169522,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -174459,27 +169543,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -174487,14 +169571,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -174502,14 +169586,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -174522,42 +169606,46 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2022", - "2023" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { "column": 4, - "line": 9 + "line": 22 }, "start": { - "column": 76, - "line": 7 + "column": 62, + "line": 9 } } }, { - "id": "3788", - "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", - "status": "CompileError", + "id": "3798", + "mutatorName": "ArithmeticOperator", + "replacement": "seconds * secondsInOneMinute", + "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "1930" + ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -174586,11 +169674,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -174604,14 +169692,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -174620,9 +169708,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -174630,18 +169718,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -174649,42 +169737,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -174705,16 +169793,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -174726,27 +169814,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -174754,14 +169842,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -174769,14 +169857,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -174789,41 +169877,46 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2022" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { - "column": 25, - "line": 8 + "column": 60, + "line": 10 }, "start": { - "column": 20, - "line": 8 + "column": 32, + "line": 10 } } }, { - "id": "3789", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "373", - "636", - "637", - "638", + "id": "3799", + "mutatorName": "ArithmeticOperator", + "replacement": "seconds * secondsInOneMinute", + "statusReason": "expected { …(3) } to strictly equal { …(3) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "846" + ], + "coveredBy": [ + "376", "639", "640", "641", @@ -174852,11 +169945,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -174870,14 +169963,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -174886,9 +169979,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -174896,18 +169989,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -174915,42 +170008,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -174971,16 +170064,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -174992,27 +170085,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -175020,14 +170113,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -175035,14 +170128,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -175055,351 +170148,46 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2023" - ], - "location": { - "end": { - "column": 32, - "line": 8 - }, - "start": { - "column": 28, - "line": 8 - } - } - }, - { - "id": "3790", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "293", - "294", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "739", - "743", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1268", - "1269", - "1270", - "1271", - "2024" - ], - "location": { - "end": { - "column": 4, - "line": 13 - }, - "start": { - "column": 56, - "line": 11 - } - } - }, - { - "id": "3791", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "293", - "294", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "739", - "743", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1268", - "1269", - "1270", - "1271", - "2024" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { "column": 58, - "line": 12 - }, - "start": { - "column": 12, - "line": 12 - } - } - }, - { - "id": "3792", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "294" - ], - "coveredBy": [ - "293", - "294", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "739", - "743", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1268", - "1269", - "1270", - "1271", - "2024" - ], - "location": { - "end": { - "column": 41, - "line": 12 - }, - "start": { - "column": 12, - "line": 12 - } - } - }, - { - "id": "3793", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "294" - ], - "coveredBy": [ - "293", - "294", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "739", - "743", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1268", - "1269", - "1270", - "1271", - "2024" - ], - "location": { - "end": { - "column": 27, - "line": 12 + "line": 11 }, "start": { - "column": 12, - "line": 12 + "column": 30, + "line": 11 } } }, { - "id": "3794", - "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}", + "id": "3800", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "expected { …(3) } to strictly equal { …(3) }", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "294" - ], - "coveredBy": [ - "293", - "294", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "739", - "743", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1268", - "1269", - "1270", - "1271", - "2024" + "846" ], - "location": { - "end": { - "column": 58, - "line": 12 - }, - "start": { - "column": 44, - "line": 12 - } - } - }, - { - "id": "3795", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "636", - "637", - "638", "639", "640", "641", @@ -175431,13 +170219,8 @@ "667", "668", "669", - "670", - "671", - "672", - "673", - "685", - "686", - "687", + "674", + "675", "688", "689", "690", @@ -175451,33 +170234,14 @@ "698", "699", "700", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "843", - "844", - "845", + "701", + "702", + "703", "846", - "847", "848", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -175486,9 +170250,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -175496,18 +170260,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -175515,46 +170279,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1268", - "1269", - "1270", - "1271", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -175575,16 +170335,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -175596,33 +170356,27 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", - "1440", - "1441", + "1391", + "1392", + "1393", "1442", - "1471", - "1472", - "1473", - "1474", - "1475", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -175630,14 +170384,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -175645,14 +170399,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -175665,67 +170419,46 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2022", - "2023", - "2024" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { - "column": 4, - "line": 17 + "column": 48, + "line": 12 }, "start": { - "column": 10, - "line": 14 + "column": 28, + "line": 12 } } - } - ], - "source": "type UseStrings = {\n convertBooleanAsAffirmativeString: (value: boolean) => string;\n lowerCaseFirstLetter: (value: string) => string;\n};\n\nfunction useStrings(): UseStrings {\n function convertBooleanAsAffirmativeString(value: boolean): \"yes\" | \"no\" {\n return value ? \"yes\" : \"no\";\n }\n\n function lowerCaseFirstLetter(value: string): string {\n return value.charAt(0).toLowerCase() + value.slice(1);\n }\n return {\n convertBooleanAsAffirmativeString,\n lowerCaseFirstLetter,\n };\n}\n\nexport { useStrings };" - }, - "app/composables/misc/useTimers.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "3796", - "mutatorName": "BlockStatement", + "id": "3801", + "mutatorName": "ObjectLiteral", "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", - "status": "CompileError", + "statusReason": "expected 'shared.time.minute, {}, 1' to be 'shared.time.minute, {\"count\":1}, 1' // Object.is equality", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "2015" + ], "coveredBy": [ - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "636", - "637", - "638", "639", "640", "641", @@ -175757,13 +170490,8 @@ "667", "668", "669", - "670", - "671", - "672", - "673", - "685", - "686", - "687", + "674", + "675", "688", "689", "690", @@ -175777,15 +170505,14 @@ "698", "699", "700", - "843", - "844", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -175794,9 +170521,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -175804,18 +170531,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -175823,42 +170550,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -175879,16 +170606,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -175900,33 +170627,27 @@ "1388", "1389", "1390", - "1437", - "1438", - "1439", - "1440", - "1441", + "1391", + "1392", + "1393", "1442", - "1471", - "1472", - "1473", - "1474", - "1475", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -175934,14 +170655,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -175949,14 +170670,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -175969,43 +170690,46 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { - "column": 2, - "line": 24 + "column": 68, + "line": 12 }, "start": { - "column": 33, - "line": 5 + "column": 50, + "line": 12 } } }, { - "id": "3797", - "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", - "status": "CompileError", + "id": "3802", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "expected ', {\"count\":30}, 30' to be 'shared.time.second, {\"count\":30}, 30' // Object.is equality", + "status": "Killed", + "testsCompleted": 16, "static": false, - "killedBy": [], + "killedBy": [ + "2016" + ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -176034,11 +170758,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -176052,14 +170776,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -176068,9 +170792,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -176078,18 +170802,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -176097,42 +170821,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -176153,16 +170877,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -176174,27 +170898,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -176202,14 +170926,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -176217,14 +170941,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -176237,46 +170961,46 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { - "column": 4, - "line": 22 + "column": 48, + "line": 13 }, "start": { - "column": 62, - "line": 9 + "column": 28, + "line": 13 } } }, { - "id": "3798", - "mutatorName": "ArithmeticOperator", - "replacement": "seconds * secondsInOneMinute", - "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", + "id": "3803", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "expected 'shared.time.second, {}, 30' to be 'shared.time.second, {\"count\":30}, 30' // Object.is equality", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 16, "static": false, "killedBy": [ - "1927" + "2016" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -176305,11 +171029,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -176323,14 +171047,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -176339,9 +171063,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -176349,18 +171073,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -176368,42 +171092,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -176424,16 +171148,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -176445,27 +171169,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -176473,14 +171197,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -176488,14 +171212,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -176508,46 +171232,46 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { - "column": 60, - "line": 10 + "column": 77, + "line": 13 }, "start": { - "column": 32, - "line": 10 + "column": 50, + "line": 13 } } }, { - "id": "3799", - "mutatorName": "ArithmeticOperator", - "replacement": "seconds * secondsInOneMinute", - "statusReason": "expected { …(3) } to strictly equal { …(3) }", + "id": "3804", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected 'shared.time.second, {\"count\":0}, 0' to be 'shared.time.minute, {\"count\":1}, 1' // Object.is equality", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "843" + "2015" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -176576,11 +171300,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -176594,14 +171318,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -176610,9 +171334,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -176620,18 +171344,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -176639,42 +171363,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -176695,16 +171419,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -176716,27 +171440,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -176744,14 +171468,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -176759,14 +171483,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -176779,46 +171503,46 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { - "column": 58, - "line": 11 + "column": 22, + "line": 15 }, "start": { - "column": 30, - "line": 11 + "column": 9, + "line": 15 } } }, { - "id": "3800", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "expected { …(3) } to strictly equal { …(3) }", + "id": "3805", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected 'shared.time.minute, {\"count\":0}, 0 sh…' to be 'shared.time.second, {\"count\":30}, 30' // Object.is equality", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "843" + "2016" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -176847,11 +171571,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -176865,14 +171589,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -176881,9 +171605,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -176891,18 +171615,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -176910,42 +171634,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -176966,16 +171690,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -176987,27 +171711,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -177015,14 +171739,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -177030,14 +171754,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -177050,46 +171774,46 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { - "column": 48, - "line": 12 + "column": 22, + "line": 15 }, "start": { - "column": 28, - "line": 12 + "column": 9, + "line": 15 } } }, { - "id": "3801", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "expected 'shared.time.minute, {}, 1' to be 'shared.time.minute, {\"count\":1}, 1' // Object.is equality", + "id": "3806", + "mutatorName": "EqualityOperator", + "replacement": "minutes !== 0", + "statusReason": "expected 'shared.time.second, {\"count\":0}, 0' to be 'shared.time.minute, {\"count\":1}, 1' // Object.is equality", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "2012" + "2015" ], "coveredBy": [ - "373", - "636", - "637", - "638", + "376", "639", "640", "641", @@ -177118,11 +171842,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -177136,14 +171860,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -177152,9 +171876,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -177162,18 +171886,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -177181,42 +171905,42 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", "1254", "1255", "1256", - "1296", - "1297", - "1298", + "1257", + "1258", + "1259", "1299", "1300", "1301", @@ -177237,16 +171961,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -177258,27 +171982,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -177286,14 +172010,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -177301,14 +172025,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -177321,46 +172045,86 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { - "column": 68, - "line": 12 + "column": 22, + "line": 15 }, "start": { - "column": 50, - "line": 12 + "column": 9, + "line": 15 } } }, { - "id": "3802", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "expected ', {\"count\":30}, 30' to be 'shared.time.second, {\"count\":30}, 30' // Object.is equality", + "id": "3807", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected 'shared.time.minute, {\"count\":0}, 0 sh…' to be 'shared.time.second, {\"count\":30}, 30' // Object.is equality", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "2016" + ], + "coveredBy": [ + "376", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "2016" + ], + "location": { + "end": { + "column": 6, + "line": 17 + }, + "start": { + "column": 24, + "line": 15 + } + } + }, + { + "id": "3808", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected 'shared.time.minute, {\"count\":1}, 1' to be 'shared.time.minute, {\"count\":1}, 1 sh…' // Object.is equality", "status": "Killed", "testsCompleted": 16, "static": false, "killedBy": [ - "2013" + "2017" ], "coveredBy": [ - "373", - "636", - "637", - "638", "639", "640", "641", @@ -177389,11 +172153,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -177407,14 +172171,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -177423,9 +172187,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -177433,18 +172197,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -177452,51 +172216,37 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", + "1205", + "1206", + "1207", + "1259", "1308", "1309", "1310", @@ -177508,16 +172258,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -177529,27 +172279,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -177557,14 +172307,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -177572,14 +172322,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -177592,46 +172342,44 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015", + "2017" ], "location": { "end": { - "column": 48, - "line": 13 + "column": 31, + "line": 18 }, "start": { - "column": 28, - "line": 13 + "column": 9, + "line": 18 } } }, { - "id": "3803", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "expected 'shared.time.second, {}, 30' to be 'shared.time.second, {\"count\":30}, 30' // Object.is equality", + "id": "3809", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", - "testsCompleted": 16, + "testsCompleted": 1, "static": false, "killedBy": [ - "2013" + "1930" ], "coveredBy": [ - "373", - "636", - "637", - "638", "639", "640", "641", @@ -177660,11 +172408,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -177678,14 +172426,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -177694,9 +172442,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -177704,18 +172452,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -177723,51 +172471,37 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", + "1205", + "1206", + "1207", + "1259", "1308", "1309", "1310", @@ -177779,16 +172513,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -177800,27 +172534,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", + "1501", + "1502", + "1503", + "1521", + "1522", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -177828,14 +172562,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -177843,14 +172577,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -177863,46 +172597,44 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015", + "2017" ], "location": { "end": { - "column": 77, - "line": 13 + "column": 31, + "line": 18 }, "start": { - "column": 50, - "line": 13 + "column": 9, + "line": 18 } } }, { - "id": "3804", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected 'shared.time.second, {\"count\":0}, 0' to be 'shared.time.minute, {\"count\":1}, 1' // Object.is equality", + "id": "3810", + "mutatorName": "EqualityOperator", + "replacement": "remainingSeconds !== 0", + "statusReason": "expected 'shared.time.minute, {\"count\":1}, 1 sh…' to be 'shared.time.minute, {\"count\":1}, 1' // Object.is equality", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "2012" + "2015" ], "coveredBy": [ - "373", - "636", - "637", - "638", "639", "640", "641", @@ -177931,11 +172663,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -177949,14 +172681,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -177965,9 +172697,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -177975,18 +172707,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -177994,51 +172726,37 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", + "1205", + "1206", + "1207", + "1259", "1308", "1309", "1310", @@ -178050,16 +172768,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -178071,27 +172789,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -178099,14 +172817,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -178114,14 +172832,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -178134,46 +172852,44 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015", + "2017" ], "location": { "end": { - "column": 22, - "line": 15 + "column": 31, + "line": 18 }, "start": { "column": 9, - "line": 15 + "line": 18 } } }, { - "id": "3805", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected 'shared.time.minute, {\"count\":0}, 0 sh…' to be 'shared.time.second, {\"count\":30}, 30' // Object.is equality", + "id": "3811", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected { …(3) } to strictly equal { …(3) }", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "2013" + "846" ], "coveredBy": [ - "373", - "636", - "637", - "638", "639", "640", "641", @@ -178202,11 +172918,11 @@ "664", "665", "666", - "671", - "672", - "685", - "686", - "687", + "667", + "668", + "669", + "674", + "675", "688", "689", "690", @@ -178220,14 +172936,14 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", - "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -178236,9 +172952,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -178246,18 +172962,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -178265,51 +172981,37 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", + "1205", + "1206", + "1207", + "1259", "1308", "1309", "1310", @@ -178321,16 +173023,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -178342,27 +173044,27 @@ "1388", "1389", "1390", - "1439", - "1441", - "1473", - "1474", - "1475", + "1391", + "1392", + "1393", + "1442", + "1444", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -178370,14 +173072,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -178385,14 +173087,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -178405,357 +173107,109 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2013", - "2014" + "1931", + "1932", + "1933", + "2015" ], "location": { "end": { - "column": 22, - "line": 15 + "column": 6, + "line": 20 }, "start": { - "column": 9, - "line": 15 + "column": 33, + "line": 18 } } }, { - "id": "3806", - "mutatorName": "EqualityOperator", - "replacement": "minutes !== 0", - "statusReason": "expected 'shared.time.second, {\"count\":0}, 0' to be 'shared.time.minute, {\"count\":1}, 1' // Object.is equality", + "id": "3812", + "mutatorName": "StringLiteral", + "replacement": "``", + "statusReason": "expected '' to be 'shared.time.minute, {\"count\":1}, 1 sh…' // Object.is equality", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "2012" + "2017" ], "coveredBy": [ - "373", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "671", - "672", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "843", - "845", - "846", - "847", - "848", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1439", - "1441", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1580", - "1581", - "1582", - "1583", - "1584", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1927", - "1928", - "1929", - "1930", - "2012", - "2013", - "2014" + "2017" ], "location": { "end": { - "column": 22, - "line": 15 + "column": 64, + "line": 21 }, "start": { - "column": 9, - "line": 15 + "column": 12, + "line": 21 } } }, { - "id": "3807", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected 'shared.time.minute, {\"count\":0}, 0 sh…' to be 'shared.time.second, {\"count\":30}, 30' // Object.is equality", + "id": "3813", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "expected 'shared.time.minute, {\"count\":1}, 1 s…' to be 'shared.time.minute, {\"count\":1}, 1 sh…' // Object.is equality", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "2013" + "2017" ], "coveredBy": [ - "373", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "2013" + "2017" ], "location": { "end": { - "column": 6, - "line": 17 + "column": 45, + "line": 21 }, "start": { - "column": 24, - "line": 15 + "column": 33, + "line": 21 } } }, { - "id": "3808", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected 'shared.time.minute, {\"count\":1}, 1' to be 'shared.time.minute, {\"count\":1}, 1 sh…' // Object.is equality", - "status": "Killed", - "testsCompleted": 16, + "id": "3814", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "2014" - ], + "killedBy": [], "coveredBy": [ - "636", - "637", - "638", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", "639", "640", "641", @@ -178784,11 +173238,16 @@ "664", "665", "666", + "667", + "668", + "669", + "670", "671", "672", - "685", - "686", - "687", + "673", + "674", + "675", + "676", "688", "689", "690", @@ -178802,14 +173261,15 @@ "698", "699", "700", - "843", - "845", + "701", + "702", + "703", "846", "847", "848", - "961", - "962", - "963", + "849", + "850", + "851", "964", "965", "966", @@ -178818,9 +173278,9 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", "1023", "1024", "1025", @@ -178828,18 +173288,18 @@ "1027", "1028", "1029", - "1039", - "1040", - "1041", + "1030", + "1031", + "1032", "1042", "1043", "1044", "1045", "1046", "1047", - "1077", - "1078", - "1079", + "1048", + "1049", + "1050", "1080", "1081", "1082", @@ -178847,34 +173307,48 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1160", - "1161", - "1162", + "1114", + "1115", + "1116", "1163", "1164", "1165", "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", "1199", "1200", "1201", "1202", "1203", "1204", + "1205", + "1206", + "1207", + "1254", + "1255", "1256", + "1257", + "1258", + "1259", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", "1305", "1306", "1307", @@ -178889,16 +173363,16 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", "1380", "1381", "1382", @@ -178910,27 +173384,33 @@ "1388", "1389", "1390", - "1439", + "1391", + "1392", + "1393", + "1440", "1441", - "1473", + "1442", + "1443", + "1444", + "1445", "1474", "1475", "1476", "1477", "1478", - "1496", - "1497", - "1498", + "1479", + "1480", + "1481", "1499", "1500", - "1518", - "1519", - "1520", + "1501", + "1502", + "1503", "1521", "1522", - "1533", - "1534", - "1535", + "1523", + "1524", + "1525", "1536", "1537", "1538", @@ -178938,14 +173418,14 @@ "1540", "1541", "1542", - "1549", - "1550", - "1551", + "1543", + "1544", + "1545", "1552", "1553", - "1559", - "1560", - "1561", + "1554", + "1555", + "1556", "1562", "1563", "1564", @@ -178953,14 +173433,14 @@ "1566", "1567", "1568", - "1580", - "1581", - "1582", + "1569", + "1570", + "1571", "1583", "1584", - "1588", - "1589", - "1590", + "1585", + "1586", + "1587", "1591", "1592", "1593", @@ -178973,299 +173453,437 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", "1930", - "2012", - "2014" + "1931", + "1932", + "1933", + "2015", + "2016", + "2017" ], "location": { "end": { - "column": 31, - "line": 18 + "column": 38, + "line": 23 }, "start": { - "column": 9, - "line": 18 + "column": 10, + "line": 23 } } - }, + } + ], + "source": "type UseTimers = {\n getSecondsInMinutesLabel: (seconds: number) => string;\n};\n\nfunction useTimers(): UseTimers {\n const secondsInOneMinute = 60;\n const { t } = useI18n();\n\n function getSecondsInMinutesLabel(seconds: number): string {\n const minutes = Math.floor(seconds / secondsInOneMinute);\n const remainingSeconds = seconds % secondsInOneMinute;\n const minutesLabel = t(\"shared.time.minute\", { count: minutes }, minutes);\n const secondsLabel = t(\"shared.time.second\", { count: remainingSeconds }, remainingSeconds);\n\n if (minutes === 0) {\n return secondsLabel;\n }\n if (remainingSeconds === 0) {\n return minutesLabel;\n }\n return `${minutesLabel} ${t(\"shared.and\")} ${secondsLabel}`;\n }\n return { getSecondsInMinutesLabel };\n}\n\nexport { useTimers };" + }, + "app/composables/prime-vue/usePrimeVueToasts.ts": { + "language": "typescript", + "mutants": [ { - "id": "3809", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "Snapshot `Game Lobby Options Hub Tab View Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, + "id": "3815", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "1927" - ], + "killedBy": [], "coveredBy": [ - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "671", - "672", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "843", - "845", - "846", - "847", - "848", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1256", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1439", - "1441", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1580", - "1581", - "1582", - "1583", - "1584", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1927", - "1928", - "1929", - "1930", - "2012", - "2014" - ], - "location": { - "end": { - "column": 31, - "line": 18 - }, - "start": { - "column": 9, - "line": 18 - } - } - }, - { - "id": "3810", - "mutatorName": "EqualityOperator", - "replacement": "remainingSeconds !== 0", - "statusReason": "expected 'shared.time.minute, {\"count\":1}, 1 sh…' to be 'shared.time.minute, {\"count\":1}, 1' // Object.is equality", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "2012" - ], - "coveredBy": [ - "636", - "637", - "638", + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", "639", "640", "641", @@ -179294,8 +173912,24 @@ "664", "665", "666", + "667", + "668", + "669", + "670", "671", "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", "685", "686", "687", @@ -179312,14 +173946,175 @@ "698", "699", "700", + "701", + "702", + "703", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", + "800", + "801", + "802", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", + "826", + "827", + "828", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", "843", + "844", "845", - "846", - "847", - "848", - "961", - "962", - "963", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "919", + "920", + "921", + "922", + "923", + "924", + "925", + "926", + "927", + "928", + "929", + "930", + "931", + "932", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -179328,9 +174123,38 @@ "969", "970", "971", - "1020", - "1021", - "1022", + "972", + "973", + "974", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1002", + "1003", + "1004", + "1005", + "1006", + "1007", + "1008", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -179338,6 +174162,15 @@ "1027", "1028", "1029", + "1030", + "1031", + "1032", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", "1039", "1040", "1041", @@ -179347,6 +174180,31 @@ "1045", "1046", "1047", + "1048", + "1049", + "1050", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", "1077", "1078", "1079", @@ -179357,15 +174215,35 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", "1160", "1161", "1162", @@ -179375,16 +174253,76 @@ "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", + "1205", + "1206", + "1207", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1254", + "1255", "1256", + "1257", + "1258", + "1259", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", "1305", "1306", "1307", @@ -179399,16 +174337,30 @@ "1316", "1317", "1318", - "1335", - "1336", - "1337", + "1319", + "1320", + "1321", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", "1338", "1339", "1340", "1341", - "1377", - "1378", - "1379", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -179420,24 +174372,110 @@ "1388", "1389", "1390", + "1391", + "1392", + "1393", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", "1439", + "1440", "1441", + "1442", + "1443", + "1444", + "1445", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", "1473", "1474", "1475", "1476", "1477", "1478", + "1479", + "1480", + "1481", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", "1496", "1497", "1498", "1499", "1500", + "1501", + "1502", + "1503", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1515", + "1516", + "1517", "1518", "1519", "1520", "1521", "1522", + "1523", + "1524", + "1525", + "1531", + "1532", "1533", "1534", "1535", @@ -179448,11 +174486,22 @@ "1540", "1541", "1542", + "1543", + "1544", + "1545", + "1546", + "1547", + "1548", "1549", "1550", "1551", "1552", "1553", + "1554", + "1555", + "1556", + "1557", + "1558", "1559", "1560", "1561", @@ -179463,11 +174512,25 @@ "1566", "1567", "1568", + "1569", + "1570", + "1571", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1578", + "1579", "1580", "1581", "1582", "1583", "1584", + "1585", + "1586", + "1587", "1588", "1589", "1590", @@ -179483,642 +174546,481 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", - "1927", - "1928", - "1929", + "1616", + "1617", + "1618", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1663", + "1664", + "1665", + "1666", + "1673", + "1674", + "1675", + "1676", + "1677", + "1678", + "1688", + "1689", + "1690", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1742", + "1743", + "1744", + "1745", + "1746", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1914", + "1915", + "1916", + "1917", + "1918", "1930", - "2012", - "2014" + "1931", + "1932", + "1933", + "2029" ], "location": { "end": { - "column": 31, - "line": 18 + "column": 2, + "line": 46 }, "start": { - "column": 9, - "line": 18 + "column": 49, + "line": 14 } } }, { - "id": "3811", + "id": "3816", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected { …(3) } to strictly equal { …(3) }", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "843" + "1742" ], "coveredBy": [ - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "671", - "672", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "843", - "845", - "846", - "847", - "848", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1256", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1439", - "1441", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1580", - "1581", - "1582", - "1583", - "1584", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1927", - "1928", - "1929", - "1930", - "2012" + "1742", + "1743", + "1744", + "1745", + "1746" + ], + "location": { + "end": { + "column": 4, + "line": 22 + }, + "start": { + "column": 57, + "line": 17 + } + } + }, + { + "id": "3817", + "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 {}", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1742" + ], + "coveredBy": [ + "1742", + "1743", + "1744", + "1745", + "1746" ], "location": { "end": { "column": 6, - "line": 20 + "line": 21 }, "start": { - "column": 33, + "column": 15, "line": 18 } } }, { - "id": "3812", - "mutatorName": "StringLiteral", - "replacement": "``", - "statusReason": "expected '' to be 'shared.time.minute, {\"count\":1}, 1 sh…' // Object.is equality", + "id": "3818", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "2014" + "1743" ], "coveredBy": [ - "2014" + "1743" ], "location": { "end": { + "column": 4, + "line": 26 + }, + "start": { "column": 64, - "line": 21 + "line": 24 + } + } + }, + { + "id": "3819", + "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}", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1743" + ], + "coveredBy": [ + "1743" + ], + "location": { + "end": { + "column": 49, + "line": 25 }, "start": { - "column": 12, - "line": 21 + "column": 14, + "line": 25 } } }, { - "id": "3813", + "id": "3820", "mutatorName": "StringLiteral", "replacement": "\"\"", - "statusReason": "expected 'shared.time.minute, {\"count\":1}, 1 s…' to be 'shared.time.minute, {\"count\":1}, 1 sh…' // Object.is equality", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1743" + ], + "location": { + "end": { + "column": 35, + "line": 25 + }, + "start": { + "column": 26, + "line": 25 + } + } + }, + { + "id": "3821", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "2014" + "1744" ], "coveredBy": [ - "2014" + "1744" ], "location": { "end": { - "column": 45, - "line": 21 + "column": 4, + "line": 30 }, "start": { - "column": 33, - "line": 21 + "column": 61, + "line": 28 } } }, { - "id": "3814", + "id": "3822", "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", + "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}", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1744" + ], + "coveredBy": [ + "1744" + ], + "location": { + "end": { + "column": 46, + "line": 29 + }, + "start": { + "column": 14, + "line": 29 + } + } + }, + { + "id": "3823", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "667", - "668", - "669", - "670", - "671", - "672", - "673", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "843", - "844", - "845", - "846", - "847", - "848", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1580", - "1581", - "1582", - "1583", - "1584", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1927", - "1928", - "1929", - "1930", - "2012", - "2013", - "2014" + "1744" ], "location": { "end": { - "column": 38, - "line": 23 + "column": 32, + "line": 29 }, "start": { - "column": 10, - "line": 23 + "column": 26, + "line": 29 } } - } - ], - "source": "type UseTimers = {\n getSecondsInMinutesLabel: (seconds: number) => string;\n};\n\nfunction useTimers(): UseTimers {\n const secondsInOneMinute = 60;\n const { t } = useI18n();\n\n function getSecondsInMinutesLabel(seconds: number): string {\n const minutes = Math.floor(seconds / secondsInOneMinute);\n const remainingSeconds = seconds % secondsInOneMinute;\n const minutesLabel = t(\"shared.time.minute\", { count: minutes }, minutes);\n const secondsLabel = t(\"shared.time.second\", { count: remainingSeconds }, remainingSeconds);\n\n if (minutes === 0) {\n return secondsLabel;\n }\n if (remainingSeconds === 0) {\n return minutesLabel;\n }\n return `${minutesLabel} ${t(\"shared.and\")} ${secondsLabel}`;\n }\n return { getSecondsInMinutesLabel };\n}\n\nexport { useTimers };" - }, - "app/composables/prime-vue/usePrimeVueToasts.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "3815", + "id": "3824", "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", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1745" + ], + "coveredBy": [ + "1745" + ], + "location": { + "end": { + "column": 4, + "line": 34 + }, + "start": { + "column": 61, + "line": 32 + } + } + }, + { + "id": "3825", + "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}", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1745" + ], + "coveredBy": [ + "1745" + ], + "location": { + "end": { + "column": 46, + "line": 33 + }, + "start": { + "column": 14, + "line": 33 + } + } + }, + { + "id": "3826", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1745" + ], + "location": { + "end": { + "column": 32, + "line": 33 + }, + "start": { + "column": 26, + "line": 33 + } + } + }, + { + "id": "3827", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1746" + ], + "coveredBy": [ + "1746" + ], + "location": { + "end": { + "column": 4, + "line": 38 + }, + "start": { + "column": 62, + "line": 36 + } + } + }, + { + "id": "3828", + "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}", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1746" + ], + "coveredBy": [ + "1746" + ], + "location": { + "end": { + "column": 47, + "line": 37 + }, + "start": { + "column": 14, + "line": 37 + } + } + }, + { + "id": "3829", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1746" + ], + "location": { + "end": { + "column": 33, + "line": 37 + }, + "start": { + "column": 26, + "line": 37 + } + } + }, + { + "id": "3830", + "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", "status": "CompileError", "static": false, "killedBy": [], @@ -180229,36 +175131,6 @@ "103", "104", "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", "164", "165", "166", @@ -180282,6 +175154,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -180289,29 +175184,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -180354,9 +175226,9 @@ "279", "280", "281", - "368", - "369", - "370", + "282", + "283", + "284", "371", "372", "373", @@ -180395,9 +175267,9 @@ "406", "407", "408", - "424", - "425", - "426", + "409", + "410", + "411", "427", "428", "429", @@ -180539,9 +175411,9 @@ "565", "566", "567", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -180614,9 +175486,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -180663,9 +175535,9 @@ "768", "769", "770", - "785", - "786", - "787", + "771", + "772", + "773", "788", "789", "790", @@ -180687,9 +175559,9 @@ "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -180715,10 +175587,10 @@ "840", "841", "842", - "885", - "886", - "887", - "888", + "843", + "844", + "845", + "888", "889", "890", "891", @@ -180769,10 +175641,10 @@ "936", "937", "938", - "953", - "961", - "962", - "963", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -180800,9 +175672,9 @@ "988", "989", "990", - "999", - "1000", - "1001", + "991", + "992", + "993", "1002", "1003", "1004", @@ -180810,9 +175682,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -180851,9 +175723,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -180873,18 +175745,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -180920,24 +175792,24 @@ "1175", "1176", "1177", - "1196", - "1197", - "1198", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", + "1205", + "1206", + "1207", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -180948,16 +175820,16 @@ "1240", "1241", "1242", + "1243", "1244", - "1251", - "1252", - "1253", + "1245", + "1247", "1254", "1255", "1256", - "1267", - "1268", - "1269", + "1257", + "1258", + "1259", "1270", "1271", "1272", @@ -180972,9 +175844,9 @@ "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -181001,24 +175873,24 @@ "1322", "1323", "1324", - "1335", - "1336", - "1337", + "1325", + "1326", + "1327", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -181052,9 +175924,9 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", "1437", @@ -181063,15 +175935,15 @@ "1440", "1441", "1442", - "1448", - "1449", - "1450", + "1443", + "1444", + "1445", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", @@ -181129,9 +176001,9 @@ "1520", "1521", "1522", - "1528", - "1529", - "1530", + "1523", + "1524", + "1525", "1531", "1532", "1533", @@ -181204,19 +176076,19 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", "1619", - "1626", - "1650", - "1651", - "1652", + "1620", + "1621", + "1622", + "1629", "1653", "1654", "1655", @@ -181228,38 +176100,38 @@ "1661", "1662", "1663", - "1670", - "1671", - "1672", + "1664", + "1665", + "1666", "1673", "1674", "1675", - "1685", - "1686", - "1687", + "1676", + "1677", + "1678", "1688", "1689", "1690", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", "1739", @@ -181267,525 +176139,1512 @@ "1741", "1742", "1743", - "1754", - "1755", - "1756", + "1744", + "1745", + "1746", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", "1911", - "1912", - "1913", "1914", "1915", - "1927", - "1928", - "1929", + "1916", + "1917", + "1918", "1930", - "2026" + "1931", + "1932", + "1933", + "2029" + ], + "location": { + "end": { + "column": 4, + "line": 45 + }, + "start": { + "column": 10, + "line": 39 + } + } + } + ], + "source": "import type { ToastMessageOptions } from \"primevue/toast\";\nimport { useToast } from \"primevue/usetoast\";\n\nimport { DEFAULT_PRIME_VUE_TOAST_OPTIONS } from \"~/composables/prime-vue/constants/prime-vue.constants\";\n\ntype UsePrimeVueToasts = {\n addToast: (options: ToastMessageOptions) => void;\n addSuccessToast: (options: ToastMessageOptions) => void;\n addInfoToast: (options: ToastMessageOptions) => void;\n addWarnToast: (options: ToastMessageOptions) => void;\n addErrorToast: (options: ToastMessageOptions) => void;\n};\n\nfunction usePrimeVueToasts(): UsePrimeVueToasts {\n const toast = useToast();\n\n function addToast(options: ToastMessageOptions): void {\n toast.add({\n ...DEFAULT_PRIME_VUE_TOAST_OPTIONS,\n ...options,\n });\n }\n\n function addSuccessToast(options: ToastMessageOptions): void {\n addToast({ severity: \"success\", ...options });\n }\n\n function addInfoToast(options: ToastMessageOptions): void {\n addToast({ severity: \"info\", ...options });\n }\n\n function addWarnToast(options: ToastMessageOptions): void {\n addToast({ severity: \"warn\", ...options });\n }\n\n function addErrorToast(options: ToastMessageOptions): void {\n addToast({ severity: \"error\", ...options });\n }\n return {\n addToast,\n addSuccessToast,\n addInfoToast,\n addWarnToast,\n addErrorToast,\n };\n}\n\nexport { usePrimeVueToasts };" + }, + "app/composables/route/useWerewolvesAssistantRoutes.ts": { + "language": "typescript", + "mutants": [ + { + "id": "3831", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1915", + "1997", + "1998" ], "location": { "end": { "column": 2, + "line": 12 + }, + "start": { + "column": 71, + "line": 7 + } + } + }, + { + "id": "3832", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1915", + "1997", + "1998" + ], + "location": { + "end": { + "column": 72, + "line": 9 + }, + "start": { + "column": 42, + "line": 9 + } + } + }, + { + "id": "3833", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be falsy", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1998" + ], + "coveredBy": [ + "1915", + "1997", + "1998" + ], + "location": { + "end": { + "column": 72, + "line": 9 + }, + "start": { + "column": 48, + "line": 9 + } + } + }, + { + "id": "3834", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1997" + ], + "coveredBy": [ + "1915", + "1997", + "1998" + ], + "location": { + "end": { + "column": 72, + "line": 9 + }, + "start": { + "column": 48, + "line": 9 + } + } + }, + { + "id": "3835", + "mutatorName": "EqualityOperator", + "replacement": "route.name !== \"game-id\"", + "statusReason": "Snapshot `App Component > should render component without shallow and match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1915" + ], + "coveredBy": [ + "1915", + "1997", + "1998" + ], + "location": { + "end": { + "column": 72, + "line": 9 + }, + "start": { + "column": 48, + "line": 9 + } + } + }, + { + "id": "3836", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1997" + ], + "coveredBy": [ + "1915", + "1997", + "1998" + ], + "location": { + "end": { + "column": 72, + "line": 9 + }, + "start": { + "column": 63, + "line": 9 + } + } + }, + { + "id": "3837", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1915", + "1997", + "1998" + ], + "location": { + "end": { + "column": 26, + "line": 11 + }, + "start": { + "column": 10, + "line": 11 + } + } + } + ], + "source": "import type { ComputedRef } from \"vue\";\n\ntype UseWerewolvesAssistantRoutes = {\n isOnGamePage: ComputedRef;\n};\n\nfunction useWerewolvesAssistantRoutes(): UseWerewolvesAssistantRoutes {\n const route = useRoute();\n const isOnGamePage = computed(() => route.name === \"game-id\");\n\n return { isOnGamePage };\n}\n\nexport { useWerewolvesAssistantRoutes };" + }, + "app/error.vue": { + "language": "html", + "mutants": [ + { + "id": "3838", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1747" + ], + "coveredBy": [ + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" + ], + "location": { + "end": { + "column": 27, "line": 46 }, "start": { - "column": 49, - "line": 14 + "column": 20, + "line": 46 } } }, { - "id": "3816", + "id": "3839", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "1739" + "1747" ], "coveredBy": [ - "1739", - "1740", - "1741", - "1742", - "1743" + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" ], "location": { "end": { - "column": 4, - "line": 22 + "column": 2, + "line": 55 }, "start": { - "column": 57, - "line": 17 + "column": 43, + "line": 50 } } }, { - "id": "3817", - "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 {}", + "id": "3840", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected 'components.Error.pageNotFound' to be 'components.Error.unexpectedError' // Object.is equality", + "status": "Killed", + "testsCompleted": 4, + "static": false, + "killedBy": [ + "1750" + ], + "coveredBy": [ + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" + ], + "location": { + "end": { + "column": 52, + "line": 51 + }, + "start": { + "column": 7, + "line": 51 + } + } + }, + { + "id": "3841", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "1739" + "1747" ], "coveredBy": [ - "1739", - "1740", - "1741", - "1742", - "1743" + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" ], "location": { "end": { - "column": 6, - "line": 21 + "column": 52, + "line": 51 }, "start": { - "column": 15, - "line": 18 + "column": 7, + "line": 51 } } }, { - "id": "3818", + "id": "3842", + "mutatorName": "EqualityOperator", + "replacement": "props.error.statusCode !== notFoundStatusCode", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1747" + ], + "coveredBy": [ + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" + ], + "location": { + "end": { + "column": 52, + "line": 51 + }, + "start": { + "column": 7, + "line": 51 + } + } + }, + { + "id": "3843", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "1740" + "1747" ], "coveredBy": [ - "1740" + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" ], "location": { "end": { "column": 4, - "line": 26 + "line": 53 }, "start": { - "column": 64, - "line": 24 + "column": 54, + "line": 51 } } }, { - "id": "3819", - "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}", + "id": "3844", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "1740" + "1747" ], "coveredBy": [ - "1740" + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" ], "location": { "end": { - "column": 49, - "line": 25 + "column": 45, + "line": 52 }, "start": { "column": 14, - "line": 25 + "line": 52 } } }, { - "id": "3820", + "id": "3845", "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", - "status": "CompileError", + "statusReason": "expected '' to be 'components.Error.unexpectedError' // Object.is equality", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "1750" + ], "coveredBy": [ - "1740" + "1750", + "1753" ], "location": { "end": { - "column": 35, - "line": 25 + "column": 46, + "line": 54 }, "start": { - "column": 26, - "line": 25 + "column": 12, + "line": 54 } } }, { - "id": "3821", + "id": "3846", + "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", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1748" + ], + "coveredBy": [ + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" + ], + "location": { + "end": { + "column": 30, + "line": 57 + }, + "start": { + "column": 9, + "line": 57 + } + } + }, + { + "id": "3847", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "1741" + "1747" ], "coveredBy": [ - "1741" + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" ], "location": { "end": { - "column": 4, - "line": 30 + "column": 2, + "line": 64 }, "start": { - "column": 61, - "line": 28 + "column": 49, + "line": 59 } } }, { - "id": "3822", - "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}", + "id": "3848", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected 'components.Error.youAreLost' to be 'components.Error.notNormalTeamNotified' // Object.is equality", + "status": "Killed", + "testsCompleted": 7, + "static": false, + "killedBy": [ + "1753" + ], + "coveredBy": [ + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" + ], + "location": { + "end": { + "column": 52, + "line": 60 + }, + "start": { + "column": 7, + "line": 60 + } + } + }, + { + "id": "3849", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "1741" + "1747" ], "coveredBy": [ - "1741" + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" ], "location": { "end": { - "column": 46, - "line": 29 + "column": 52, + "line": 60 }, "start": { - "column": 14, - "line": 29 + "column": 7, + "line": 60 } } }, { - "id": "3823", - "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", - "status": "CompileError", + "id": "3850", + "mutatorName": "EqualityOperator", + "replacement": "props.error.statusCode !== notFoundStatusCode", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "1747" + ], "coveredBy": [ - "1741" + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" ], "location": { "end": { - "column": 32, - "line": 29 + "column": 52, + "line": 60 }, "start": { - "column": 26, - "line": 29 + "column": 7, + "line": 60 } } }, { - "id": "3824", + "id": "3851", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "1742" + "1747" ], "coveredBy": [ - "1742" + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" ], "location": { "end": { "column": 4, - "line": 34 + "line": 62 }, "start": { - "column": 61, - "line": 32 + "column": 54, + "line": 60 } } }, { - "id": "3825", - "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}", + "id": "3852", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "1742" + "1747" ], "coveredBy": [ - "1742" + "1747", + "1748", + "1749", + "1750", + "1751", + "1752", + "1753" ], "location": { "end": { - "column": 46, - "line": 33 + "column": 43, + "line": 61 }, "start": { "column": 14, - "line": 33 + "line": 61 } } }, { - "id": "3826", + "id": "3853", "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", - "status": "CompileError", + "statusReason": "expected '' to be 'components.Error.notNormalTeamNotified' // Object.is equality", + "status": "Killed", + "testsCompleted": 2, "static": false, - "killedBy": [], + "killedBy": [ + "1753" + ], "coveredBy": [ - "1742" + "1750", + "1753" ], "location": { "end": { - "column": 32, - "line": 33 + "column": 52, + "line": 63 }, "start": { - "column": 26, - "line": 33 + "column": 12, + "line": 63 } } - }, + } + ], + "source": "\n\n" + }, + "app/pages/about.vue": { + "language": "html", + "mutants": [ { - "id": "3827", - "mutatorName": "BlockStatement", + "id": "3854", + "mutatorName": "ObjectLiteral", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "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 {}", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "1743" + "1958" ], "coveredBy": [ - "1743" + "1957", + "1958", + "1959", + "1960" ], "location": { "end": { - "column": 4, - "line": 38 + "column": 2, + "line": 56 }, "start": { - "column": 62, - "line": 36 + "column": 9, + "line": 53 } } }, { - "id": "3828", + "id": "3855", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1958" + ], + "coveredBy": [ + "1957", + "1958", + "1959", + "1960" + ], + "location": { + "end": { + "column": 40, + "line": 54 + }, + "start": { + "column": 12, + "line": 54 + } + } + }, + { + "id": "3856", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1958" + ], + "coveredBy": [ + "1957", + "1958", + "1959", + "1960" + ], + "location": { + "end": { + "column": 76, + "line": 55 + }, + "start": { + "column": 9, + "line": 55 + } + } + }, + { + "id": "3857", "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}", + "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}", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "1743" + "1958" ], "coveredBy": [ - "1743" + "1957", + "1958", + "1959", + "1960" ], "location": { "end": { - "column": 47, - "line": 37 + "column": 75, + "line": 55 }, "start": { - "column": 14, - "line": 37 + "column": 10, + "line": 55 } } }, { - "id": "3829", + "id": "3858", "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", - "status": "CompileError", + "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}", + "status": "Killed", + "testsCompleted": 2, "static": false, - "killedBy": [], + "killedBy": [ + "1958" + ], "coveredBy": [ - "1743" + "1957", + "1958", + "1959", + "1960" ], "location": { "end": { - "column": 33, - "line": 37 + "column": 31, + "line": 55 }, "start": { - "column": 26, - "line": 37 + "column": 18, + "line": 55 } } }, { - "id": "3830", + "id": "3859", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1958" + ], + "coveredBy": [ + "1957", + "1958", + "1959", + "1960" + ], + "location": { + "end": { + "column": 72, + "line": 55 + }, + "start": { + "column": 44, + "line": 55 + } + } + } + ], + "source": "\n\n" + }, + "app/pages/game/[id].vue": { + "language": "html", + "mutants": [ + { + "id": "3860", "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", - "status": "CompileError", + "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 {}", + "status": "Killed", + "testsCompleted": 2, "static": false, - "killedBy": [], + "killedBy": [ + "1395" + ], + "coveredBy": [ + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405" + ], + "location": { + "end": { + "column": 2, + "line": 64 + }, + "start": { + "column": 9, + "line": 61 + } + } + }, + { + "id": "3861", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1395" + ], + "coveredBy": [ + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405" + ], + "location": { + "end": { + "column": 36, + "line": 62 + }, + "start": { + "column": 12, + "line": 62 + } + } + }, + { + "id": "3862", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1395" + ], + "coveredBy": [ + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405" + ], + "location": { + "end": { + "column": 59, + "line": 63 + }, + "start": { + "column": 9, + "line": 63 + } + } + }, + { + "id": "3863", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1395" + ], + "coveredBy": [ + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405" + ], + "location": { + "end": { + "column": 58, + "line": 63 + }, + "start": { + "column": 10, + "line": 63 + } + } + }, + { + "id": "3864", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1395" + ], + "coveredBy": [ + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405" + ], + "location": { + "end": { + "column": 26, + "line": 63 + }, + "start": { + "column": 18, + "line": 63 + } + } + }, + { + "id": "3865", + "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}", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "1395" + ], + "coveredBy": [ + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405" + ], + "location": { + "end": { + "column": 56, + "line": 63 + }, + "start": { + "column": 37, + "line": 63 + } + } + }, + { + "id": "3866", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 9, + "static": false, + "killedBy": [ + "1402" + ], + "coveredBy": [ + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405" + ], + "location": { + "end": { + "column": 2, + "line": 76 + }, + "start": { + "column": 73, + "line": 68 + } + } + }, + { + "id": "3867", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 9, + "static": false, + "killedBy": [ + "1402" + ], + "coveredBy": [ + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405" + ], + "location": { + "end": { + "column": 4, + "line": 73 + }, + "start": { + "column": 73, + "line": 69 + } + } + } + ], + "source": "\n\n" + }, + "app/pages/index.vue": { + "language": "html", + "mutants": [ + { + "id": "3940", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "The macro definePageMeta from Nuxt is breaking Stryker, so we ignore it.", + "status": "Ignored", + "static": false, + "location": { + "end": { + "column": 33, + "line": 89 + }, + "start": { + "column": 16, + "line": 89 + } + } + }, + { + "id": "3941", + "mutatorName": "BooleanLiteral", + "replacement": "true", + "statusReason": "The macro definePageMeta from Nuxt is breaking Stryker, so we ignore it.", + "status": "Ignored", + "static": false, + "location": { + "end": { + "column": 31, + "line": 89 + }, + "start": { + "column": 26, + "line": 89 + } + } + } + ], + "source": "\n\n" + }, + "app/plugins/vue-countdown/vue-countdown.client.ts": { + "language": "typescript", + "mutants": [ + { + "id": "3942", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 2, + "line": 5 + }, + "start": { + "column": 44, + "line": 3 + } + } + }, + { + "id": "3943", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 42, + "line": 4 + }, + "start": { + "column": 28, + "line": 4 + } + } + } + ], + "source": "import VueCountdown from \"@chenfengyuan/vue-countdown\";\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.component(\"VueCountdown\", VueCountdown);\n});" + }, + "app/plugins/vue-draggable/vue-draggable.client.ts": { + "language": "typescript", + "mutants": [ + { + "id": "3944", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 2, + "line": 5 + }, + "start": { + "column": 44, + "line": 3 + } + } + }, + { + "id": "3945", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 42, + "line": 4 + }, + "start": { + "column": 28, + "line": 4 + } + } + } + ], + "source": "import VueDraggable from \"vuedraggable\";\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.component(\"VueDraggable\", VueDraggable);\n});" + }, + "app/plugins/vue-ellipse-progress/vue-ellipse-progress.client.ts": { + "language": "typescript", + "mutants": [ + { + "id": "3946", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 2, + "line": 5 + }, + "start": { + "column": 44, + "line": 3 + } + } + }, + { + "id": "3947", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 62, + "line": 4 + }, + "start": { + "column": 42, + "line": 4 + } + } + } + ], + "source": "import VueEllipseProgress from \"vue-ellipse-progress\";\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.use(VueEllipseProgress, \"VueEllipseProgress\");\n});" + }, + "app/plugins/vue-font-awesome-icon/vue-font-awesome-icon.ts": { + "language": "typescript", + "mutants": [ + { + "id": "3948", + "mutatorName": "BooleanLiteral", + "replacement": "true", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 26, + "line": 85 + }, + "start": { + "column": 21, + "line": 85 + } + } + }, + { + "id": "3949", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 2, + "line": 169 + }, + "start": { + "column": 44, + "line": 167 + } + } + }, + { + "id": "3950", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 47, + "line": 168 + }, + "start": { + "column": 28, + "line": 168 + } + } + } + ], + "source": "import { config, library } from \"@fortawesome/fontawesome-svg-core\";\nimport { FontAwesomeIcon } from \"@fortawesome/vue-fontawesome\";\nimport {\n faMoon,\n faSun,\n faEnvelope,\n faPlayCircle,\n faGear,\n faDice,\n faStar,\n faWarning,\n faHandshakeAngle,\n faPenFancy,\n faPalette,\n faSignOut,\n faPlay,\n faRandom,\n faClover,\n faChessPawn,\n faExclamationCircle,\n faPlus,\n faChess,\n faCircleChevronRight,\n faMinus,\n faBan,\n faSliders,\n faThumbsUp,\n faThumbsDown,\n faRotateLeft,\n faCheckCircle,\n faInfoCircle,\n faUsersSlash,\n faGamepad,\n faCommentSlash,\n faChevronLeft,\n faChevronRight,\n faArrowUp,\n faArrowDown,\n faCircleInfo,\n faFlask,\n faBars,\n faTimes,\n faListCheck,\n faStepBackward,\n faStepForward,\n faEyeSlash,\n faForward,\n faComments,\n faHeart,\n faSkullCrossbones,\n faHandsBound,\n faHandHolding,\n faUsers,\n faPaw,\n faMask,\n faShieldHeart,\n faSkull,\n faWandSparkles,\n faPeopleLine,\n faDog,\n faBullhorn,\n faBolt,\n faEye,\n faClock,\n faShieldAlt,\n faCrown,\n faGavel,\n faBalanceScale,\n faFeather,\n faUtensils,\n faPersonRunning,\n faCheck,\n faClockRotateLeft,\n faHandHoldingHeart,\n faCloudMoon,\n faCompass,\n faRotate,\n faMagicWandSparkles,\n} from \"@fortawesome/free-solid-svg-icons\";\n\nimport { faQuestionCircle } from \"@fortawesome/free-regular-svg-icons\";\n\nimport { faGithub } from \"@fortawesome/free-brands-svg-icons\";\n\nconfig.autoAddCss = false;\n\nlibrary.add(\n faMoon,\n faSun,\n faEnvelope,\n faGithub,\n faPlayCircle,\n faQuestionCircle,\n faGear,\n faDice,\n faStar,\n faWarning,\n faHandshakeAngle,\n faPenFancy,\n faPalette,\n faSignOut,\n faPlay,\n faRandom,\n faClover,\n faChessPawn,\n faExclamationCircle,\n faPlus,\n faChess,\n faCircleChevronRight,\n faMinus,\n faBan,\n faSliders,\n faThumbsUp,\n faThumbsDown,\n faRotateLeft,\n faCheckCircle,\n faInfoCircle,\n faUsersSlash,\n faGamepad,\n faCommentSlash,\n faChevronLeft,\n faChevronRight,\n faArrowUp,\n faArrowDown,\n faCircleInfo,\n faFlask,\n faBars,\n faTimes,\n faListCheck,\n faStepBackward,\n faStepForward,\n faEyeSlash,\n faForward,\n faComments,\n faHeart,\n faSkullCrossbones,\n faHandsBound,\n faHandHolding,\n faUsers,\n faPaw,\n faMask,\n faShieldHeart,\n faSkull,\n faWandSparkles,\n faPeopleLine,\n faDog,\n faBullhorn,\n faBolt,\n faEye,\n faClock,\n faShieldAlt,\n faCrown,\n faGavel,\n faBalanceScale,\n faFeather,\n faUtensils,\n faPersonRunning,\n faCheck,\n faClockRotateLeft,\n faHandHoldingHeart,\n faCloudMoon,\n faCompass,\n faRotate,\n faMagicWandSparkles,\n);\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.component(\"font-awesome-icon\", FontAwesomeIcon);\n});" + }, + "app/plugins/vue-lottie/vue-lottie.client.ts": { + "language": "typescript", + "mutants": [ + { + "id": "3951", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 2, + "line": 5 + }, + "start": { + "column": 44, + "line": 3 + } + } + }, + { + "id": "3952", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", + "status": "Ignored", + "static": true, + "coveredBy": [], + "location": { + "end": { + "column": 39, + "line": 4 + }, + "start": { + "column": 28, + "line": 4 + } + } + } + ], + "source": "import { Vue3Lottie } from \"vue3-lottie\";\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.component(\"VueLottie\", Vue3Lottie);\n});" + }, + "app/stores/audio/useAudioStore.ts": { + "language": "typescript", + "mutants": [ + { + "id": "3954", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"audioSettings\",\n Object {\n \"isMuted\": false,\n },\n Object {\n \"mergeDefaults\": true,\n },\n], but it was called with \"audioSettings\"", + "status": "Killed", + "testsCompleted": 60, + "static": false, + "killedBy": [ + "601" + ], "coveredBy": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25", - "26", - "27", - "28", - "29", - "30", - "31", - "32", - "33", - "34", - "35", - "36", - "37", - "38", - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", "134", "135", "136", @@ -181816,90 +177675,6 @@ "161", "162", "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", "271", "272", "273", @@ -181911,108 +177686,9 @@ "279", "280", "281", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "438", - "439", - "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "482", - "483", - "484", + "282", + "283", + "284", "485", "486", "487", @@ -182025,145 +177701,33 @@ "494", "495", "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "667", - "668", - "669", - "670", - "671", - "672", - "673", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "701", - "702", - "703", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", "704", "705", "706", @@ -182171,9 +177735,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -182196,18 +177760,6 @@ "744", "745", "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "756", - "757", - "758", "759", "760", "761", @@ -182220,44 +177772,18 @@ "768", "769", "770", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -182272,9 +177798,9 @@ "840", "841", "842", - "885", - "886", - "887", + "843", + "844", + "845", "888", "889", "890", @@ -182294,92 +177820,28 @@ "904", "905", "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "916", - "917", - "918", - "919", - "920", - "921", - "922", - "923", - "924", - "925", - "926", - "927", - "928", - "929", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", "961", "962", "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "972", - "973", - "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", - "999", - "1000", - "1001", - "1002", - "1003", - "1004", - "1005", - "1006", - "1007", - "1008", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1030", - "1031", - "1032", "1033", "1034", "1035", @@ -182389,15 +177851,6 @@ "1039", "1040", "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1048", - "1049", - "1050", "1051", "1052", "1053", @@ -182405,12 +177858,6 @@ "1055", "1056", "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", "1068", "1069", "1070", @@ -182423,103 +177870,26 @@ "1077", "1078", "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1169", - "1170", - "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1214", - "1215", - "1216", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", "1236", "1237", "1238", - "1239", - "1240", - "1241", - "1242", - "1244", + "1246", + "1247", + "1248", + "1249", + "1250", "1251", "1252", "1253", - "1254", - "1255", - "1256", - "1267", - "1268", - "1269", - "1270", - "1271", - "1272", - "1273", - "1274", "1275", "1276", "1277", @@ -182527,69 +177897,12 @@ "1279", "1280", "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1319", - "1320", - "1321", "1322", "1323", "1324", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -182602,178 +177915,42 @@ "1403", "1404", "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1448", - "1449", - "1450", "1451", "1452", "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1479", - "1480", - "1481", + "1454", + "1455", + "1456", "1482", "1483", "1484", "1485", "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", "1494", "1495", "1496", "1497", "1498", - "1499", - "1500", - "1501", - "1502", - "1503", - "1504", - "1505", - "1506", - "1507", - "1508", "1509", "1510", "1511", "1512", "1513", "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1528", - "1529", - "1530", "1531", "1532", "1533", "1534", "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1543", - "1544", - "1545", "1546", "1547", "1548", "1549", "1550", "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1569", - "1570", - "1571", - "1572", - "1573", - "1574", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1616", - "1617", - "1618", - "1619", + "1625", "1626", - "1650", - "1651", - "1652", + "1629", "1653", "1654", "1655", @@ -182784,1013 +177961,2462 @@ "1660", "1661", "1662", - "1663", - "1670", - "1671", - "1672", - "1673", - "1674", - "1675", - "1685", - "1686", - "1687", - "1688", - "1689", - "1690", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", "1739", "1740", "1741", - "1742", - "1743", - "1754", - "1755", - "1756", "1757", "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", + "1759", + "1760", + "1761", + "1775", + "1776", "1777", - "1811", - "1812", - "1813", + "1778", "1814", "1815", "1816", "1817", - "1818", - "1843", - "1844", - "1845", "1846", - "1860", + "1847", + "1848", + "1849", + "1862", + "1863", "1864", - "1873", - "1874", - "1875", - "1877", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", "1881", - "1887", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", "1891", - "1904", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", "1908", + "1909", + "1910", "1911", "1912", "1913", "1914", "1915", - "1927", - "1928", - "1929", - "1930", - "2026" - ], - "location": { - "end": { - "column": 4, - "line": 45 - }, - "start": { - "column": 10, - "line": 39 - } - } - } - ], - "source": "import type { ToastMessageOptions } from \"primevue/toast\";\nimport { useToast } from \"primevue/usetoast\";\n\nimport { DEFAULT_PRIME_VUE_TOAST_OPTIONS } from \"~/composables/prime-vue/constants/prime-vue.constants\";\n\ntype UsePrimeVueToasts = {\n addToast: (options: ToastMessageOptions) => void;\n addSuccessToast: (options: ToastMessageOptions) => void;\n addInfoToast: (options: ToastMessageOptions) => void;\n addWarnToast: (options: ToastMessageOptions) => void;\n addErrorToast: (options: ToastMessageOptions) => void;\n};\n\nfunction usePrimeVueToasts(): UsePrimeVueToasts {\n const toast = useToast();\n\n function addToast(options: ToastMessageOptions): void {\n toast.add({\n ...DEFAULT_PRIME_VUE_TOAST_OPTIONS,\n ...options,\n });\n }\n\n function addSuccessToast(options: ToastMessageOptions): void {\n addToast({ severity: \"success\", ...options });\n }\n\n function addInfoToast(options: ToastMessageOptions): void {\n addToast({ severity: \"info\", ...options });\n }\n\n function addWarnToast(options: ToastMessageOptions): void {\n addToast({ severity: \"warn\", ...options });\n }\n\n function addErrorToast(options: ToastMessageOptions): void {\n addToast({ severity: \"error\", ...options });\n }\n return {\n addToast,\n addSuccessToast,\n addInfoToast,\n addWarnToast,\n addErrorToast,\n };\n}\n\nexport { usePrimeVueToasts };" - }, - "app/composables/route/useWerewolvesAssistantRoutes.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3831", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1912", - "1994", - "1995" + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 2, + "column": 152, "line": 12 }, "start": { - "column": 71, - "line": 7 - } - } - }, - { - "id": "3832", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1912", - "1994", - "1995" - ], - "location": { - "end": { - "column": 72, - "line": 9 - }, - "start": { - "column": 42, - "line": 9 - } - } - }, - { - "id": "3833", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be falsy", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1995" - ], - "coveredBy": [ - "1912", - "1994", - "1995" - ], - "location": { - "end": { - "column": 72, - "line": 9 - }, - "start": { - "column": 48, - "line": 9 + "column": 129, + "line": 12 } } }, { - "id": "3834", - "mutatorName": "ConditionalExpression", + "id": "3955", + "mutatorName": "BooleanLiteral", "replacement": "false", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1994" - ], - "coveredBy": [ - "1912", - "1994", - "1995" - ], - "location": { - "end": { - "column": 72, - "line": 9 - }, - "start": { - "column": 48, - "line": 9 - } - } - }, - { - "id": "3835", - "mutatorName": "EqualityOperator", - "replacement": "route.name !== \"game-id\"", - "statusReason": "Snapshot `App Component > should render component without shallow and match snapshot when rendered. 1` mismatched", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"audioSettings\",\n Object {\n \"isMuted\": false,\n },\n Object {\n \"mergeDefaults\": true,\n },\n], but it was called with \"audioSettings\"", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 106, "static": false, "killedBy": [ - "1912" + "601" ], "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", "1912", - "1994", - "1995" + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 72, - "line": 9 + "column": 150, + "line": 12 }, "start": { - "column": 48, - "line": 9 + "column": 146, + "line": 12 } } }, { - "id": "3836", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "expected false to be truthy", + "id": "3958", + "mutatorName": "MethodExpression", + "replacement": "name.endsWith(\"night-\")", + "statusReason": "expected [] to strictly equal [ 'night-1', 'night-2', 'night-3' ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 62, "static": false, "killedBy": [ - "1994" - ], - "coveredBy": [ - "1912", - "1994", - "1995" + "603" ], - "location": { - "end": { - "column": 72, - "line": 9 - }, - "start": { - "column": 63, - "line": 9 - } - } - }, - { - "id": "3837", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "1912", - "1994", - "1995" - ], - "location": { - "end": { - "column": 26, - "line": 11 - }, - "start": { - "column": 10, - "line": 11 - } - } - } - ], - "source": "import type { ComputedRef } from \"vue\";\n\ntype UseWerewolvesAssistantRoutes = {\n isOnGamePage: ComputedRef;\n};\n\nfunction useWerewolvesAssistantRoutes(): UseWerewolvesAssistantRoutes {\n const route = useRoute();\n const isOnGamePage = computed(() => route.name === \"game-id\");\n\n return { isOnGamePage };\n}\n\nexport { useWerewolvesAssistantRoutes };" - }, - "app/error.vue": { - "language": "html", - "mutants": [ - { - "id": "3838", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 27, - "line": 46 - }, - "start": { - "column": 20, - "line": 46 - } - } - }, - { - "id": "3839", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 2, - "line": 55 - }, - "start": { - "column": 43, - "line": 50 - } - } - }, - { - "id": "3840", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected 'components.Error.pageNotFound' to be 'components.Error.unexpectedError' // Object.is equality", - "status": "Killed", - "testsCompleted": 4, - "static": false, - "killedBy": [ - "1747" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 52, - "line": 51 - }, - "start": { - "column": 7, - "line": 51 - } - } - }, - { - "id": "3841", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 52, - "line": 51 - }, - "start": { - "column": 7, - "line": 51 - } - } - }, - { - "id": "3842", - "mutatorName": "EqualityOperator", - "replacement": "props.error.statusCode !== notFoundStatusCode", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 52, - "line": 51 - }, - "start": { - "column": 7, - "line": 51 - } - } - }, - { - "id": "3843", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 4, - "line": 53 - }, - "start": { - "column": 54, - "line": 51 - } - } - }, - { - "id": "3844", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 45, - "line": 52 + "column": 138, + "line": 22 }, "start": { - "column": 14, - "line": 52 + "column": 113, + "line": 22 } } }, { - "id": "3845", + "id": "3959", "mutatorName": "StringLiteral", "replacement": "\"\"", - "statusReason": "expected '' to be 'components.Error.unexpectedError' // Object.is equality", + "statusReason": "expected [ 'day-1', 'day-2', 'night-1', …(2) ] to strictly equal [ 'night-1', 'night-2', 'night-3' ]", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 17, "static": false, "killedBy": [ - "1747" + "603" ], "coveredBy": [ - "1747", - "1750" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 46, - "line": 54 + "column": 137, + "line": 22 }, "start": { - "column": 12, - "line": 54 + "column": 129, + "line": 22 } } }, { - "id": "3846", - "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", + "id": "3962", + "mutatorName": "MethodExpression", + "replacement": "name.endsWith(\"day-\")", + "statusReason": "expected [] to strictly equal [ 'day-1', 'day-2' ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 5, "static": false, "killedBy": [ - "1745" + "604" ], "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 30, - "line": 57 - }, - "start": { - "column": 9, - "line": 57 - } - } - }, - { - "id": "3847", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 2, - "line": 64 - }, - "start": { - "column": 49, - "line": 59 - } - } - }, - { - "id": "3848", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected 'components.Error.youAreLost' to be 'components.Error.notNormalTeamNotified' // Object.is equality", - "status": "Killed", - "testsCompleted": 7, - "static": false, - "killedBy": [ - "1750" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 52, - "line": 60 - }, - "start": { - "column": 7, - "line": 60 - } - } - }, - { - "id": "3849", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 52, - "line": 60 - }, - "start": { - "column": 7, - "line": 60 - } - } - }, - { - "id": "3850", - "mutatorName": "EqualityOperator", - "replacement": "props.error.statusCode !== notFoundStatusCode", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 52, - "line": 60 - }, - "start": { - "column": 7, - "line": 60 - } - } - }, - { - "id": "3851", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" - ], - "location": { - "end": { - "column": 4, - "line": 62 - }, - "start": { - "column": 54, - "line": 60 - } - } - }, - { - "id": "3852", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "Snapshot `Error Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1744" - ], - "coveredBy": [ - "1744", - "1745", - "1746", - "1747", - "1748", - "1749", - "1750" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 43, - "line": 61 + "column": 134, + "line": 24 }, "start": { - "column": 14, - "line": 61 + "column": 111, + "line": 24 } } }, { - "id": "3853", + "id": "3963", "mutatorName": "StringLiteral", "replacement": "\"\"", - "statusReason": "expected '' to be 'components.Error.notNormalTeamNotified' // Object.is equality", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1750" - ], - "coveredBy": [ - "1747", - "1750" - ], - "location": { - "end": { - "column": 52, - "line": 63 - }, - "start": { - "column": 12, - "line": 63 - } - } - } - ], - "source": "\n\n" - }, - "app/pages/about.vue": { - "language": "html", - "mutants": [ - { - "id": "3854", - "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 {}", + "statusReason": "expected [ 'day-1', 'day-2', 'night-1', …(2) ] to strictly equal [ 'day-1', 'day-2' ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 18, "static": false, "killedBy": [ - "1955" + "604" ], "coveredBy": [ - "1954", - "1955", - "1956", - "1957" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 2, - "line": 56 + "column": 133, + "line": 24 }, "start": { - "column": 9, - "line": 53 + "column": 127, + "line": 24 } } }, { - "id": "3855", - "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}", + "id": "3966", + "mutatorName": "BooleanLiteral", + "replacement": "true", + "statusReason": "expected 1st \"spy\" call to have been called with [ { preload: false, …(1) } ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "1955" + "600" ], "coveredBy": [ - "1954", - "1955", - "1956", - "1957" - ], - "location": { - "end": { - "column": 40, - "line": 54 - }, - "start": { - "column": 12, - "line": 54 - } - } - }, - { - "id": "3856", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1955" - ], - "coveredBy": [ - "1954", - "1955", - "1956", - "1957" - ], - "location": { - "end": { - "column": 76, - "line": 55 - }, - "start": { - "column": 9, - "line": 55 - } - } - }, - { - "id": "3857", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1955" - ], - "coveredBy": [ - "1954", - "1955", - "1956", - "1957" - ], - "location": { - "end": { - "column": 75, - "line": 55 - }, - "start": { - "column": 10, - "line": 55 - } - } - }, - { - "id": "3858", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1955" - ], - "coveredBy": [ - "1954", - "1955", - "1956", - "1957" - ], - "location": { - "end": { - "column": 31, - "line": 55 - }, - "start": { - "column": 18, - "line": 55 - } - } - }, - { - "id": "3859", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1955" - ], - "coveredBy": [ - "1954", - "1955", - "1956", - "1957" - ], - "location": { - "end": { - "column": 72, - "line": 55 - }, - "start": { - "column": 44, - "line": 55 - } - } - } - ], - "source": "\n\n" - }, - "app/pages/game/[id].vue": { - "language": "html", - "mutants": [ - { - "id": "3860", - "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 {}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1392" - ], - "coveredBy": [ - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402" - ], - "location": { - "end": { - "column": 2, - "line": 64 - }, - "start": { - "column": 9, - "line": 61 - } - } - }, - { - "id": "3861", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1392" - ], - "coveredBy": [ - "1391", - "1392", - "1393", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -183799,106 +180425,417 @@ "1399", "1400", "1401", - "1402" + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 36, - "line": 62 + "column": 21, + "line": 28 }, "start": { - "column": 12, - "line": 62 + "column": 16, + "line": 28 } } }, { - "id": "3862", + "id": "3967", "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1392" - ], - "coveredBy": [ - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402" - ], - "location": { - "end": { - "column": 59, - "line": 63 - }, - "start": { - "column": 9, - "line": 63 - } - } - }, - { - "id": "3863", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "1392" - ], - "coveredBy": [ - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402" - ], - "location": { - "end": { - "column": 58, - "line": 63 - }, - "start": { - "column": 10, - "line": 63 - } - } - }, - { - "id": "3864", - "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}", + "statusReason": "expected 1st \"spy\" call to have been called with [ { preload: false, …(1) } ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "1392" + "600" ], "coveredBy": [ - "1391", - "1392", - "1393", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -183907,70 +180844,417 @@ "1399", "1400", "1401", - "1402" + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 26, - "line": 63 + "column": 48, + "line": 29 }, "start": { - "column": 18, - "line": 63 + "column": 12, + "line": 29 } } }, { - "id": "3865", + "id": "3968", "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}", + "replacement": "``", + "statusReason": "expected 1st \"spy\" call to have been called with [ { preload: false, …(1) } ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "1392" + "600" ], "coveredBy": [ - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402" - ], - "location": { - "end": { - "column": 56, - "line": 63 - }, - "start": { - "column": 37, - "line": 63 - } - } - }, - { - "id": "3866", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 9, - "static": false, - "killedBy": [ - "1399" - ], - "coveredBy": [ - "1391", - "1392", - "1393", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -183979,34 +181263,417 @@ "1399", "1400", "1401", - "1402" + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 2, - "line": 76 + "column": 47, + "line": 29 }, "start": { - "column": 73, - "line": 68 + "column": 13, + "line": 29 } } }, { - "id": "3867", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "expected false to be truthy", + "id": "3971", + "mutatorName": "BooleanLiteral", + "replacement": "true", + "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", "status": "Killed", - "testsCompleted": 9, + "testsCompleted": 1, "static": false, "killedBy": [ - "1399" + "600" ], "coveredBy": [ - "1391", - "1392", - "1393", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -184015,594 +181682,1431 @@ "1399", "1400", "1401", - "1402" - ], - "location": { - "end": { - "column": 4, - "line": 73 - }, - "start": { - "column": 73, - "line": 69 - } - } - } - ], - "source": "\n\n" - }, - "app/pages/game-lobby.vue": { - "language": "html", - "mutants": [ - { - "id": "3868", - "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 {}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "211" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 2, - "line": 79 - }, - "start": { - "column": 9, - "line": 76 - } - } - }, - { - "id": "3869", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "211" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 39, - "line": 77 + "column": 21, + "line": 35 }, "start": { - "column": 12, - "line": 77 + "column": 16, + "line": 35 } } }, { - "id": "3870", + "id": "3972", "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "211" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 80, - "line": 78 - }, - "start": { - "column": 9, - "line": 78 - } - } - }, - { - "id": "3871", - "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "211" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 79, - "line": 78 - }, - "start": { - "column": 10, - "line": 78 - } - } - }, - { - "id": "3872", - "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}", + "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "211" + "600" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 31, - "line": 78 + "column": 52, + "line": 36 }, "start": { - "column": 18, - "line": 78 + "column": 12, + "line": 36 } } }, { - "id": "3873", + "id": "3973", "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}", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "211" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 76, - "line": 78 - }, - "start": { - "column": 44, - "line": 78 - } - } - }, - { - "id": "3874", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "replacement": "``", + "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "215" + "600" ], "coveredBy": [ - "215", - "216", - "217" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 2, - "line": 89 + "column": 51, + "line": 36 }, "start": { - "column": 91, - "line": 81 + "column": 13, + "line": 36 } } }, { - "id": "3875", + "id": "3974", "mutatorName": "BooleanLiteral", - "replacement": "gameLobbyRolePicker.value", - "statusReason": "Mocked error", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "215" - ], - "coveredBy": [ - "215", - "216", - "217" - ], - "location": { - "end": { - "column": 33, - "line": 82 - }, - "start": { - "column": 7, - "line": 82 - } - } - }, - { - "id": "3876", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "Mocked error", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "215" - ], - "coveredBy": [ - "215", - "216", - "217" - ], - "location": { - "end": { - "column": 33, - "line": 82 - }, - "start": { - "column": 7, - "line": 82 - } - } - }, - { - "id": "3877", - "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", - "status": "Killed", - "testsCompleted": 3, - "static": false, - "killedBy": [ - "217" - ], - "coveredBy": [ - "215", - "216", - "217" - ], - "location": { - "end": { - "column": 33, - "line": 82 - }, - "start": { - "column": 7, - "line": 82 - } - } - }, - { - "id": "3878", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "217" - ], - "coveredBy": [ - "217" - ], - "location": { - "end": { - "column": 4, - "line": 84 - }, - "start": { - "column": 35, - "line": 82 - } - } - }, - { - "id": "3879", - "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 \"\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "217" - ], - "coveredBy": [ - "217" - ], - "location": { - "end": { - "column": 62, - "line": 83 - }, - "start": { - "column": 23, - "line": 83 - } - } - }, - { - "id": "3880", - "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", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "215" - ], - "coveredBy": [ - "215", - "216" - ], - "location": { - "end": { - "column": 14, - "line": 85 - }, - "start": { - "column": 7, - "line": 85 - } - } - }, - { - "id": "3881", - "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", + "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "215" - ], - "coveredBy": [ - "215", - "216" - ], - "location": { - "end": { - "column": 14, - "line": 85 - }, - "start": { - "column": 7, - "line": 85 - } - } - }, - { - "id": "3882", - "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", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "216" + "600" ], "coveredBy": [ - "215", - "216" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 14, - "line": 85 + "column": 17, + "line": 37 }, "start": { - "column": 7, - "line": 85 + "column": 13, + "line": 37 } } }, { - "id": "3883", + "id": "3975", "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", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "216" + "606" ], "coveredBy": [ - "216" + "606" ], "location": { "end": { "column": 4, - "line": 87 + "line": 43 }, "start": { - "column": 16, - "line": 85 + "column": 62, + "line": 41 } } }, { - "id": "3884", + "id": "3976", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -184610,107 +183114,103 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "218" + "607" ], "coveredBy": [ - "218", - "219", - "234" + "607", + "609" ], "location": { "end": { - "column": 2, - "line": 96 + "column": 4, + "line": 47 }, "start": { - "column": 62, - "line": 91 + "column": 37, + "line": 45 } } }, { - "id": "3885", - "mutatorName": "BooleanLiteral", - "replacement": "gameLobbyOptionsHub.value", - "statusReason": "Mocked error", + "id": "3977", + "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", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "218" + "607" ], "coveredBy": [ - "218", - "219", - "234" + "607", + "609" ], "location": { "end": { - "column": 33, - "line": 92 + "column": 74, + "line": 46 }, "start": { - "column": 7, - "line": 92 + "column": 41, + "line": 46 } } }, { - "id": "3886", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "Mocked error", + "id": "3978", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "218" + "608" ], "coveredBy": [ - "218", - "219", - "234" + "608", + "609" ], "location": { "end": { - "column": 33, - "line": 92 + "column": 4, + "line": 51 }, "start": { - "column": 7, - "line": 92 + "column": 41, + "line": 49 } } }, { - "id": "3887", - "mutatorName": "ConditionalExpression", - "replacement": "false", + "id": "3979", + "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", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "219" + "608" ], "coveredBy": [ - "218", - "219", - "234" + "608", + "609" ], "location": { "end": { - "column": 33, - "line": 92 + "column": 86, + "line": 50 }, "start": { - "column": 7, - "line": 92 + "column": 45, + "line": 50 } } }, { - "id": "3888", + "id": "3980", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -184718,207 +183218,216 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "219" + "609" ], "coveredBy": [ - "219" + "609" ], "location": { "end": { "column": 4, - "line": 94 + "line": 56 }, "start": { - "column": 35, - "line": 92 + "column": 34, + "line": 53 } } }, { - "id": "3889", - "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 \"\"", + "id": "3981", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "219" + "610" ], "coveredBy": [ - "219" + "610" ], "location": { "end": { - "column": 62, - "line": 93 + "column": 4, + "line": 60 }, "start": { - "column": 23, - "line": 93 + "column": 68, + "line": 58 } } }, { - "id": "3890", + "id": "3982", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "220" + "612" ], "coveredBy": [ - "220", - "221", - "226" + "611", + "612", + "613", + "618", + "619", + "620", + "621" ], "location": { "end": { - "column": 2, - "line": 103 + "column": 4, + "line": 71 }, "start": { - "column": 70, - "line": 98 + "column": 50, + "line": 62 } } }, { - "id": "3891", + "id": "3983", "mutatorName": "BooleanLiteral", - "replacement": "gameLobbyPositionCoordinator.value", - "statusReason": "Mocked error", - "status": "Killed", - "testsCompleted": 1, + "replacement": "playingBackgroundAudioName.value", + "statusReason": "app/stores/audio/useAudioStore.ts(67,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "220" - ], + "killedBy": [], "coveredBy": [ - "220", - "221", - "226" + "611", + "612", + "613", + "618", + "619", + "620", + "621" ], "location": { "end": { "column": 42, - "line": 99 + "line": 63 }, "start": { - "column": 7, - "line": 99 + "column": 9, + "line": 63 } } }, { - "id": "3892", + "id": "3984", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "Mocked error", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/audio/useAudioStore.ts(67,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "220" - ], + "killedBy": [], "coveredBy": [ - "220", - "221", - "226" + "611", + "612", + "613", + "618", + "619", + "620", + "621" ], "location": { "end": { "column": 42, - "line": 99 + "line": 63 }, "start": { - "column": 7, - "line": 99 + "column": 9, + "line": 63 } } }, { - "id": "3893", + "id": "3985", "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", - "status": "Killed", - "testsCompleted": 2, + "statusReason": "app/stores/audio/useAudioStore.ts(67,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "221" - ], + "killedBy": [], "coveredBy": [ - "220", - "221", - "226" + "611", + "612", + "613", + "618", + "619", + "620", + "621" ], "location": { "end": { "column": 42, - "line": 99 + "line": 63 }, "start": { - "column": 7, - "line": 99 + "column": 9, + "line": 63 } } }, { - "id": "3894", + "id": "3986", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/audio/useAudioStore.ts(65,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "221" - ], + "killedBy": [], "coveredBy": [ - "221" + "611", + "619" ], "location": { "end": { - "column": 4, - "line": 101 + "column": 6, + "line": 65 }, "start": { "column": 44, - "line": 99 + "line": 63 } } }, { - "id": "3895", - "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 \"\"", + "id": "3987", + "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", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "221" + "613" ], "coveredBy": [ - "221" + "612", + "613", + "618", + "620", + "621" ], "location": { "end": { - "column": 71, - "line": 100 + "column": 51, + "line": 70 }, "start": { - "column": 23, - "line": 100 + "column": 16, + "line": 70 } } }, { - "id": "3896", + "id": "3988", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", @@ -184926,1401 +183435,1330 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "222" + "614" ], "coveredBy": [ - "222", - "223", - "229", - "234" + "614", + "615", + "616", + "618", + "619", + "620", + "621" ], "location": { "end": { - "column": 2, - "line": 110 + "column": 4, + "line": 78 }, "start": { - "column": 73, - "line": 105 + "column": 80, + "line": 73 } } }, { - "id": "3897", - "mutatorName": "BooleanLiteral", - "replacement": "gameLobbyAdditionalCardsManager.value", - "statusReason": "Mocked error", + "id": "3989", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "222" + "618" ], "coveredBy": [ - "222", - "223", - "229", - "234" + "617", + "618", + "619", + "620", + "621", + "622" ], "location": { "end": { - "column": 45, - "line": 106 + "column": 4, + "line": 91 }, "start": { - "column": 7, - "line": 106 + "column": 79, + "line": 80 } } }, { - "id": "3898", + "id": "3990", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "Mocked error", + "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]", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 3, "static": false, "killedBy": [ - "222" + "619" ], "coveredBy": [ - "222", - "223", - "229", - "234" + "617", + "618", + "619", + "620", + "621", + "622" ], "location": { "end": { - "column": 45, - "line": 106 + "column": 55, + "line": 81 }, "start": { - "column": 7, - "line": 106 + "column": 34, + "line": 81 } } }, { - "id": "3899", + "id": "3991", "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", + "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", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "223" + "617" ], "coveredBy": [ - "222", - "223", - "229", - "234" + "617", + "618", + "619", + "620", + "621", + "622" ], "location": { "end": { - "column": 45, - "line": 106 + "column": 55, + "line": 81 }, "start": { - "column": 7, - "line": 106 + "column": 34, + "line": 81 } } }, { - "id": "3900", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "id": "3992", + "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", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "223" + "617" ], "coveredBy": [ - "223" + "617", + "618", + "619", + "620", + "621", + "622" ], "location": { "end": { - "column": 4, - "line": 108 + "column": 55, + "line": 81 }, "start": { - "column": 47, - "line": 106 + "column": 34, + "line": 81 } } }, { - "id": "3901", + "id": "3993", "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 \"\"", + "statusReason": "app/stores/audio/useAudioStore.ts(81,34): error TS2367: This comparison appears to be unintentional because the types '\"day\" | \"night\" | \"twilight\"' and '\"\"' have no overlap.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "617", + "618", + "619", + "620", + "621", + "622" + ], + "location": { + "end": { + "column": 55, + "line": 81 + }, + "start": { + "column": 48, + "line": 81 + } + } + }, + { + "id": "3994", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "app/stores/audio/useAudioStore.ts(90,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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "617", + "618", + "619", + "620", + "621", + "622" + ], + "location": { + "end": { + "column": 108, + "line": 82 + }, + "start": { + "column": 9, + "line": 82 + } + } + }, + { + "id": "3995", + "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", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "223" + "617" ], "coveredBy": [ - "223" + "617", + "618", + "619", + "620", + "621", + "622" ], "location": { "end": { - "column": 75, - "line": 107 + "column": 108, + "line": 82 }, "start": { - "column": 23, - "line": 107 + "column": 9, + "line": 82 } } }, { - "id": "3902", + "id": "3996", + "mutatorName": "LogicalOperator", + "replacement": "playingBackgroundAudioName.value || backgroundAudioNames.includes(playingBackgroundAudioName.value)", + "statusReason": "app/stores/audio/useAudioStore.ts(82,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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "617", + "618", + "619", + "620", + "621", + "622" + ], + "location": { + "end": { + "column": 108, + "line": 82 + }, + "start": { + "column": 9, + "line": 82 + } + } + }, + { + "id": "3997", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "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", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "224" + "617" ], "coveredBy": [ - "224", - "225", - "226" + "617" ], "location": { "end": { - "column": 2, - "line": 121 + "column": 6, + "line": 84 }, "start": { - "column": 65, - "line": 112 + "column": 110, + "line": 82 } } }, { - "id": "3903", + "id": "3998", "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", - "status": "Killed", - "testsCompleted": 1, + "replacement": "randomGamePhaseBackgroundAudioName", + "statusReason": "app/stores/audio/useAudioStore.ts(90,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", + "status": "CompileError", "static": false, - "killedBy": [ - "224" - ], + "killedBy": [], "coveredBy": [ - "224", - "225", - "226" + "618", + "619", + "620", + "621", + "622" ], "location": { "end": { - "column": 29, - "line": 113 + "column": 44, + "line": 86 }, "start": { - "column": 7, - "line": 113 + "column": 9, + "line": 86 } } }, { - "id": "3904", + "id": "3999", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "Mocked error", - "status": "Killed", - "testsCompleted": 2, + "statusReason": "app/stores/audio/useAudioStore.ts(90,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", + "status": "CompileError", "static": false, - "killedBy": [ - "225" - ], + "killedBy": [], "coveredBy": [ - "224", - "225", - "226" + "618", + "619", + "620", + "621", + "622" ], "location": { "end": { - "column": 29, - "line": 113 + "column": 44, + "line": 86 }, "start": { - "column": 7, - "line": 113 + "column": 9, + "line": 86 } } }, { - "id": "3905", + "id": "4000", "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", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/audio/useAudioStore.ts(90,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", + "status": "CompileError", "static": false, - "killedBy": [ - "224" - ], + "killedBy": [], "coveredBy": [ - "224", - "225", - "226" + "618", + "619", + "620", + "621", + "622" ], "location": { "end": { - "column": 29, - "line": 113 + "column": 44, + "line": 86 }, "start": { - "column": 7, - "line": 113 + "column": 9, + "line": 86 } } }, { - "id": "3906", + "id": "4001", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/audio/useAudioStore.ts(88,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", + "status": "CompileError", "static": false, - "killedBy": [ - "224" - ], + "killedBy": [], "coveredBy": [ - "224" + "622" ], "location": { "end": { - "column": 4, - "line": 115 + "column": 6, + "line": 88 }, "start": { - "column": 31, - "line": 113 + "column": 46, + "line": 86 } } }, { - "id": "3907", - "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 \"\"", + "id": "4002", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected false to be truthy", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "224" + "623" ], "coveredBy": [ - "224" + "623", + "624", + "625", + "626" ], "location": { "end": { - "column": 57, - "line": 114 + "column": 4, + "line": 97 }, "start": { - "column": 23, - "line": 114 + "column": 49, + "line": 93 } } }, { - "id": "3908", + "id": "4003", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "statusReason": "expected false to be truthy", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "226" + "626" ], "coveredBy": [ - "226" + "626" ], "location": { "end": { "column": 4, - "line": 120 - }, - "start": { - "column": 20, - "line": 118 - } - } - }, - { - "id": "3909", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "227" - ], - "coveredBy": [ - "227", - "228", - "229", - "230", - "231" - ], - "location": { - "end": { - "column": 2, - "line": 132 - }, - "start": { - "column": 64, - "line": 123 - } - } - }, - { - "id": "3910", - "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", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "227" - ], - "coveredBy": [ - "227", - "228", - "229", - "230", - "231" - ], - "location": { - "end": { - "column": 29, - "line": 124 - }, - "start": { - "column": 7, - "line": 124 - } - } - }, - { - "id": "3911", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "Mocked error", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "228" - ], - "coveredBy": [ - "227", - "228", - "229", - "230", - "231" - ], - "location": { - "end": { - "column": 29, - "line": 124 - }, - "start": { - "column": 7, - "line": 124 - } - } - }, - { - "id": "3912", - "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", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "227" - ], - "coveredBy": [ - "227", - "228", - "229", - "230", - "231" - ], - "location": { - "end": { - "column": 29, - "line": 124 - }, - "start": { - "column": 7, - "line": 124 - } - } - }, - { - "id": "3913", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "227" - ], - "coveredBy": [ - "227", - "230" - ], - "location": { - "end": { - "column": 4, - "line": 126 + "line": 101 }, "start": { "column": 31, - "line": 124 + "line": 99 } } }, { - "id": "3914", - "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 \"\"", + "id": "4004", + "mutatorName": "BooleanLiteral", + "replacement": "isMuted.value", + "statusReason": "expected false to be truthy", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "227" + "626" ], "coveredBy": [ - "227", - "230" + "626" ], "location": { "end": { - "column": 57, - "line": 125 + "column": 27, + "line": 100 }, "start": { - "column": 23, - "line": 125 + "column": 13, + "line": 100 } } }, { - "id": "3915", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, + "id": "3956", + "mutatorName": "MethodExpression", + "replacement": "Object.keys(backgroundAudios)", + "statusReason": "app/stores/audio/useAudioStore.ts(90,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", + "status": "CompileError", "static": false, - "killedBy": [ - "229" - ], "coveredBy": [ - "229", - "234" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 4, - "line": 131 + "column": 139, + "line": 22 }, "start": { - "column": 20, - "line": 129 + "column": 37, + "line": 22 } } }, { - "id": "3916", + "id": "3953", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, + "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(76,15): error TS2339: Property 'playingBackgroundAudioName' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(82,15): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(88,15): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(94,15): error TS2339: Property 'isMuted' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(103,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(104,18): error TS2339: Property 'setHowlerAudioSettingsFromAudioStoreState' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(112,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(112,29): error TS2339: Property 'loadSoundEffects' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(116,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(123,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(123,33): error TS2339: Property 'loadBackgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(127,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(134,15): error TS2339: Property 'loadAllAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(135,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(135,33): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(139,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(142,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(149,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(149,29): error TS2339: Property 'playSoundEffect' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(159,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(159,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(163,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(169,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(169,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(170,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(178,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(178,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(179,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(189,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(189,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(197,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(197,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(205,15): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(209,30): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(220,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(221,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(228,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(229,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(231,83): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(236,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(238,83): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(243,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(244,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(245,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(252,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(253,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(254,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(261,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(262,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(264,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(273,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(276,25): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(281,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(289,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(292,25): error TS2339: Property 'audioSettingsFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(299,15): error TS2339: Property 'toggleMute' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(300,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(303,25): error TS2339: Property 'isMuted' does not exist on type 'Store'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "232" - ], "coveredBy": [ - "232", - "233", - "234" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "600", + "601", + "602", + "603", + "604", + "605", + "606", + "607", + "608", + "609", + "610", + "611", + "612", + "613", + "614", + "615", + "616", + "617", + "618", + "619", + "620", + "621", + "622", + "623", + "624", + "625", + "626", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "942", + "943", + "944", + "945", + "946", + "947", + "948", + "949", + "950", + "951", + "952", + "953", + "954", + "955", + "956", + "957", + "958", + "959", + "960", + "961", + "962", + "963", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1246", + "1247", + "1248", + "1249", + "1250", + "1251", + "1252", + "1253", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1482", + "1483", + "1484", + "1485", + "1486", + "1494", + "1495", + "1496", + "1497", + "1498", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1625", + "1626", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1775", + "1776", + "1777", + "1778", + "1814", + "1815", + "1816", + "1817", + "1846", + "1847", + "1848", + "1849", + "1862", + "1863", + "1864", + "1865", + "1866", + "1867", + "1868", + "1869", + "1879", + "1880", + "1881", + "1882", + "1883", + "1884", + "1885", + "1886", + "1889", + "1890", + "1891", + "1892", + "1893", + "1894", + "1895", + "1896", + "1906", + "1907", + "1908", + "1909", + "1910", + "1911", + "1912", + "1913", + "1914", + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { "column": 2, - "line": 143 - }, - "start": { - "column": 49, - "line": 134 - } - } - }, - { - "id": "3917", - "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", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "232" - ], - "coveredBy": [ - "232", - "233", - "234" - ], - "location": { - "end": { - "column": 29, - "line": 135 + "line": 121 }, "start": { - "column": 7, - "line": 135 + "column": 57, + "line": 11 } } }, { - "id": "3918", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "Mocked error", - "status": "Killed", - "testsCompleted": 2, + "id": "3957", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "app/stores/audio/useAudioStore.ts(90,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", + "status": "CompileError", "static": false, - "killedBy": [ - "233" - ], "coveredBy": [ - "232", - "233", - "234" - ], - "location": { - "end": { - "column": 29, - "line": 135 - }, - "start": { - "column": 7, - "line": 135 - } - } - }, - { - "id": "3919", - "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", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "232" - ], - "coveredBy": [ - "232", - "233", - "234" - ], - "location": { - "end": { - "column": 29, - "line": 135 - }, - "start": { - "column": 7, - "line": 135 - } - } - }, - { - "id": "3920", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "232" - ], - "coveredBy": [ - "232" - ], - "location": { - "end": { - "column": 4, - "line": 137 - }, - "start": { - "column": 31, - "line": 135 - } - } - }, - { - "id": "3921", - "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 \"\"", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "232" - ], - "coveredBy": [ - "232" - ], - "location": { - "end": { - "column": 57, - "line": 136 - }, - "start": { - "column": 23, - "line": 136 - } - } - }, - { - "id": "3922", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "234" - ], - "coveredBy": [ - "234" - ], - "location": { - "end": { - "column": 4, - "line": 142 - }, - "start": { - "column": 20, - "line": 140 - } - } - }, - { - "id": "3923", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 26, - "static": false, - "killedBy": [ - "235" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 2, - "line": 156 - }, - "start": { - "column": 45, - "line": 145 - } - } - }, - { - "id": "3924", - "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\".", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "210" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 43, - "line": 147 - }, - "start": { - "column": 7, - "line": 147 - } - } - }, - { - "id": "3925", - "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", - "status": "Killed", - "testsCompleted": 26, - "static": false, - "killedBy": [ - "235" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 43, - "line": 147 - }, - "start": { - "column": 7, - "line": 147 - } - } - }, - { - "id": "3926", - "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\".", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "210" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 43, - "line": 147 - }, - "start": { - "column": 7, - "line": 147 - } - } - }, - { - "id": "3927", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 26, - "static": false, - "killedBy": [ - "235" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 42, - "line": 147 - }, - "start": { - "column": 29, - "line": 147 - } - } - }, - { - "id": "3928", - "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\".", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "210" - ], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236" - ], - "location": { - "end": { - "column": 4, - "line": 149 - }, - "start": { - "column": 45, - "line": 147 - } - } - }, - { - "id": "3929", - "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]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "235" - ], - "coveredBy": [ - "235" - ], - "location": { - "end": { - "column": 5, - "line": 155 - }, - "start": { - "column": 73, - "line": 151 - } - } - }, - { - "id": "3930", - "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]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "235" - ], - "coveredBy": [ - "235" - ], - "location": { - "end": { - "column": 4, - "line": 155 - }, - "start": { - "column": 92, - "line": 151 - } - } - } - ], - "source": "\n\n" - }, - "app/pages/index.vue": { - "language": "html", - "mutants": [ - { - "id": "3931", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "The macro definePageMeta from Nuxt is breaking Stryker, so we ignore it.", - "status": "Ignored", - "static": false, - "location": { - "end": { - "column": 33, - "line": 89 - }, - "start": { - "column": 16, - "line": 89 - } - } - }, - { - "id": "3932", - "mutatorName": "BooleanLiteral", - "replacement": "true", - "statusReason": "The macro definePageMeta from Nuxt is breaking Stryker, so we ignore it.", - "status": "Ignored", - "static": false, - "location": { - "end": { - "column": 31, - "line": 89 - }, - "start": { - "column": 26, - "line": 89 - } - } - } - ], - "source": "\n\n" - }, - "app/plugins/vue-countdown/vue-countdown.client.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3933", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 2, - "line": 5 - }, - "start": { - "column": 44, - "line": 3 - } - } - }, - { - "id": "3934", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 42, - "line": 4 - }, - "start": { - "column": 28, - "line": 4 - } - } - } - ], - "source": "import VueCountdown from \"@chenfengyuan/vue-countdown\";\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.component(\"VueCountdown\", VueCountdown);\n});" - }, - "app/plugins/vue-draggable/vue-draggable.client.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3935", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 2, - "line": 5 - }, - "start": { - "column": 44, - "line": 3 - } - } - }, - { - "id": "3936", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 42, - "line": 4 - }, - "start": { - "column": 28, - "line": 4 - } - } - } - ], - "source": "import VueDraggable from \"vuedraggable\";\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.component(\"VueDraggable\", VueDraggable);\n});" - }, - "app/plugins/vue-ellipse-progress/vue-ellipse-progress.client.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3937", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 2, - "line": 5 - }, - "start": { - "column": 44, - "line": 3 - } - } - }, - { - "id": "3938", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 62, - "line": 4 - }, - "start": { - "column": 42, - "line": 4 - } - } - } - ], - "source": "import VueEllipseProgress from \"vue-ellipse-progress\";\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.use(VueEllipseProgress, \"VueEllipseProgress\");\n});" - }, - "app/plugins/vue-font-awesome-icon/vue-font-awesome-icon.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3939", - "mutatorName": "BooleanLiteral", - "replacement": "true", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 26, - "line": 85 - }, - "start": { - "column": 21, - "line": 85 - } - } - }, - { - "id": "3940", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 2, - "line": 169 - }, - "start": { - "column": 44, - "line": 167 - } - } - }, - { - "id": "3941", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 47, - "line": 168 - }, - "start": { - "column": 28, - "line": 168 - } - } - } - ], - "source": "import { config, library } from \"@fortawesome/fontawesome-svg-core\";\nimport { FontAwesomeIcon } from \"@fortawesome/vue-fontawesome\";\nimport {\n faMoon,\n faSun,\n faEnvelope,\n faPlayCircle,\n faGear,\n faDice,\n faStar,\n faWarning,\n faHandshakeAngle,\n faPenFancy,\n faPalette,\n faSignOut,\n faPlay,\n faRandom,\n faClover,\n faChessPawn,\n faExclamationCircle,\n faPlus,\n faChess,\n faCircleChevronRight,\n faMinus,\n faBan,\n faSliders,\n faThumbsUp,\n faThumbsDown,\n faRotateLeft,\n faCheckCircle,\n faInfoCircle,\n faUsersSlash,\n faGamepad,\n faCommentSlash,\n faChevronLeft,\n faChevronRight,\n faArrowUp,\n faArrowDown,\n faCircleInfo,\n faFlask,\n faBars,\n faTimes,\n faListCheck,\n faStepBackward,\n faStepForward,\n faEyeSlash,\n faForward,\n faComments,\n faHeart,\n faSkullCrossbones,\n faHandsBound,\n faHandHolding,\n faUsers,\n faPaw,\n faMask,\n faShieldHeart,\n faSkull,\n faWandSparkles,\n faPeopleLine,\n faDog,\n faBullhorn,\n faBolt,\n faEye,\n faClock,\n faShieldAlt,\n faCrown,\n faGavel,\n faBalanceScale,\n faFeather,\n faUtensils,\n faPersonRunning,\n faCheck,\n faClockRotateLeft,\n faHandHoldingHeart,\n faCloudMoon,\n faCompass,\n faRotate,\n faMagicWandSparkles,\n} from \"@fortawesome/free-solid-svg-icons\";\n\nimport { faQuestionCircle } from \"@fortawesome/free-regular-svg-icons\";\n\nimport { faGithub } from \"@fortawesome/free-brands-svg-icons\";\n\nconfig.autoAddCss = false;\n\nlibrary.add(\n faMoon,\n faSun,\n faEnvelope,\n faGithub,\n faPlayCircle,\n faQuestionCircle,\n faGear,\n faDice,\n faStar,\n faWarning,\n faHandshakeAngle,\n faPenFancy,\n faPalette,\n faSignOut,\n faPlay,\n faRandom,\n faClover,\n faChessPawn,\n faExclamationCircle,\n faPlus,\n faChess,\n faCircleChevronRight,\n faMinus,\n faBan,\n faSliders,\n faThumbsUp,\n faThumbsDown,\n faRotateLeft,\n faCheckCircle,\n faInfoCircle,\n faUsersSlash,\n faGamepad,\n faCommentSlash,\n faChevronLeft,\n faChevronRight,\n faArrowUp,\n faArrowDown,\n faCircleInfo,\n faFlask,\n faBars,\n faTimes,\n faListCheck,\n faStepBackward,\n faStepForward,\n faEyeSlash,\n faForward,\n faComments,\n faHeart,\n faSkullCrossbones,\n faHandsBound,\n faHandHolding,\n faUsers,\n faPaw,\n faMask,\n faShieldHeart,\n faSkull,\n faWandSparkles,\n faPeopleLine,\n faDog,\n faBullhorn,\n faBolt,\n faEye,\n faClock,\n faShieldAlt,\n faCrown,\n faGavel,\n faBalanceScale,\n faFeather,\n faUtensils,\n faPersonRunning,\n faCheck,\n faClockRotateLeft,\n faHandHoldingHeart,\n faCloudMoon,\n faCompass,\n faRotate,\n faMagicWandSparkles,\n);\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.component(\"font-awesome-icon\", FontAwesomeIcon);\n});" - }, - "app/plugins/vue-lottie/vue-lottie.client.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3942", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 2, - "line": 5 - }, - "start": { - "column": 44, - "line": 3 - } - } - }, - { - "id": "3943", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "Static mutant (and \"ignoreStatic\" was enabled)", - "status": "Ignored", - "static": true, - "coveredBy": [], - "location": { - "end": { - "column": 39, - "line": 4 - }, - "start": { - "column": 28, - "line": 4 - } - } - } - ], - "source": "import { Vue3Lottie } from \"vue3-lottie\";\n\nexport default defineNuxtPlugin(nuxtApp => {\n nuxtApp.vueApp.component(\"VueLottie\", Vue3Lottie);\n});" - }, - "app/stores/audio/useAudioStore.ts": { - "language": "typescript", - "mutants": [ - { - "id": "3944", - "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/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/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(76,15): error TS2339: Property 'playingBackgroundAudioName' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(82,15): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(88,15): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(94,15): error TS2339: Property 'isMuted' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(103,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(104,18): error TS2339: Property 'setHowlerAudioSettingsFromAudioStoreState' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(112,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(112,29): error TS2339: Property 'loadSoundEffects' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(116,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(123,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(123,33): error TS2339: Property 'loadBackgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(127,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(134,15): error TS2339: Property 'loadAllAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(135,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(135,33): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(139,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(142,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(149,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(149,29): error TS2339: Property 'playSoundEffect' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(159,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(159,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(163,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(169,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(169,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(170,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(178,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(178,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(179,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(189,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(189,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(197,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(197,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(205,15): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(209,30): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(220,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(221,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(228,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(229,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(231,83): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(236,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(238,83): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(243,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(244,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(245,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(252,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(253,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(254,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(261,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(262,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(264,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(273,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(276,25): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(281,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(289,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(292,25): error TS2339: Property 'audioSettingsFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(299,15): error TS2339: Property 'toggleMute' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(300,18): error TS2339: Property 'isMuted' does not exist on type 'Store'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(303,25): error TS2339: Property 'isMuted' does not exist on type 'Store'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "271", "272", "273", @@ -186332,9 +184770,9 @@ "279", "280", "281", - "482", - "483", - "484", + "282", + "283", + "284", "485", "486", "487", @@ -186344,9 +184782,9 @@ "491", "492", "493", - "597", - "598", - "599", + "494", + "495", + "496", "600", "601", "602", @@ -186371,9 +184809,9 @@ "621", "622", "623", - "701", - "702", - "703", + "624", + "625", + "626", "704", "705", "706", @@ -186381,9 +184819,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -186403,9 +184841,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -186418,18 +184856,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -186444,9 +184882,9 @@ "840", "841", "842", - "885", - "886", - "887", + "843", + "844", + "845", "888", "889", "890", @@ -186463,9 +184901,9 @@ "901", "902", "903", - "939", - "940", - "941", + "904", + "905", + "906", "942", "943", "944", @@ -186485,25 +184923,25 @@ "958", "959", "960", - "1030", - "1031", - "1032", + "961", + "962", + "963", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", - "1065", - "1066", - "1067", + "1055", + "1056", + "1057", "1068", "1069", "1070", @@ -186513,42 +184951,42 @@ "1074", "1075", "1076", - "1214", - "1215", - "1216", + "1077", + "1078", + "1079", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", - "1243", - "1244", - "1245", + "1236", + "1237", + "1238", "1246", "1247", "1248", "1249", "1250", - "1272", - "1273", - "1274", + "1251", + "1252", + "1253", "1275", "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -186558,45 +184996,45 @@ "1400", "1401", "1402", - "1448", - "1449", - "1450", + "1403", + "1404", + "1405", "1451", "1452", "1453", - "1479", - "1480", - "1481", + "1454", + "1455", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1622", - "1623", + "1549", + "1550", + "1551", + "1625", "1626", - "1650", - "1651", - "1652", + "1629", "1653", "1654", "1655", @@ -186604,75 +185042,75 @@ "1657", "1658", "1659", - "1688", - "1689", - "1690", + "1660", + "1661", + "1662", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1772", - "1773", - "1774", + "1759", + "1760", + "1761", "1775", - "1811", - "1812", - "1813", + "1776", + "1777", + "1778", "1814", - "1843", - "1844", - "1845", + "1815", + "1816", + "1817", "1846", - "1859", - "1860", - "1861", + "1847", + "1848", + "1849", "1862", "1863", "1864", "1865", "1866", - "1876", - "1877", - "1878", + "1867", + "1868", + "1869", "1879", "1880", "1881", "1882", "1883", + "1884", + "1885", "1886", - "1887", - "1888", "1889", "1890", "1891", "1892", "1893", - "1903", - "1904", - "1905", + "1894", + "1895", + "1896", "1906", "1907", "1908", @@ -186682,61 +185120,60 @@ "1912", "1913", "1914", - "1915" + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 2, - "line": 121 + "column": 138, + "line": 22 }, "start": { - "column": 57, - "line": 11 + "column": 74, + "line": 22 } } }, { - "id": "3945", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"audioSettings\",\n Object {\n \"isMuted\": false,\n },\n Object {\n \"mergeDefaults\": true,\n },\n], but it was called with \"audioSettings\"", - "status": "Killed", - "testsCompleted": 60, - "static": false, - "killedBy": [ - "598" - ], + "id": "3960", + "mutatorName": "MethodExpression", + "replacement": "Object.keys(backgroundAudios)", + "statusReason": "app/stores/audio/useAudioStore.ts(90,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", + "status": "CompileError", + "static": false, "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "271", "272", "273", @@ -186748,9 +185185,9 @@ "279", "280", "281", - "482", - "483", - "484", + "282", + "283", + "284", "485", "486", "487", @@ -186760,9 +185197,9 @@ "491", "492", "493", - "597", - "598", - "599", + "494", + "495", + "496", "600", "601", "602", @@ -186787,9 +185224,9 @@ "621", "622", "623", - "701", - "702", - "703", + "624", + "625", + "626", "704", "705", "706", @@ -186797,9 +185234,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -186819,9 +185256,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -186834,18 +185271,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -186860,9 +185297,9 @@ "840", "841", "842", - "885", - "886", - "887", + "843", + "844", + "845", "888", "889", "890", @@ -186879,9 +185316,9 @@ "901", "902", "903", - "939", - "940", - "941", + "904", + "905", + "906", "942", "943", "944", @@ -186901,25 +185338,25 @@ "958", "959", "960", - "1030", - "1031", - "1032", + "961", + "962", + "963", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", - "1065", - "1066", - "1067", + "1055", + "1056", + "1057", "1068", "1069", "1070", @@ -186929,42 +185366,42 @@ "1074", "1075", "1076", - "1214", - "1215", - "1216", + "1077", + "1078", + "1079", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", - "1243", - "1244", - "1245", + "1236", + "1237", + "1238", "1246", "1247", "1248", "1249", "1250", - "1272", - "1273", - "1274", + "1251", + "1252", + "1253", "1275", "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -186974,45 +185411,45 @@ "1400", "1401", "1402", - "1448", - "1449", - "1450", + "1403", + "1404", + "1405", "1451", "1452", "1453", - "1479", - "1480", - "1481", + "1454", + "1455", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1622", - "1623", + "1549", + "1550", + "1551", + "1625", "1626", - "1650", - "1651", - "1652", + "1629", "1653", "1654", "1655", @@ -187020,75 +185457,75 @@ "1657", "1658", "1659", - "1688", - "1689", - "1690", + "1660", + "1661", + "1662", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1772", - "1773", - "1774", + "1759", + "1760", + "1761", "1775", - "1811", - "1812", - "1813", + "1776", + "1777", + "1778", "1814", - "1843", - "1844", - "1845", + "1815", + "1816", + "1817", "1846", - "1859", - "1860", - "1861", + "1847", + "1848", + "1849", "1862", "1863", "1864", "1865", "1866", - "1876", - "1877", - "1878", + "1867", + "1868", + "1869", "1879", "1880", "1881", "1882", "1883", + "1884", + "1885", "1886", - "1887", - "1888", "1889", "1890", "1891", "1892", "1893", - "1903", - "1904", - "1905", + "1894", + "1895", + "1896", "1906", "1907", "1908", @@ -187098,61 +185535,60 @@ "1912", "1913", "1914", - "1915" + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 152, - "line": 12 + "column": 135, + "line": 24 }, "start": { - "column": 129, - "line": 12 + "column": 35, + "line": 24 } } }, { - "id": "3946", - "mutatorName": "BooleanLiteral", - "replacement": "false", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"audioSettings\",\n Object {\n \"isMuted\": false,\n },\n Object {\n \"mergeDefaults\": true,\n },\n], but it was called with \"audioSettings\"", - "status": "Killed", - "testsCompleted": 106, + "id": "3964", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/audio/useAudioStore.ts(26,53): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "598" - ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "271", "272", "273", @@ -187164,9 +185600,9 @@ "279", "280", "281", - "482", - "483", - "484", + "282", + "283", + "284", "485", "486", "487", @@ -187176,9 +185612,9 @@ "491", "492", "493", - "597", - "598", - "599", + "494", + "495", + "496", "600", "601", "602", @@ -187203,9 +185639,9 @@ "621", "622", "623", - "701", - "702", - "703", + "624", + "625", + "626", "704", "705", "706", @@ -187213,9 +185649,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -187235,9 +185671,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -187250,18 +185686,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -187276,9 +185712,9 @@ "840", "841", "842", - "885", - "886", - "887", + "843", + "844", + "845", "888", "889", "890", @@ -187295,9 +185731,9 @@ "901", "902", "903", - "939", - "940", - "941", + "904", + "905", + "906", "942", "943", "944", @@ -187317,25 +185753,25 @@ "958", "959", "960", - "1030", - "1031", - "1032", + "961", + "962", + "963", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", - "1065", - "1066", - "1067", + "1055", + "1056", + "1057", "1068", "1069", "1070", @@ -187345,42 +185781,42 @@ "1074", "1075", "1076", - "1214", - "1215", - "1216", + "1077", + "1078", + "1079", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", - "1243", - "1244", - "1245", + "1236", + "1237", + "1238", "1246", "1247", "1248", "1249", "1250", - "1272", - "1273", - "1274", + "1251", + "1252", + "1253", "1275", "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -187390,45 +185826,45 @@ "1400", "1401", "1402", - "1448", - "1449", - "1450", + "1403", + "1404", + "1405", "1451", "1452", "1453", - "1479", - "1480", - "1481", + "1454", + "1455", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1622", - "1623", + "1549", + "1550", + "1551", + "1625", "1626", - "1650", - "1651", - "1652", + "1629", "1653", "1654", "1655", @@ -187436,75 +185872,75 @@ "1657", "1658", "1659", - "1688", - "1689", - "1690", + "1660", + "1661", + "1662", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1772", - "1773", - "1774", + "1759", + "1760", + "1761", "1775", - "1811", - "1812", - "1813", + "1776", + "1777", + "1778", "1814", - "1843", - "1844", - "1845", + "1815", + "1816", + "1817", "1846", - "1859", - "1860", - "1861", + "1847", + "1848", + "1849", "1862", "1863", "1864", "1865", "1866", - "1876", - "1877", - "1878", + "1867", + "1868", + "1869", "1879", "1880", "1881", "1882", "1883", + "1884", + "1885", "1886", - "1887", - "1888", "1889", "1890", "1891", "1892", "1893", - "1903", - "1904", - "1905", + "1894", + "1895", + "1896", "1906", "1907", "1908", @@ -187514,58 +185950,60 @@ "1912", "1913", "1914", - "1915" + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 150, - "line": 12 + "column": 4, + "line": 31 }, "start": { - "column": 146, - "line": 12 + "column": 58, + "line": 26 } } }, { - "id": "3947", - "mutatorName": "MethodExpression", - "replacement": "Object.keys(backgroundAudios)", + "id": "3961", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", "statusReason": "app/stores/audio/useAudioStore.ts(90,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", "status": "CompileError", "static": false, - "killedBy": [], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "271", "272", "273", @@ -187577,9 +186015,9 @@ "279", "280", "281", - "482", - "483", - "484", + "282", + "283", + "284", "485", "486", "487", @@ -187589,9 +186027,9 @@ "491", "492", "493", - "597", - "598", - "599", + "494", + "495", + "496", "600", "601", "602", @@ -187616,9 +186054,9 @@ "621", "622", "623", - "701", - "702", - "703", + "624", + "625", + "626", "704", "705", "706", @@ -187626,9 +186064,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -187648,9 +186086,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -187663,18 +186101,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -187689,9 +186127,9 @@ "840", "841", "842", - "885", - "886", - "887", + "843", + "844", + "845", "888", "889", "890", @@ -187708,9 +186146,9 @@ "901", "902", "903", - "939", - "940", - "941", + "904", + "905", + "906", "942", "943", "944", @@ -187730,25 +186168,25 @@ "958", "959", "960", - "1030", - "1031", - "1032", + "961", + "962", + "963", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", - "1065", - "1066", - "1067", + "1055", + "1056", + "1057", "1068", "1069", "1070", @@ -187758,42 +186196,42 @@ "1074", "1075", "1076", - "1214", - "1215", - "1216", + "1077", + "1078", + "1079", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", - "1243", - "1244", - "1245", + "1236", + "1237", + "1238", "1246", "1247", "1248", "1249", "1250", - "1272", - "1273", - "1274", + "1251", + "1252", + "1253", "1275", "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -187803,45 +186241,45 @@ "1400", "1401", "1402", - "1448", - "1449", - "1450", + "1403", + "1404", + "1405", "1451", "1452", "1453", - "1479", - "1480", - "1481", + "1454", + "1455", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1622", - "1623", + "1549", + "1550", + "1551", + "1625", "1626", - "1650", - "1651", - "1652", + "1629", "1653", "1654", "1655", @@ -187849,75 +186287,75 @@ "1657", "1658", "1659", - "1688", - "1689", - "1690", + "1660", + "1661", + "1662", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1772", - "1773", - "1774", + "1759", + "1760", + "1761", "1775", - "1811", - "1812", - "1813", + "1776", + "1777", + "1778", "1814", - "1843", - "1844", - "1845", + "1815", + "1816", + "1817", "1846", - "1859", - "1860", - "1861", + "1847", + "1848", + "1849", "1862", "1863", "1864", "1865", "1866", - "1876", - "1877", - "1878", + "1867", + "1868", + "1869", "1879", "1880", "1881", "1882", "1883", + "1884", + "1885", "1886", - "1887", - "1888", "1889", "1890", "1891", "1892", "1893", - "1903", - "1904", - "1905", + "1894", + "1895", + "1896", "1906", "1907", "1908", @@ -187927,58 +186365,60 @@ "1912", "1913", "1914", - "1915" + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 139, - "line": 22 + "column": 134, + "line": 24 }, "start": { - "column": 37, - "line": 22 + "column": 72, + "line": 24 } } }, { - "id": "3948", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "app/stores/audio/useAudioStore.ts(90,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", + "id": "3970", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "app/stores/audio/useAudioStore.ts(34,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", "status": "CompileError", "static": false, - "killedBy": [], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "271", "272", "273", @@ -187990,9 +186430,9 @@ "279", "280", "281", - "482", - "483", - "484", + "282", + "283", + "284", "485", "486", "487", @@ -188002,9 +186442,9 @@ "491", "492", "493", - "597", - "598", - "599", + "494", + "495", + "496", "600", "601", "602", @@ -188029,9 +186469,9 @@ "621", "622", "623", - "701", - "702", - "703", + "624", + "625", + "626", "704", "705", "706", @@ -188039,9 +186479,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -188061,9 +186501,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -188076,18 +186516,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -188102,9 +186542,9 @@ "840", "841", "842", - "885", - "886", - "887", + "843", + "844", + "845", "888", "889", "890", @@ -188121,9 +186561,9 @@ "901", "902", "903", - "939", - "940", - "941", + "904", + "905", + "906", "942", "943", "944", @@ -188143,25 +186583,25 @@ "958", "959", "960", - "1030", - "1031", - "1032", + "961", + "962", + "963", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", - "1065", - "1066", - "1067", + "1055", + "1056", + "1057", "1068", "1069", "1070", @@ -188171,42 +186611,42 @@ "1074", "1075", "1076", - "1214", - "1215", - "1216", + "1077", + "1078", + "1079", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", - "1243", - "1244", - "1245", + "1236", + "1237", + "1238", "1246", "1247", "1248", "1249", "1250", - "1272", - "1273", - "1274", + "1251", + "1252", + "1253", "1275", "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -188216,45 +186656,45 @@ "1400", "1401", "1402", - "1448", - "1449", - "1450", + "1403", + "1404", + "1405", "1451", "1452", "1453", - "1479", - "1480", - "1481", + "1454", + "1455", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1622", - "1623", + "1549", + "1550", + "1551", + "1625", "1626", - "1650", - "1651", - "1652", + "1629", "1653", "1654", "1655", @@ -188262,75 +186702,75 @@ "1657", "1658", "1659", - "1688", - "1689", - "1690", + "1660", + "1661", + "1662", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1772", - "1773", - "1774", + "1759", + "1760", + "1761", "1775", - "1811", - "1812", - "1813", + "1776", + "1777", + "1778", "1814", - "1843", - "1844", - "1845", + "1815", + "1816", + "1817", "1846", - "1859", - "1860", - "1861", + "1847", + "1848", + "1849", "1862", "1863", "1864", "1865", "1866", - "1876", - "1877", - "1878", + "1867", + "1868", + "1869", "1879", "1880", "1881", "1882", "1883", + "1884", + "1885", "1886", - "1887", - "1888", "1889", "1890", "1891", "1892", "1893", - "1903", - "1904", - "1905", + "1894", + "1895", + "1896", "1906", "1907", "1908", @@ -188340,61 +186780,60 @@ "1912", "1913", "1914", - "1915" + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 138, - "line": 22 + "column": 6, + "line": 38 }, "start": { - "column": 74, - "line": 22 + "column": 21, + "line": 34 } } }, { - "id": "3949", - "mutatorName": "MethodExpression", - "replacement": "name.endsWith(\"night-\")", - "statusReason": "expected [] to strictly equal [ 'night-1', 'night-2', 'night-3' ]", - "status": "Killed", - "testsCompleted": 62, + "id": "3965", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "app/stores/audio/useAudioStore.ts(27,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", + "status": "CompileError", "static": false, - "killedBy": [ - "600" - ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "271", "272", "273", @@ -188406,9 +186845,9 @@ "279", "280", "281", - "482", - "483", - "484", + "282", + "283", + "284", "485", "486", "487", @@ -188418,9 +186857,9 @@ "491", "492", "493", - "597", - "598", - "599", + "494", + "495", + "496", "600", "601", "602", @@ -188445,9 +186884,9 @@ "621", "622", "623", - "701", - "702", - "703", + "624", + "625", + "626", "704", "705", "706", @@ -188455,9 +186894,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -188477,9 +186916,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -188492,18 +186931,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -188518,9 +186957,9 @@ "840", "841", "842", - "885", - "886", - "887", + "843", + "844", + "845", "888", "889", "890", @@ -188537,9 +186976,9 @@ "901", "902", "903", - "939", - "940", - "941", + "904", + "905", + "906", "942", "943", "944", @@ -188559,25 +186998,25 @@ "958", "959", "960", - "1030", - "1031", - "1032", + "961", + "962", + "963", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", - "1065", - "1066", - "1067", + "1055", + "1056", + "1057", "1068", "1069", "1070", @@ -188587,42 +187026,42 @@ "1074", "1075", "1076", - "1214", - "1215", - "1216", + "1077", + "1078", + "1079", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", - "1243", - "1244", - "1245", + "1236", + "1237", + "1238", "1246", "1247", "1248", "1249", "1250", - "1272", - "1273", - "1274", + "1251", + "1252", + "1253", "1275", "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -188632,45 +187071,45 @@ "1400", "1401", "1402", - "1448", - "1449", - "1450", + "1403", + "1404", + "1405", "1451", "1452", "1453", - "1479", - "1480", - "1481", + "1454", + "1455", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1622", - "1623", + "1549", + "1550", + "1551", + "1625", "1626", - "1650", - "1651", - "1652", + "1629", "1653", "1654", "1655", @@ -188678,75 +187117,75 @@ "1657", "1658", "1659", - "1688", - "1689", - "1690", + "1660", + "1661", + "1662", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1772", - "1773", - "1774", + "1759", + "1760", + "1761", "1775", - "1811", - "1812", - "1813", + "1776", + "1777", + "1778", "1814", - "1843", - "1844", - "1845", + "1815", + "1816", + "1817", "1846", - "1859", - "1860", - "1861", + "1847", + "1848", + "1849", "1862", "1863", "1864", "1865", "1866", - "1876", - "1877", - "1878", + "1867", + "1868", + "1869", "1879", "1880", "1881", "1882", "1883", + "1884", + "1885", "1886", - "1887", - "1888", "1889", "1890", "1891", "1892", "1893", - "1903", - "1904", - "1905", + "1894", + "1895", + "1896", "1906", "1907", "1908", @@ -188756,61 +187195,60 @@ "1912", "1913", "1914", - "1915" + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 138, - "line": 22 + "column": 6, + "line": 30 }, "start": { - "column": 113, - "line": 22 + "column": 21, + "line": 27 } } }, { - "id": "3950", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "expected [ 'day-1', 'day-2', 'night-1', …(2) ] to strictly equal [ 'night-1', 'night-2', 'night-3' ]", - "status": "Killed", - "testsCompleted": 17, + "id": "3969", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/audio/useAudioStore.ts(33,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "600" - ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "271", "272", "273", @@ -188822,9 +187260,9 @@ "279", "280", "281", - "482", - "483", - "484", + "282", + "283", + "284", "485", "486", "487", @@ -188834,9 +187272,9 @@ "491", "492", "493", - "597", - "598", - "599", + "494", + "495", + "496", "600", "601", "602", @@ -188861,9 +187299,9 @@ "621", "622", "623", - "701", - "702", - "703", + "624", + "625", + "626", "704", "705", "706", @@ -188871,9 +187309,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -188893,9 +187331,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -188908,18 +187346,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -188934,9 +187372,9 @@ "840", "841", "842", - "885", - "886", - "887", + "843", + "844", + "845", "888", "889", "890", @@ -188953,9 +187391,9 @@ "901", "902", "903", - "939", - "940", - "941", + "904", + "905", + "906", "942", "943", "944", @@ -188975,25 +187413,25 @@ "958", "959", "960", - "1030", - "1031", - "1032", + "961", + "962", + "963", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", - "1065", - "1066", - "1067", + "1055", + "1056", + "1057", "1068", "1069", "1070", @@ -189003,42 +187441,42 @@ "1074", "1075", "1076", - "1214", - "1215", - "1216", + "1077", + "1078", + "1079", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", - "1243", - "1244", - "1245", + "1236", + "1237", + "1238", "1246", "1247", "1248", "1249", "1250", - "1272", - "1273", - "1274", + "1251", + "1252", + "1253", "1275", "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -189048,45 +187486,45 @@ "1400", "1401", "1402", - "1448", - "1449", - "1450", + "1403", + "1404", + "1405", "1451", "1452", "1453", - "1479", - "1480", - "1481", + "1454", + "1455", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1622", - "1623", + "1549", + "1550", + "1551", + "1625", "1626", - "1650", - "1651", - "1652", + "1629", "1653", "1654", "1655", @@ -189094,75 +187532,75 @@ "1657", "1658", "1659", - "1688", - "1689", - "1690", + "1660", + "1661", + "1662", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1772", - "1773", - "1774", + "1759", + "1760", + "1761", "1775", - "1811", - "1812", - "1813", + "1776", + "1777", + "1778", "1814", - "1843", - "1844", - "1845", + "1815", + "1816", + "1817", "1846", - "1859", - "1860", - "1861", + "1847", + "1848", + "1849", "1862", "1863", "1864", "1865", "1866", - "1876", - "1877", - "1878", + "1867", + "1868", + "1869", "1879", "1880", "1881", "1882", "1883", + "1884", + "1885", "1886", - "1887", - "1888", "1889", "1890", "1891", "1892", "1893", - "1903", - "1904", - "1905", + "1894", + "1895", + "1896", "1906", "1907", "1908", @@ -189172,58 +187610,60 @@ "1912", "1913", "1914", - "1915" + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 137, - "line": 22 + "column": 4, + "line": 39 }, "start": { - "column": 129, - "line": 22 + "column": 66, + "line": 33 } } }, { - "id": "3951", - "mutatorName": "MethodExpression", - "replacement": "Object.keys(backgroundAudios)", - "statusReason": "app/stores/audio/useAudioStore.ts(90,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", + "id": "4005", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "tests/unit/specs/app.nuxt.spec.ts(54,23): error TS2339: Property 'setHowlerAudioSettingsFromAudioStoreState' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/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(76,15): error TS2339: Property 'playingBackgroundAudioName' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(82,15): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(88,15): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(94,15): error TS2339: Property 'isMuted' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(103,18): error TS2339: Property 'isMuted' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(104,18): error TS2339: Property 'setHowlerAudioSettingsFromAudioStoreState' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(112,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(112,29): error TS2339: Property 'loadSoundEffects' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(116,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(123,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(123,33): error TS2339: Property 'loadBackgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(127,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(134,15): error TS2339: Property 'loadAllAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(135,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(135,33): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(139,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(142,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(149,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(149,29): error TS2339: Property 'playSoundEffect' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(159,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(159,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(163,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(169,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(169,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(170,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(178,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(178,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(179,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(189,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(189,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(197,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(197,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(205,15): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(209,30): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(220,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(221,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(228,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(229,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(231,83): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(236,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(238,83): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(243,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(244,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(245,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(252,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(253,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(254,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(261,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(262,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(264,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(273,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(276,25): error TS2339: Property 'isMuted' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(281,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(289,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(292,25): error TS2339: Property 'audioSettingsFromLocalStorage' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(299,15): error TS2339: Property 'toggleMute' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(300,18): error TS2339: Property 'isMuted' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(303,25): error TS2339: Property 'isMuted' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", "status": "CompileError", "static": false, - "killedBy": [], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", "271", "272", "273", @@ -189235,9 +187675,9 @@ "279", "280", "281", - "482", - "483", - "484", + "282", + "283", + "284", "485", "486", "487", @@ -189247,9 +187687,9 @@ "491", "492", "493", - "597", - "598", - "599", + "494", + "495", + "496", "600", "601", "602", @@ -189274,9 +187714,9 @@ "621", "622", "623", - "701", - "702", - "703", + "624", + "625", + "626", "704", "705", "706", @@ -189284,9 +187724,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -189306,9 +187746,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -189321,18 +187761,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -189347,9 +187787,9 @@ "840", "841", "842", - "885", - "886", - "887", + "843", + "844", + "845", "888", "889", "890", @@ -189366,9 +187806,9 @@ "901", "902", "903", - "939", - "940", - "941", + "904", + "905", + "906", "942", "943", "944", @@ -189388,25 +187828,25 @@ "958", "959", "960", - "1030", - "1031", - "1032", + "961", + "962", + "963", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", "1054", - "1065", - "1066", - "1067", + "1055", + "1056", + "1057", "1068", "1069", "1070", @@ -189416,42 +187856,42 @@ "1074", "1075", "1076", - "1214", - "1215", - "1216", + "1077", + "1078", + "1079", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", - "1243", - "1244", - "1245", + "1236", + "1237", + "1238", "1246", "1247", "1248", "1249", "1250", - "1272", - "1273", - "1274", + "1251", + "1252", + "1253", "1275", "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -189461,45 +187901,45 @@ "1400", "1401", "1402", - "1448", - "1449", - "1450", + "1403", + "1404", + "1405", "1451", "1452", "1453", - "1479", - "1480", - "1481", + "1454", + "1455", + "1456", "1482", "1483", - "1491", - "1492", - "1493", + "1484", + "1485", + "1486", "1494", "1495", - "1506", - "1507", - "1508", + "1496", + "1497", + "1498", "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1622", - "1623", + "1549", + "1550", + "1551", + "1625", "1626", - "1650", - "1651", - "1652", + "1629", "1653", "1654", "1655", @@ -189507,75 +187947,75 @@ "1657", "1658", "1659", - "1688", - "1689", - "1690", + "1660", + "1661", + "1662", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1772", - "1773", - "1774", + "1759", + "1760", + "1761", "1775", - "1811", - "1812", - "1813", + "1776", + "1777", + "1778", "1814", - "1843", - "1844", - "1845", + "1815", + "1816", + "1817", "1846", - "1859", - "1860", - "1861", + "1847", + "1848", + "1849", "1862", "1863", "1864", "1865", "1866", - "1876", - "1877", - "1878", + "1867", + "1868", + "1869", "1879", "1880", "1881", "1882", "1883", + "1884", + "1885", "1886", - "1887", - "1888", "1889", "1890", "1891", "1892", "1893", - "1903", - "1904", - "1905", + "1894", + "1895", + "1896", "1906", "1907", "1908", @@ -189585,7174 +188025,3628 @@ "1912", "1913", "1914", - "1915" + "1915", + "1916", + "1917", + "1918" ], "location": { "end": { - "column": 135, - "line": 24 + "column": 4, + "line": 120 }, "start": { - "column": 35, - "line": 24 + "column": 10, + "line": 102 } } - }, + } + ], + "source": "import { useLocalStorage } from \"@vueuse/core\";\nimport { Howl, Howler } from \"howler\";\nimport { draw } from \"radash\";\nimport { defineStore } from \"pinia\";\nimport type { GamePhaseName } from \"~/composables/api/game/types/game-phase/game-phase.types\";\nimport { BACKGROUND_AUDIO_NAMES, DEFAULT_AUDIO_SETTINGS, SOUND_EFFECT_NAMES } from \"~/stores/audio/constants/audio.constants\";\nimport type { AudioSettings, BackgroundAudioName, SoundEffectName } from \"~/stores/audio/types/audio.types\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { LocalStorageKeys } from \"~/utils/enums/local-storage.enums\";\n\nconst useAudioStore = defineStore(StoreIds.AUDIO, () => {\n const audioSettingsFromLocalStorage = useLocalStorage(LocalStorageKeys.AUDIO_SETTINGS, DEFAULT_AUDIO_SETTINGS, { mergeDefaults: true });\n\n const isMuted = ref(audioSettingsFromLocalStorage.value.isMuted);\n\n const soundEffects = Object.fromEntries(SOUND_EFFECT_NAMES.map(name => [name, createSoundEffect(name)])) as Record;\n\n const backgroundAudios = Object.fromEntries(BACKGROUND_AUDIO_NAMES.map(name => [name, createBackgroundAudio(name)])) as Record;\n\n const playingBackgroundAudioName = ref();\n\n const nightBackgroundAudioNames = Object.keys(backgroundAudios).filter((name): name is BackgroundAudioName => name.startsWith(\"night-\"));\n\n const dayBackgroundAudioNames = Object.keys(backgroundAudios).filter((name): name is BackgroundAudioName => name.startsWith(\"day-\"));\n\n function createSoundEffect(src: SoundEffectName): Howl {\n return new Howl({\n preload: false,\n src: [`/audio/sound-effects/${src}.webm`],\n });\n }\n\n function createBackgroundAudio(src: BackgroundAudioName): Howl {\n return new Howl({\n preload: false,\n src: [`/audio/audio-backgrounds/${src}.webm`],\n loop: true,\n });\n }\n\n function setHowlerAudioSettingsFromAudioStoreState(): void {\n Howler.mute(isMuted.value);\n }\n\n function loadSoundEffects(): void {\n Object.values(soundEffects).forEach(soundEffect => soundEffect.load());\n }\n\n function loadBackgroundAudios(): void {\n Object.values(backgroundAudios).forEach(backgroundAudio => backgroundAudio.load());\n }\n\n function loadAllAudios(): void {\n loadBackgroundAudios();\n loadSoundEffects();\n }\n\n function playSoundEffect(soundEffectName: SoundEffectName): void {\n soundEffects[soundEffectName].play();\n }\n\n function fadeOutPlayingBackgroundAudio(): void {\n if (!playingBackgroundAudioName.value) {\n return;\n }\n const fadeOutDuration = 1000;\n const playingBackgroundAudio = backgroundAudios[playingBackgroundAudioName.value];\n playingBackgroundAudio.fade(1, 0, fadeOutDuration);\n playingBackgroundAudioName.value = undefined;\n setTimeout(() => playingBackgroundAudio.stop(), fadeOutDuration);\n }\n\n function playBackgroundAudio(backgroundAudioName: BackgroundAudioName): void {\n const fadeInDuration = 1000;\n backgroundAudios[backgroundAudioName].fade(0, 1, fadeInDuration);\n backgroundAudios[backgroundAudioName].play();\n playingBackgroundAudioName.value = backgroundAudioName;\n }\n\n function playRandomGamePhaseBackgroundAudio(gamePhase: GamePhaseName): void {\n const backgroundAudioNames = gamePhase === \"night\" ? nightBackgroundAudioNames : dayBackgroundAudioNames;\n if (playingBackgroundAudioName.value && backgroundAudioNames.includes(playingBackgroundAudioName.value)) {\n return;\n }\n const randomGamePhaseBackgroundAudioName = draw(backgroundAudioNames);\n if (!randomGamePhaseBackgroundAudioName) {\n return;\n }\n fadeOutPlayingBackgroundAudio();\n playBackgroundAudio(randomGamePhaseBackgroundAudioName);\n }\n\n function setMute(isAudioMuted: boolean): void {\n isMuted.value = isAudioMuted;\n Howler.mute(isAudioMuted);\n audioSettingsFromLocalStorage.value.isMuted = isAudioMuted;\n }\n\n function toggleMute(): void {\n setMute(!isMuted.value);\n }\n return {\n audioSettingsFromLocalStorage,\n isMuted,\n soundEffects,\n backgroundAudios,\n playingBackgroundAudioName,\n nightBackgroundAudioNames,\n dayBackgroundAudioNames,\n setHowlerAudioSettingsFromAudioStoreState,\n loadSoundEffects,\n loadBackgroundAudios,\n loadAllAudios,\n playSoundEffect,\n fadeOutPlayingBackgroundAudio,\n playBackgroundAudio,\n playRandomGamePhaseBackgroundAudio,\n setMute,\n toggleMute,\n };\n});\n\nexport { useAudioStore };" + }, + "app/stores/game/create-game-dto/useCreateGameDtoStore.ts": { + "language": "typescript", + "mutants": [ { - "id": "3952", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "app/stores/audio/useAudioStore.ts(90,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", - "status": "CompileError", + "id": "4007", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"gameOptions\",\n Object {\n \"composition\": Object {\n \"isHidden\": false,\n },\n \"roles\": Object {\n \"actor\": Object {\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"areRevealedOnDeath\": true,\n \"bearTamer\": Object {\n \"doesGrowlOnWerewolvesSide\": true,\n },\n \"bigBadWolf\": Object {\n \"isPowerlessIfWerewolfDies\": true,\n },\n \"cupid\": Object {\n \"lovers\": Object {\n \"doRevealRoleToEachOther\": false,\n },\n \"mustWinWithLovers\": false,\n },\n \"defender\": Object {\n \"canProtectTwice\": false,\n },\n \"doSkipCallIfNoTarget\": false,\n \"elder\": Object {\n \"doesTakeHisRevenge\": true,\n \"livesCountAgainstWerewolves\": 2,\n },\n \"fox\": Object {\n \"isPowerlessIfMissesWerewolf\": true,\n },\n \"idiot\": Object {\n \"doesDieOnElderDeath\": true,\n },\n \"littleGirl\": Object {\n \"isProtectedByDefender\": false,\n },\n \"piedPiper\": Object {\n \"areCharmedPeopleRevealed\": false,\n \"charmedPeopleCountPerNight\": 2,\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"prejudicedManipulator\": Object {\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"scandalmonger\": Object {\n \"markPenalty\": 2,\n },\n \"seer\": Object {\n \"canSeeRoles\": true,\n \"isTalkative\": true,\n },\n \"sheriff\": Object {\n \"electedAt\": Object {\n \"phaseName\": \"night\",\n \"turn\": 1,\n },\n \"hasDoubledVote\": true,\n \"isEnabled\": true,\n \"mustSettleTieInVotes\": true,\n },\n \"stutteringJudge\": Object {\n \"voteRequestsCount\": 1,\n },\n \"thief\": Object {\n \"isChosenCardRevealed\": false,\n \"mustChooseBetweenWerewolves\": true,\n },\n \"threeBrothers\": Object {\n \"wakingUpInterval\": 2,\n },\n \"twoSisters\": Object {\n \"wakingUpInterval\": 2,\n },\n \"werewolf\": Object {\n \"canEatEachOther\": false,\n },\n \"whiteWerewolf\": Object {\n \"wakingUpInterval\": 2,\n },\n \"wildChild\": Object {\n \"isTransformationRevealed\": false,\n },\n \"witch\": Object {\n \"doesKnowWerewolvesTargets\": true,\n },\n \"wolfHound\": Object {\n \"isChosenSideRevealed\": false,\n \"isSideRandomlyChosen\": false,\n },\n },\n \"votes\": Object {\n \"canBeSkipped\": true,\n \"duration\": 180,\n },\n },\n Object {\n \"mergeDefaults\": true,\n },\n], but it was called with \"gameOptions\"", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "39" + ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", "701", "702", "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", "800", "801", "802", - "803", - "804", - "805", - "806", - "807", - "808", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", "826", "827", "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", + "933", + "934", + "935", + "936", + "937", + "938", "939", "940", "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", "1030", "1031", "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", "1048", "1049", "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", "1319", "1320", "1321", - "1322", - "1323", - "1324", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", "1479", "1480", "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", + "1499", + "1500", + "1501", + "1502", + "1503", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", "1543", "1544", "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1677", + "1678", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { - "column": 134, + "column": 140, "line": 24 }, "start": { - "column": 72, + "column": 117, "line": 24 } } }, { - "id": "3953", - "mutatorName": "MethodExpression", - "replacement": "name.endsWith(\"day-\")", - "statusReason": "expected [] to strictly equal [ 'day-1', 'day-2' ]", + "id": "4008", + "mutatorName": "BooleanLiteral", + "replacement": "false", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"gameOptions\",\n Object {\n \"composition\": Object {\n \"isHidden\": false,\n },\n \"roles\": Object {\n \"actor\": Object {\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"areRevealedOnDeath\": true,\n \"bearTamer\": Object {\n \"doesGrowlOnWerewolvesSide\": true,\n },\n \"bigBadWolf\": Object {\n \"isPowerlessIfWerewolfDies\": true,\n },\n \"cupid\": Object {\n \"lovers\": Object {\n \"doRevealRoleToEachOther\": false,\n },\n \"mustWinWithLovers\": false,\n },\n \"defender\": Object {\n \"canProtectTwice\": false,\n },\n \"doSkipCallIfNoTarget\": false,\n \"elder\": Object {\n \"doesTakeHisRevenge\": true,\n \"livesCountAgainstWerewolves\": 2,\n },\n \"fox\": Object {\n \"isPowerlessIfMissesWerewolf\": true,\n },\n \"idiot\": Object {\n \"doesDieOnElderDeath\": true,\n },\n \"littleGirl\": Object {\n \"isProtectedByDefender\": false,\n },\n \"piedPiper\": Object {\n \"areCharmedPeopleRevealed\": false,\n \"charmedPeopleCountPerNight\": 2,\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"prejudicedManipulator\": Object {\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"scandalmonger\": Object {\n \"markPenalty\": 2,\n },\n \"seer\": Object {\n \"canSeeRoles\": true,\n \"isTalkative\": true,\n },\n \"sheriff\": Object {\n \"electedAt\": Object {\n \"phaseName\": \"night\",\n \"turn\": 1,\n },\n \"hasDoubledVote\": true,\n \"isEnabled\": true,\n \"mustSettleTieInVotes\": true,\n },\n \"stutteringJudge\": Object {\n \"voteRequestsCount\": 1,\n },\n \"thief\": Object {\n \"isChosenCardRevealed\": false,\n \"mustChooseBetweenWerewolves\": true,\n },\n \"threeBrothers\": Object {\n \"wakingUpInterval\": 2,\n },\n \"twoSisters\": Object {\n \"wakingUpInterval\": 2,\n },\n \"werewolf\": Object {\n \"canEatEachOther\": false,\n },\n \"whiteWerewolf\": Object {\n \"wakingUpInterval\": 2,\n },\n \"wildChild\": Object {\n \"isTransformationRevealed\": false,\n },\n \"witch\": Object {\n \"doesKnowWerewolvesTargets\": true,\n },\n \"wolfHound\": Object {\n \"isChosenSideRevealed\": false,\n \"isSideRandomlyChosen\": false,\n },\n },\n \"votes\": Object {\n \"canBeSkipped\": true,\n \"duration\": 180,\n },\n },\n Object {\n \"mergeDefaults\": true,\n },\n], but it was called with \"gameOptions\"", "status": "Killed", - "testsCompleted": 5, + "testsCompleted": 1, "static": false, "killedBy": [ - "601" + "39" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", "482", "483", "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", "701", "702", "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", "800", "801", "802", - "803", - "804", - "805", - "806", - "807", - "808", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", "826", "827", "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", + "933", + "934", + "935", + "936", + "937", + "938", "939", "940", "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", "1030", "1031", "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", "1048", "1049", "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", "1319", "1320", "1321", - "1322", - "1323", - "1324", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", "1479", "1480", "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", + "1499", + "1500", + "1501", + "1502", + "1503", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", "1543", "1544", "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1677", + "1678", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { - "column": 134, + "column": 138, "line": 24 }, "start": { - "column": 111, + "column": 134, "line": 24 } } }, { - "id": "3954", + "id": "4013", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(38,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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "41", + "42", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" + ], + "location": { + "end": { + "column": 4, + "line": 43 + }, + "start": { + "column": 82, + "line": 38 + } + } + }, + { + "id": "4014", + "mutatorName": "ArrayDeclaration", + "replacement": "[]", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "41" + ], + "coveredBy": [ + "41", + "42", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" + ], + "location": { + "end": { + "column": 91, + "line": 39 + }, + "start": { + "column": 48, + "line": 39 + } + } + }, + { + "id": "4015", "mutatorName": "StringLiteral", "replacement": "\"\"", - "statusReason": "expected [ 'day-1', 'day-2', 'night-1', …(2) ] to strictly equal [ 'day-1', 'day-2' ]", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(39,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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "41", + "42", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" + ], + "location": { + "end": { + "column": 69, + "line": 39 + }, + "start": { + "column": 49, + "line": 39 + } + } + }, + { + "id": "4016", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(39,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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "41", + "42", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" + ], + "location": { + "end": { + "column": 83, + "line": 39 + }, + "start": { + "column": 71, + "line": 39 + } + } + }, + { + "id": "4017", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(39,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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "41", + "42", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" + ], + "location": { + "end": { + "column": 90, + "line": 39 + }, + "start": { + "column": 85, + "line": 39 + } + } + }, + { + "id": "4018", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be falsy", "status": "Killed", - "testsCompleted": 18, + "testsCompleted": 2, "static": false, "killedBy": [ - "601" + "42" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "41", + "42", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" ], "location": { "end": { - "column": 133, - "line": 24 + "column": 56, + "line": 42 }, "start": { - "column": 127, - "line": 24 + "column": 12, + "line": 42 } } }, { - "id": "3955", + "id": "4019", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "41" + ], + "coveredBy": [ + "41", + "42", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" + ], + "location": { + "end": { + "column": 56, + "line": 42 + }, + "start": { + "column": 12, + "line": 42 + } + } + }, + { + "id": "4020", + "mutatorName": "EqualityOperator", + "replacement": "playersWithPositionDependantRoles.length >= 0", + "statusReason": "expected true to be falsy", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "42" + ], + "coveredBy": [ + "41", + "42", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" + ], + "location": { + "end": { + "column": 56, + "line": 42 + }, + "start": { + "column": 12, + "line": 42 + } + } + }, + { + "id": "4021", + "mutatorName": "EqualityOperator", + "replacement": "playersWithPositionDependantRoles.length <= 0", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "41" + ], + "coveredBy": [ + "41", + "42", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" + ], + "location": { + "end": { + "column": 56, + "line": 42 + }, + "start": { + "column": 12, + "line": 42 + } + } + }, + { + "id": "4022", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/stores/audio/useAudioStore.ts(26,53): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(45,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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "43", + "44", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "758" ], "location": { "end": { "column": 4, - "line": 31 + "line": 49 }, "start": { - "column": 58, - "line": 26 + "column": 89, + "line": 45 } } }, { - "id": "3956", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/audio/useAudioStore.ts(27,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", - "status": "CompileError", + "id": "4023", + "mutatorName": "ArrayDeclaration", + "replacement": "[]", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "43" + ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "43", + "44", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "758" ], "location": { "end": { - "column": 6, - "line": 30 + "column": 132, + "line": 46 }, "start": { - "column": 21, - "line": 27 + "column": 95, + "line": 46 } } }, { - "id": "3957", - "mutatorName": "BooleanLiteral", + "id": "4024", + "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected 1st \"spy\" call to have been called with [ { preload: false, …(1) } ]", + "statusReason": "expected true to be falsy", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "44" + ], + "coveredBy": [ + "43", + "44", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758" + ], + "location": { + "end": { + "column": 63, + "line": 48 + }, + "start": { + "column": 12, + "line": 48 + } + } + }, + { + "id": "4025", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected false to be truthy", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "597" + "43" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "43", + "44", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "758" ], "location": { "end": { - "column": 21, - "line": 28 + "column": 63, + "line": 48 }, "start": { - "column": 16, - "line": 28 + "column": 12, + "line": 48 } } }, { - "id": "3958", - "mutatorName": "ArrayDeclaration", - "replacement": "[]", - "statusReason": "expected 1st \"spy\" call to have been called with [ { preload: false, …(1) } ]", + "id": "4026", + "mutatorName": "EqualityOperator", + "replacement": "playersWithAdditionalCardsDependantRoles.length >= 0", + "statusReason": "expected true to be falsy", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "44" + ], + "coveredBy": [ + "43", + "44", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758" + ], + "location": { + "end": { + "column": 63, + "line": 48 + }, + "start": { + "column": 12, + "line": 48 + } + } + }, + { + "id": "4027", + "mutatorName": "EqualityOperator", + "replacement": "playersWithAdditionalCardsDependantRoles.length <= 0", + "statusReason": "expected false to be truthy", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "597" + "43" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "43", + "44", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "758" ], "location": { "end": { - "column": 48, - "line": 29 + "column": 63, + "line": 48 }, "start": { "column": 12, - "line": 29 + "line": 48 } } }, { - "id": "3959", - "mutatorName": "StringLiteral", - "replacement": "``", - "statusReason": "expected 1st \"spy\" call to have been called with [ { preload: false, …(1) } ]", + "id": "4028", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "597" + "45" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "45", + "46" ], "location": { "end": { - "column": 47, - "line": 29 + "column": 4, + "line": 54 }, "start": { - "column": 13, - "line": 29 + "column": 70, + "line": 51 } } }, { - "id": "3960", + "id": "4029", + "mutatorName": "BooleanLiteral", + "replacement": "false", + "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ players: [], …(2) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "48" + ], + "coveredBy": [ + "48" + ], + "location": { + "end": { + "column": 68, + "line": 56 + }, + "start": { + "column": 64, + "line": 56 + } + } + }, + { + "id": "4030", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/stores/audio/useAudioStore.ts(33,61): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ players: [], …(2) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "47" + ], + "coveredBy": [ + "47", + "48", + "49" + ], + "location": { + "end": { + "column": 4, + "line": 67 + }, + "start": { + "column": 76, + "line": 56 + } + } + }, + { + "id": "4031", + "mutatorName": "BooleanLiteral", + "replacement": "doesRetrieveLocalStorageValues", + "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ players: [], …(2) }", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "48" + ], + "coveredBy": [ + "47", + "48", + "49" + ], + "location": { + "end": { + "column": 40, + "line": 57 + }, + "start": { + "column": 9, + "line": 57 + } + } + }, + { + "id": "4032", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ players: [], …(2) }", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "48" + ], + "coveredBy": [ + "47", + "48", + "49" + ], + "location": { + "end": { + "column": 40, + "line": 57 + }, + "start": { + "column": 9, + "line": 57 + } + } + }, + { + "id": "4033", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected { value: _GameOptions{ …(3) } } to strictly equal { value: _GameOptions{ …(3) } }", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "49" + ], + "coveredBy": [ + "47", + "48", + "49" + ], + "location": { + "end": { + "column": 40, + "line": 57 + }, + "start": { + "column": 9, + "line": 57 + } + } + }, + { + "id": "4034", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected { value: _GameOptions{ …(3) } } to strictly equal { value: _GameOptions{ …(3) } }", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "49" + ], + "coveredBy": [ + "47", + "49" + ], + "location": { + "end": { + "column": 6, + "line": 62 + }, + "start": { + "column": 42, + "line": 57 + } + } + }, + { + "id": "4035", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(63,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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "48" + ], + "location": { + "end": { + "column": 6, + "line": 66 + }, + "start": { + "column": 48, + "line": 63 + } + } + }, + { + "id": "4036", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _GameOptions{ …(3) } to strictly equal _GameOptions{ …(3) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "50" + ], + "coveredBy": [ + "50", + "51" ], "location": { "end": { "column": 4, - "line": 39 + "line": 72 }, "start": { - "column": 66, - "line": 33 + "column": 46, + "line": 69 } } }, { - "id": "3961", - "mutatorName": "ObjectLiteral", + "id": "4037", + "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/stores/audio/useAudioStore.ts(34,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", + "statusReason": "expected _GameOptions{ …(3) } to strictly equal _GameOptions{ …(3) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "52" + ], + "coveredBy": [ + "52" + ], + "location": { + "end": { + "column": 4, + "line": 78 + }, + "start": { + "column": 89, + "line": 74 + } + } + }, + { + "id": "4038", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected { value: { …(3) } } to strictly equal { value: _GameOptions{ …(3) } }", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "46" + ], + "coveredBy": [ + "45", + "46", + "47", + "49", + "50", + "51", + "52", + "53" + ], + "location": { + "end": { + "column": 4, + "line": 82 + }, + "start": { + "column": 59, + "line": 80 + } + } + }, + { + "id": "4039", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected [ …(3) ] to strictly equal [ Array(1) ]", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "54" + ], + "coveredBy": [ + "54", + "55" + ], + "location": { + "end": { + "column": 4, + "line": 90 + }, + "start": { + "column": 67, + "line": 84 + } + } + }, + { + "id": "4040", + "mutatorName": "BooleanLiteral", + "replacement": "createGameDto.value.additionalCards", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,89): error TS7031: Binding element 'recipient' implicitly has an 'any' type.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "54", + "55" + ], + "location": { + "end": { + "column": 45, + "line": 85 + }, + "start": { + "column": 9, + "line": 85 + } + } + }, + { + "id": "4041", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "54", + "55" + ], + "location": { + "end": { + "column": 45, + "line": 85 + }, + "start": { + "column": 9, + "line": 85 + } + } + }, + { + "id": "4042", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "54", + "55" + ], + "location": { + "end": { + "column": 45, + "line": 85 + }, + "start": { + "column": 9, + "line": 85 + } + } + }, + { + "id": "4043", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(87,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "55" ], "location": { "end": { "column": 6, - "line": 38 + "line": 87 }, "start": { - "column": 21, - "line": 34 + "column": 47, + "line": 85 } } }, { - "id": "3962", - "mutatorName": "BooleanLiteral", + "id": "4044", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "54" + ], + "location": { + "end": { + "column": 91, + "line": 88 + }, + "start": { + "column": 65, + "line": 88 + } + } + }, + { + "id": "4045", + "mutatorName": "MethodExpression", + "replacement": "createGameDto.value.additionalCards", + "statusReason": "expected [ …(3) ] to strictly equal [ Array(1) ]", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "54" + ], + "coveredBy": [ + "54" + ], + "location": { + "end": { + "column": 132, + "line": 89 + }, + "start": { + "column": 43, + "line": 89 + } + } + }, + { + "id": "4046", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected [] to strictly equal [ Array(1) ]", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "54" + ], + "coveredBy": [ + "54" + ], + "location": { + "end": { + "column": 131, + "line": 89 + }, + "start": { + "column": 86, + "line": 89 + } + } + }, + { + "id": "4047", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ …(3) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "56" + ], + "coveredBy": [ + "56" + ], + "location": { + "end": { + "column": 4, + "line": 94 + }, + "start": { + "column": 72, + "line": 92 + } + } + }, + { + "id": "4048", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "57" + ], + "coveredBy": [ + "57", + "58" + ], + "location": { + "end": { + "column": 4, + "line": 101 + }, + "start": { + "column": 75, + "line": 96 + } + } + }, + { + "id": "4049", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "57" + ], + "coveredBy": [ + "57", + "58" + ], + "location": { + "end": { + "column": 97, + "line": 97 + }, + "start": { + "column": 63, + "line": 97 + } + } + }, + { + "id": "4050", + "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "597" + "57" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "57", + "58" ], "location": { "end": { - "column": 21, - "line": 35 + "column": 97, + "line": 97 }, "start": { - "column": 16, - "line": 35 + "column": 77, + "line": 97 } } }, { - "id": "3963", - "mutatorName": "ArrayDeclaration", - "replacement": "[]", - "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", + "id": "4051", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "597" + "57" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "57", + "58" ], "location": { "end": { - "column": 52, - "line": 36 + "column": 97, + "line": 97 }, "start": { - "column": 12, - "line": 36 + "column": 77, + "line": 97 } } }, { - "id": "3964", - "mutatorName": "StringLiteral", - "replacement": "``", - "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", + "id": "4052", + "mutatorName": "EqualityOperator", + "replacement": "name !== player.name", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "597" + "57" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "57", + "58" ], "location": { "end": { - "column": 51, - "line": 36 + "column": 97, + "line": 97 }, "start": { - "column": 13, - "line": 36 + "column": 77, + "line": 97 } } }, { - "id": "3965", - "mutatorName": "BooleanLiteral", + "id": "4053", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "58" + ], + "coveredBy": [ + "57", + "58" + ], + "location": { + "end": { + "column": 27, + "line": 98 + }, + "start": { + "column": 9, + "line": 98 + } + } + }, + { + "id": "4054", + "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expected 47th \"spy\" call to have been called with [ { preload: false, …(2) } ]", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "597" + "57" ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "57", + "58" ], "location": { "end": { - "column": 17, - "line": 37 + "column": 27, + "line": 98 }, "start": { - "column": 13, - "line": 37 + "column": 9, + "line": 98 } } }, { - "id": "3966", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "id": "4055", + "mutatorName": "EqualityOperator", + "replacement": "playerIndex === -1", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "603" + "57" ], "coveredBy": [ - "603" + "57", + "58" ], "location": { "end": { - "column": 4, - "line": 43 + "column": 27, + "line": 98 }, "start": { - "column": 62, - "line": 41 + "column": 9, + "line": 98 } } }, { - "id": "3967", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "id": "4056", + "mutatorName": "UnaryOperator", + "replacement": "+1", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "604" + "57" ], "coveredBy": [ - "604", - "606" + "57", + "58" ], "location": { "end": { - "column": 4, - "line": 47 + "column": 27, + "line": 98 }, "start": { - "column": 37, - "line": 45 + "column": 25, + "line": 98 } } }, { - "id": "3968", - "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", + "id": "4057", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "604" + "57" ], "coveredBy": [ - "604", - "606" + "57" ], "location": { "end": { - "column": 74, - "line": 46 + "column": 6, + "line": 100 }, "start": { - "column": 41, - "line": 46 + "column": 29, + "line": 98 } } }, { - "id": "3969", + "id": "4058", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "statusReason": "expected [] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "605" + "59" ], "coveredBy": [ - "605", - "606" + "59" ], "location": { "end": { "column": 4, - "line": 51 + "line": 105 }, "start": { - "column": 41, - "line": 49 + "column": 76, + "line": 103 } } }, { - "id": "3970", + "id": "4059", "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", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(104,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", + "status": "CompileError", "static": false, - "killedBy": [ - "605" - ], + "killedBy": [], "coveredBy": [ - "605", - "606" + "59" ], "location": { "end": { - "column": 86, - "line": 50 + "column": 91, + "line": 104 }, "start": { - "column": 45, - "line": 50 + "column": 47, + "line": 104 } } }, { - "id": "3971", + "id": "4060", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "606" + "60" ], "coveredBy": [ - "606" + "60", + "61" ], "location": { "end": { "column": 4, - "line": 56 + "line": 112 }, "start": { - "column": 34, - "line": 53 + "column": 68, + "line": 107 } } }, { - "id": "3972", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "id": "4061", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "607" + "60" ], "coveredBy": [ - "607" + "60", + "61" ], "location": { "end": { - "column": 4, - "line": 60 + "column": 99, + "line": 108 }, "start": { - "column": 68, - "line": 58 + "column": 63, + "line": 108 } } }, { - "id": "3973", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "id": "4062", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "609" + "60" ], "coveredBy": [ - "608", - "609", - "610", - "615", - "616", - "617", - "618" + "60", + "61" ], "location": { "end": { - "column": 4, - "line": 71 + "column": 99, + "line": 108 }, "start": { - "column": 50, - "line": 62 + "column": 73, + "line": 108 } } }, { - "id": "3974", - "mutatorName": "BooleanLiteral", - "replacement": "playingBackgroundAudioName.value", - "statusReason": "app/stores/audio/useAudioStore.ts(67,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", - "status": "CompileError", + "id": "4063", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "60" + ], "coveredBy": [ - "608", - "609", - "610", - "615", - "616", - "617", - "618" + "60", + "61" ], "location": { "end": { - "column": 42, - "line": 63 + "column": 99, + "line": 108 }, "start": { - "column": 9, - "line": 63 + "column": 73, + "line": 108 } } }, { - "id": "3975", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "app/stores/audio/useAudioStore.ts(67,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", - "status": "CompileError", + "id": "4064", + "mutatorName": "EqualityOperator", + "replacement": "player.name !== playerName", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "60" + ], "coveredBy": [ - "608", - "609", - "610", - "615", - "616", - "617", - "618" + "60", + "61" ], "location": { "end": { - "column": 42, - "line": 63 + "column": 99, + "line": 108 }, "start": { - "column": 9, - "line": 63 + "column": 73, + "line": 108 } } }, { - "id": "3976", + "id": "4065", "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/stores/audio/useAudioStore.ts(67,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", - "status": "CompileError", + "replacement": "true", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "status": "Killed", + "testsCompleted": 2, "static": false, - "killedBy": [], + "killedBy": [ + "61" + ], "coveredBy": [ - "608", - "609", - "610", - "615", - "616", - "617", - "618" + "60", + "61" ], "location": { "end": { - "column": 42, - "line": 63 + "column": 27, + "line": 109 }, "start": { "column": 9, - "line": 63 + "line": 109 } } }, { - "id": "3977", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/audio/useAudioStore.ts(65,53): error TS2538: Type 'undefined' cannot be used as an index type.\n", - "status": "CompileError", + "id": "4066", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "60" + ], "coveredBy": [ - "608", - "616" + "60", + "61" ], "location": { "end": { - "column": 6, - "line": 65 + "column": 27, + "line": 109 }, "start": { - "column": 44, - "line": 63 + "column": 9, + "line": 109 } } }, { - "id": "3978", - "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", + "id": "4067", + "mutatorName": "EqualityOperator", + "replacement": "playerIndex === -1", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "610" + "60" ], "coveredBy": [ - "609", - "610", - "615", - "617", - "618" + "60", + "61" ], "location": { "end": { - "column": 51, - "line": 70 + "column": 27, + "line": 109 }, "start": { - "column": 16, - "line": 70 + "column": 9, + "line": 109 } } }, { - "id": "3979", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "id": "4068", + "mutatorName": "UnaryOperator", + "replacement": "+1", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "611" + "60" ], "coveredBy": [ - "611", - "612", - "613", - "615", - "616", - "617", - "618" + "60", + "61" ], "location": { "end": { - "column": 4, - "line": 78 + "column": 27, + "line": 109 }, "start": { - "column": 80, - "line": 73 + "column": 25, + "line": 109 } } }, { - "id": "3980", + "id": "4069", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "615" + "60" ], "coveredBy": [ - "614", - "615", - "616", - "617", - "618", - "619" + "60" ], "location": { "end": { - "column": 4, - "line": 91 + "column": 6, + "line": 111 }, "start": { - "column": 79, - "line": 80 + "column": 29, + "line": 109 } } }, { - "id": "3981", - "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]", - "status": "Killed", - "testsCompleted": 3, + "id": "4070", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(114,55): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "616" - ], + "killedBy": [], "coveredBy": [ - "614", - "615", - "616", - "617", - "618", - "619" + "62", + "63" ], "location": { "end": { - "column": 55, - "line": 81 + "column": 4, + "line": 116 }, "start": { - "column": 34, - "line": 81 + "column": 63, + "line": 114 } } }, { - "id": "3982", - "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", + "id": "4071", + "mutatorName": "MethodExpression", + "replacement": "createGameDto.value.players.every(player => player.role.name === roleName)", + "statusReason": "expected false to be truthy", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "614" + "62" ], "coveredBy": [ - "614", - "615", - "616", - "617", - "618", - "619" + "62", + "63" ], "location": { "end": { - "column": 55, - "line": 81 + "column": 85, + "line": 115 }, "start": { - "column": 34, - "line": 81 + "column": 12, + "line": 115 } } }, { - "id": "3983", - "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", + "id": "4072", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected false to be truthy", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "614" + "62" ], "coveredBy": [ - "614", - "615", - "616", - "617", - "618", - "619" + "62", + "63" ], "location": { "end": { - "column": 55, - "line": 81 + "column": 84, + "line": 115 }, "start": { - "column": 34, - "line": 81 + "column": 45, + "line": 115 } } }, { - "id": "3984", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/audio/useAudioStore.ts(81,34): error TS2367: This comparison appears to be unintentional because the types '\"day\" | \"night\" | \"twilight\"' and '\"\"' have no overlap.\n", - "status": "CompileError", + "id": "4073", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be falsy", + "status": "Killed", + "testsCompleted": 2, "static": false, - "killedBy": [], + "killedBy": [ + "63" + ], "coveredBy": [ - "614", - "615", - "616", - "617", - "618", - "619" + "62", + "63" ], "location": { "end": { - "column": 55, - "line": 81 + "column": 84, + "line": 115 }, "start": { - "column": 48, - "line": 81 + "column": 55, + "line": 115 } } }, { - "id": "3985", + "id": "4074", "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "app/stores/audio/useAudioStore.ts(90,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", - "status": "CompileError", + "replacement": "false", + "statusReason": "expected false to be truthy", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "62" + ], "coveredBy": [ - "614", - "615", - "616", - "617", - "618", - "619" + "62", + "63" ], "location": { "end": { - "column": 108, - "line": 82 + "column": 84, + "line": 115 }, "start": { - "column": 9, - "line": 82 + "column": 55, + "line": 115 } } }, { - "id": "3986", - "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", + "id": "4075", + "mutatorName": "EqualityOperator", + "replacement": "player.role.name !== roleName", + "statusReason": "expected true to be falsy", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "614" + "63" ], "coveredBy": [ - "614", - "615", - "616", - "617", - "618", - "619" + "62", + "63" ], "location": { "end": { - "column": 108, - "line": 82 + "column": 84, + "line": 115 }, "start": { - "column": 9, - "line": 82 + "column": 55, + "line": 115 } } }, { - "id": "3987", - "mutatorName": "LogicalOperator", - "replacement": "playingBackgroundAudioName.value || backgroundAudioNames.includes(playingBackgroundAudioName.value)", - "statusReason": "app/stores/audio/useAudioStore.ts(82,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", + "id": "4076", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(118,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "614", - "615", - "616", - "617", - "618", - "619" + "64", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" ], "location": { "end": { - "column": 108, - "line": 82 + "column": 4, + "line": 120 }, "start": { - "column": 9, - "line": 82 + "column": 93, + "line": 118 } } }, { - "id": "3988", - "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", + "id": "4077", + "mutatorName": "MethodExpression", + "replacement": "createGameDto.value.players", + "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "614" + "64" ], "coveredBy": [ - "614" + "64", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" ], "location": { "end": { - "column": 6, - "line": 84 + "column": 87, + "line": 119 }, "start": { - "column": 110, - "line": 82 + "column": 12, + "line": 119 } } }, { - "id": "3989", - "mutatorName": "BooleanLiteral", - "replacement": "randomGamePhaseBackgroundAudioName", - "statusReason": "app/stores/audio/useAudioStore.ts(90,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", - "status": "CompileError", + "id": "4078", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected [] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "64" + ], "coveredBy": [ - "615", - "616", - "617", - "618", - "619" + "64", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" ], "location": { "end": { - "column": 44, - "line": 86 + "column": 86, + "line": 119 }, "start": { - "column": 9, - "line": 86 + "column": 47, + "line": 119 } } }, { - "id": "3990", + "id": "4079", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "app/stores/audio/useAudioStore.ts(90,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", - "status": "CompileError", + "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "64" + ], "coveredBy": [ - "615", - "616", - "617", - "618", - "619" + "64", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" ], "location": { "end": { - "column": 44, - "line": 86 + "column": 86, + "line": 119 }, "start": { - "column": 9, - "line": 86 + "column": 57, + "line": 119 } } }, { - "id": "3991", + "id": "4080", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "app/stores/audio/useAudioStore.ts(90,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", - "status": "CompileError", + "statusReason": "expected [] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], - "coveredBy": [ - "615", - "616", - "617", - "618", - "619" + "killedBy": [ + "64" ], - "location": { - "end": { - "column": 44, - "line": 86 - }, - "start": { - "column": 9, - "line": 86 - } - } - }, - { - "id": "3992", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/audio/useAudioStore.ts(88,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", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "619" + "64", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" ], "location": { "end": { - "column": 6, - "line": 88 + "column": 86, + "line": 119 }, "start": { - "column": 46, - "line": 86 + "column": 57, + "line": 119 } } }, { - "id": "3993", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected false to be truthy", + "id": "4081", + "mutatorName": "EqualityOperator", + "replacement": "player.role.name !== roleName", + "statusReason": "expected [ _CreateGamePlayerDto{ …(4) } ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "620" + "64" ], "coveredBy": [ - "620", - "621", - "622", - "623" + "64", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389" ], "location": { "end": { - "column": 4, - "line": 97 + "column": 86, + "line": 119 }, "start": { - "column": 49, - "line": 93 + "column": 57, + "line": 119 } } }, { - "id": "3994", + "id": "4082", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(122,77): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "623" - ], + "killedBy": [], "coveredBy": [ - "623" - ], - "location": { - "end": { - "column": 4, - "line": 101 - }, - "start": { - "column": 31, - "line": 99 - } - } + "41", + "42", + "43", + "44", + "65", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758" + ], + "location": { + "end": { + "column": 4, + "line": 124 + }, + "start": { + "column": 99, + "line": 122 + } + } }, { - "id": "3995", - "mutatorName": "BooleanLiteral", - "replacement": "isMuted.value", + "id": "4083", + "mutatorName": "MethodExpression", + "replacement": "createGameDto.value.players", + "statusReason": "expected true to be falsy", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "42" + ], + "coveredBy": [ + "41", + "42", + "43", + "44", + "65", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758" + ], + "location": { + "end": { + "column": 114, + "line": 123 + }, + "start": { + "column": 12, + "line": 123 + } + } + }, + { + "id": "4084", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", "statusReason": "expected false to be truthy", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "623" + "41" ], "coveredBy": [ - "623" + "41", + "42", + "43", + "44", + "65", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758" ], "location": { "end": { - "column": 27, - "line": 100 + "column": 113, + "line": 123 }, "start": { - "column": 13, - "line": 100 + "column": 47, + "line": 123 } } }, { - "id": "3996", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "tests/unit/specs/app.nuxt.spec.ts(54,23): error TS2339: Property 'setHowlerAudioSettingsFromAudioStoreState' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/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(76,15): error TS2339: Property 'playingBackgroundAudioName' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(82,15): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(88,15): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(94,15): error TS2339: Property 'isMuted' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(103,18): error TS2339: Property 'isMuted' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(104,18): error TS2339: Property 'setHowlerAudioSettingsFromAudioStoreState' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(112,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(112,29): error TS2339: Property 'loadSoundEffects' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(116,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(123,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(123,33): error TS2339: Property 'loadBackgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(127,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(134,15): error TS2339: Property 'loadAllAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(135,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(135,33): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(139,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(142,16): error TS18046: 'soundEffect' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(149,15): error TS2339: Property 'soundEffects' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(149,29): error TS2339: Property 'playSoundEffect' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(159,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(159,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(163,16): error TS18046: 'backgroundAudio' is of type 'unknown'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(169,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(169,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(170,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(178,15): error TS2339: Property 'fadeOutPlayingBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(178,46): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(179,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(189,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(189,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(197,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(197,33): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(205,15): error TS2339: Property 'playBackgroundAudio' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(209,30): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(220,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(221,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(228,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(229,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(231,83): error TS2339: Property 'nightBackgroundAudioNames' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(236,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(238,83): error TS2339: Property 'dayBackgroundAudioNames' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(243,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(244,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(245,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(252,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(253,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(254,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(261,15): error TS2339: Property 'backgroundAudios' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(262,18): error TS2339: Property 'playingBackgroundAudioName' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(264,18): error TS2339: Property 'playRandomGamePhaseBackgroundAudio' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(273,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(276,25): error TS2339: Property 'isMuted' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(281,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(289,15): error TS2339: Property 'setMute' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(292,25): error TS2339: Property 'audioSettingsFromLocalStorage' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(299,15): error TS2339: Property 'toggleMute' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(300,18): error TS2339: Property 'isMuted' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/audio/useAudioStore.spec.ts(303,25): error TS2339: Property 'isMuted' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", - "status": "CompileError", + "id": "4085", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be falsy", + "status": "Killed", + "testsCompleted": 2, "static": false, - "killedBy": [], + "killedBy": [ + "42" + ], "coveredBy": [ - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "597", - "598", - "599", - "600", - "601", - "602", - "603", - "604", - "605", - "606", - "607", - "608", - "609", - "610", - "611", - "612", - "613", - "614", - "615", - "616", - "617", - "618", - "619", - "620", - "621", - "622", - "623", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "41", + "42", + "43", + "44", + "65", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "939", - "940", - "941", - "942", - "943", - "944", - "945", - "946", - "947", - "948", - "949", - "950", - "951", - "952", - "953", - "954", - "955", - "956", - "957", - "958", - "959", - "960", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1243", - "1244", - "1245", - "1246", - "1247", - "1248", - "1249", - "1250", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1479", - "1480", - "1481", - "1482", - "1483", - "1491", - "1492", - "1493", - "1494", - "1495", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1622", - "1623", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1772", - "1773", - "1774", - "1775", - "1811", - "1812", - "1813", - "1814", - "1843", - "1844", - "1845", - "1846", - "1859", - "1860", - "1861", - "1862", - "1863", - "1864", - "1865", - "1866", - "1876", - "1877", - "1878", - "1879", - "1880", - "1881", - "1882", - "1883", - "1886", - "1887", - "1888", - "1889", - "1890", - "1891", - "1892", - "1893", - "1903", - "1904", - "1905", - "1906", - "1907", - "1908", - "1909", - "1910", - "1911", - "1912", - "1913", - "1914", - "1915" + "758" ], "location": { "end": { - "column": 4, - "line": 120 + "column": 113, + "line": 123 }, "start": { - "column": 10, - "line": 102 + "column": 57, + "line": 123 } } - } - ], - "source": "import { useLocalStorage } from \"@vueuse/core\";\nimport { Howl, Howler } from \"howler\";\nimport { draw } from \"radash\";\nimport { defineStore } from \"pinia\";\nimport type { GamePhaseName } from \"~/composables/api/game/types/game-phase/game-phase.types\";\nimport { BACKGROUND_AUDIO_NAMES, DEFAULT_AUDIO_SETTINGS, SOUND_EFFECT_NAMES } from \"~/stores/audio/constants/audio.constants\";\nimport type { AudioSettings, BackgroundAudioName, SoundEffectName } from \"~/stores/audio/types/audio.types\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { LocalStorageKeys } from \"~/utils/enums/local-storage.enums\";\n\nconst useAudioStore = defineStore(StoreIds.AUDIO, () => {\n const audioSettingsFromLocalStorage = useLocalStorage(LocalStorageKeys.AUDIO_SETTINGS, DEFAULT_AUDIO_SETTINGS, { mergeDefaults: true });\n\n const isMuted = ref(audioSettingsFromLocalStorage.value.isMuted);\n\n const soundEffects = Object.fromEntries(SOUND_EFFECT_NAMES.map(name => [name, createSoundEffect(name)])) as Record;\n\n const backgroundAudios = Object.fromEntries(BACKGROUND_AUDIO_NAMES.map(name => [name, createBackgroundAudio(name)])) as Record;\n\n const playingBackgroundAudioName = ref();\n\n const nightBackgroundAudioNames = Object.keys(backgroundAudios).filter((name): name is BackgroundAudioName => name.startsWith(\"night-\"));\n\n const dayBackgroundAudioNames = Object.keys(backgroundAudios).filter((name): name is BackgroundAudioName => name.startsWith(\"day-\"));\n\n function createSoundEffect(src: SoundEffectName): Howl {\n return new Howl({\n preload: false,\n src: [`/audio/sound-effects/${src}.webm`],\n });\n }\n\n function createBackgroundAudio(src: BackgroundAudioName): Howl {\n return new Howl({\n preload: false,\n src: [`/audio/audio-backgrounds/${src}.webm`],\n loop: true,\n });\n }\n\n function setHowlerAudioSettingsFromAudioStoreState(): void {\n Howler.mute(isMuted.value);\n }\n\n function loadSoundEffects(): void {\n Object.values(soundEffects).forEach(soundEffect => soundEffect.load());\n }\n\n function loadBackgroundAudios(): void {\n Object.values(backgroundAudios).forEach(backgroundAudio => backgroundAudio.load());\n }\n\n function loadAllAudios(): void {\n loadBackgroundAudios();\n loadSoundEffects();\n }\n\n function playSoundEffect(soundEffectName: SoundEffectName): void {\n soundEffects[soundEffectName].play();\n }\n\n function fadeOutPlayingBackgroundAudio(): void {\n if (!playingBackgroundAudioName.value) {\n return;\n }\n const fadeOutDuration = 1000;\n const playingBackgroundAudio = backgroundAudios[playingBackgroundAudioName.value];\n playingBackgroundAudio.fade(1, 0, fadeOutDuration);\n playingBackgroundAudioName.value = undefined;\n setTimeout(() => playingBackgroundAudio.stop(), fadeOutDuration);\n }\n\n function playBackgroundAudio(backgroundAudioName: BackgroundAudioName): void {\n const fadeInDuration = 1000;\n backgroundAudios[backgroundAudioName].fade(0, 1, fadeInDuration);\n backgroundAudios[backgroundAudioName].play();\n playingBackgroundAudioName.value = backgroundAudioName;\n }\n\n function playRandomGamePhaseBackgroundAudio(gamePhase: GamePhaseName): void {\n const backgroundAudioNames = gamePhase === \"night\" ? nightBackgroundAudioNames : dayBackgroundAudioNames;\n if (playingBackgroundAudioName.value && backgroundAudioNames.includes(playingBackgroundAudioName.value)) {\n return;\n }\n const randomGamePhaseBackgroundAudioName = draw(backgroundAudioNames);\n if (!randomGamePhaseBackgroundAudioName) {\n return;\n }\n fadeOutPlayingBackgroundAudio();\n playBackgroundAudio(randomGamePhaseBackgroundAudioName);\n }\n\n function setMute(isAudioMuted: boolean): void {\n isMuted.value = isAudioMuted;\n Howler.mute(isAudioMuted);\n audioSettingsFromLocalStorage.value.isMuted = isAudioMuted;\n }\n\n function toggleMute(): void {\n setMute(!isMuted.value);\n }\n return {\n audioSettingsFromLocalStorage,\n isMuted,\n soundEffects,\n backgroundAudios,\n playingBackgroundAudioName,\n nightBackgroundAudioNames,\n dayBackgroundAudioNames,\n setHowlerAudioSettingsFromAudioStoreState,\n loadSoundEffects,\n loadBackgroundAudios,\n loadAllAudios,\n playSoundEffect,\n fadeOutPlayingBackgroundAudio,\n playBackgroundAudio,\n playRandomGamePhaseBackgroundAudio,\n setMute,\n toggleMute,\n };\n});\n\nexport { useAudioStore };" - }, - "app/stores/game/create-game-dto/useCreateGameDtoStore.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "3997", - "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/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/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/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(100,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(150,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(227,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(232,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(249,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,33): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(68,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(109,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(119,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(66,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(120,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(129,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(146,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(163,41): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(182,37): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(187,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(201,37): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(218,37): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(223,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(237,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(166,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(176,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(205,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(221,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(86,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(103,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(115,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(127,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(131,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(170,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/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/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/GameLobbyStartGameConfirmDialogThiefAdditionalCardsPlaced/GameLobbyStartGameConfirmDialogThiefAdditionalCardsPlaced.nuxt.spec.ts(56,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(123,35): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(137,35): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(85,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(119,26): error TS2339: Property 'createGameDto' 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/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.nuxt.spec.ts(41,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(58,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(68,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(85,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(94,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(108,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(122,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(149,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(158,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/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/GameLobbyPlayersParty/GameLobbyPlayerCard/GameLobbyPlayerCard.nuxt.spec.ts(71,33): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayerCard/GameLobbyPlayerCard.nuxt.spec.ts(79,33): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPositionCoordinator/GameLobbyPositionCoordinatorSorter/GameLobbyPositionCoordinatorSorter.nuxt.spec.ts(74,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/pages/game-lobby/game-lobby.nuxt.spec.ts(117,33): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts(325,33): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts(337,33): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(44,31): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(50,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(55,33): error TS2339: Property 'doesCreateGameDtoContainPositionDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(60,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(65,33): error TS2339: Property 'doesCreateGameDtoContainPositionDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(72,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(77,33): error TS2339: Property 'doesCreateGameDtoContainAdditionalCardsDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(82,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(87,33): error TS2339: Property 'doesCreateGameDtoContainAdditionalCardsDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(102,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(104,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(117,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(119,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(126,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(137,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(139,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(146,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(157,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(159,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(166,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(173,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(176,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(183,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(184,26): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(187,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(192,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(193,26): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(196,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(203,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(204,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(205,26): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(208,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(216,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(217,26): error TS2339: Property 'saveCreateGameOptionsDtoToLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(219,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(240,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(245,26): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(247,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(252,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(253,26): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(255,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(268,26): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(270,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(282,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(293,26): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(295,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(305,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(312,26): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(314,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(326,26): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(328,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(340,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(348,26): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(350,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(360,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(366,26): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(368,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(375,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(380,33): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(385,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(390,33): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(402,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(405,41): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(420,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(423,41): error TS2339: Property 'getPlayersWithAnyRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(499,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(501,33): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(556,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(558,33): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(620,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(622,33): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(639,26): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(641,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(660,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(673,26): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(675,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(700,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(706,41): error TS2339: Property 'getAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(713,41): error TS2339: Property 'getAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(740,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(746,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(753,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\n", + "id": "4086", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "747" + ], + "coveredBy": [ + "41", + "42", + "43", + "44", + "65", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758" + ], + "location": { + "end": { + "column": 113, + "line": 123 + }, + "start": { + "column": 57, + "line": 123 + } + } + }, + { + "id": "4087", + "mutatorName": "LogicalOperator", + "replacement": "player.role.name || roleNames.includes(player.role.name)", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(123,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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "39", - "40", "41", "42", "43", "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", "371", "372", "373", @@ -196769,127 +191663,9 @@ "384", "385", "386", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "744", - "745", - "746", + "387", + "388", + "389", "747", "748", "749", @@ -196899,5560 +191675,1986 @@ "753", "754", "755", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1674", - "1675", - "1927", - "1928", - "1929", - "1930" + "756", + "757", + "758" ], "location": { "end": { - "column": 2, - "line": 193 + "column": 113, + "line": 123 }, "start": { - "column": 75, - "line": 20 + "column": 57, + "line": 123 } } }, { - "id": "3998", - "mutatorName": "ObjectLiteral", + "id": "4088", + "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"gameOptions\",\n Object {\n \"composition\": Object {\n \"isHidden\": false,\n },\n \"roles\": Object {\n \"actor\": Object {\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"areRevealedOnDeath\": true,\n \"bearTamer\": Object {\n \"doesGrowlOnWerewolvesSide\": true,\n },\n \"bigBadWolf\": Object {\n \"isPowerlessIfWerewolfDies\": true,\n },\n \"cupid\": Object {\n \"lovers\": Object {\n \"doRevealRoleToEachOther\": false,\n },\n \"mustWinWithLovers\": false,\n },\n \"defender\": Object {\n \"canProtectTwice\": false,\n },\n \"doSkipCallIfNoTarget\": false,\n \"elder\": Object {\n \"doesTakeHisRevenge\": true,\n \"livesCountAgainstWerewolves\": 2,\n },\n \"fox\": Object {\n \"isPowerlessIfMissesWerewolf\": true,\n },\n \"idiot\": Object {\n \"doesDieOnElderDeath\": true,\n },\n \"littleGirl\": Object {\n \"isProtectedByDefender\": false,\n },\n \"piedPiper\": Object {\n \"areCharmedPeopleRevealed\": false,\n \"charmedPeopleCountPerNight\": 2,\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"prejudicedManipulator\": Object {\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"scandalmonger\": Object {\n \"markPenalty\": 2,\n },\n \"seer\": Object {\n \"canSeeRoles\": true,\n \"isTalkative\": true,\n },\n \"sheriff\": Object {\n \"electedAt\": Object {\n \"phaseName\": \"night\",\n \"turn\": 1,\n },\n \"hasDoubledVote\": true,\n \"isEnabled\": true,\n \"mustSettleTieInVotes\": true,\n },\n \"stutteringJudge\": Object {\n \"voteRequestsCount\": 1,\n },\n \"thief\": Object {\n \"isChosenCardRevealed\": false,\n \"mustChooseBetweenWerewolves\": true,\n },\n \"threeBrothers\": Object {\n \"wakingUpInterval\": 2,\n },\n \"twoSisters\": Object {\n \"wakingUpInterval\": 2,\n },\n \"werewolf\": Object {\n \"canEatEachOther\": false,\n },\n \"whiteWerewolf\": Object {\n \"wakingUpInterval\": 2,\n },\n \"wildChild\": Object {\n \"isTransformationRevealed\": false,\n },\n \"witch\": Object {\n \"doesKnowWerewolvesTargets\": true,\n },\n \"wolfHound\": Object {\n \"isChosenSideRevealed\": false,\n \"isSideRandomlyChosen\": false,\n },\n },\n \"votes\": Object {\n \"canBeSkipped\": true,\n \"duration\": 180,\n },\n },\n Object {\n \"mergeDefaults\": true,\n },\n], but it was called with \"gameOptions\"", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(126,65): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "66", + "67", + "68", + "69" + ], + "location": { + "end": { + "column": 4, + "line": 131 + }, + "start": { + "column": 73, + "line": 126 + } + } + }, + { + "id": "4089", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be false // Object.is equality", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "67" + ], + "coveredBy": [ + "66", + "67", + "68", + "69" + ], + "location": { + "end": { + "column": 100, + "line": 130 + }, + "start": { + "column": 12, + "line": 130 + } + } + }, + { + "id": "4090", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected false to be true // Object.is equality", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "39" + "66" ], "coveredBy": [ - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", "66", "67", "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1674", - "1675", - "1927", - "1928", - "1929", - "1930" + "69" ], "location": { "end": { - "column": 140, - "line": 24 + "column": 100, + "line": 130 }, "start": { - "column": 117, - "line": 24 + "column": 12, + "line": 130 } } }, { - "id": "3999", + "id": "4091", + "mutatorName": "LogicalOperator", + "replacement": "!!role || role.minInGame === undefined || playersWithRoleName.length >= role.minInGame", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,22): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,84): error TS18048: 'role' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "66", + "67", + "68", + "69" + ], + "location": { + "end": { + "column": 100, + "line": 130 + }, + "start": { + "column": 12, + "line": 130 + } + } + }, + { + "id": "4092", + "mutatorName": "BooleanLiteral", + "replacement": "!role", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,22): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,84): error TS18048: 'role' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "66", + "67", + "68", + "69" + ], + "location": { + "end": { + "column": 18, + "line": 130 + }, + "start": { + "column": 12, + "line": 130 + } + } + }, + { + "id": "4093", "mutatorName": "BooleanLiteral", + "replacement": "role", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,22): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,84): error TS18048: 'role' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "66", + "67", + "68", + "69" + ], + "location": { + "end": { + "column": 18, + "line": 130 + }, + "start": { + "column": 13, + "line": 130 + } + } + }, + { + "id": "4094", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be false // Object.is equality", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "67" + ], + "coveredBy": [ + "66", + "67", + "68", + "69" + ], + "location": { + "end": { + "column": 99, + "line": 130 + }, + "start": { + "column": 23, + "line": 130 + } + } + }, + { + "id": "4095", + "mutatorName": "LogicalOperator", + "replacement": "role.minInGame === undefined && playersWithRoleName.length >= role.minInGame", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,85): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "66", + "67", + "68", + "69" + ], + "location": { + "end": { + "column": 99, + "line": 130 + }, + "start": { + "column": 23, + "line": 130 + } + } + }, + { + "id": "4096", + "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"gameOptions\",\n Object {\n \"composition\": Object {\n \"isHidden\": false,\n },\n \"roles\": Object {\n \"actor\": Object {\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"areRevealedOnDeath\": true,\n \"bearTamer\": Object {\n \"doesGrowlOnWerewolvesSide\": true,\n },\n \"bigBadWolf\": Object {\n \"isPowerlessIfWerewolfDies\": true,\n },\n \"cupid\": Object {\n \"lovers\": Object {\n \"doRevealRoleToEachOther\": false,\n },\n \"mustWinWithLovers\": false,\n },\n \"defender\": Object {\n \"canProtectTwice\": false,\n },\n \"doSkipCallIfNoTarget\": false,\n \"elder\": Object {\n \"doesTakeHisRevenge\": true,\n \"livesCountAgainstWerewolves\": 2,\n },\n \"fox\": Object {\n \"isPowerlessIfMissesWerewolf\": true,\n },\n \"idiot\": Object {\n \"doesDieOnElderDeath\": true,\n },\n \"littleGirl\": Object {\n \"isProtectedByDefender\": false,\n },\n \"piedPiper\": Object {\n \"areCharmedPeopleRevealed\": false,\n \"charmedPeopleCountPerNight\": 2,\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"prejudicedManipulator\": Object {\n \"isPowerlessOnWerewolvesSide\": true,\n },\n \"scandalmonger\": Object {\n \"markPenalty\": 2,\n },\n \"seer\": Object {\n \"canSeeRoles\": true,\n \"isTalkative\": true,\n },\n \"sheriff\": Object {\n \"electedAt\": Object {\n \"phaseName\": \"night\",\n \"turn\": 1,\n },\n \"hasDoubledVote\": true,\n \"isEnabled\": true,\n \"mustSettleTieInVotes\": true,\n },\n \"stutteringJudge\": Object {\n \"voteRequestsCount\": 1,\n },\n \"thief\": Object {\n \"isChosenCardRevealed\": false,\n \"mustChooseBetweenWerewolves\": true,\n },\n \"threeBrothers\": Object {\n \"wakingUpInterval\": 2,\n },\n \"twoSisters\": Object {\n \"wakingUpInterval\": 2,\n },\n \"werewolf\": Object {\n \"canEatEachOther\": false,\n },\n \"whiteWerewolf\": Object {\n \"wakingUpInterval\": 2,\n },\n \"wildChild\": Object {\n \"isTransformationRevealed\": false,\n },\n \"witch\": Object {\n \"doesKnowWerewolvesTargets\": true,\n },\n \"wolfHound\": Object {\n \"isChosenSideRevealed\": false,\n \"isSideRandomlyChosen\": false,\n },\n },\n \"votes\": Object {\n \"canBeSkipped\": true,\n \"duration\": 180,\n },\n },\n Object {\n \"mergeDefaults\": true,\n },\n], but it was called with \"gameOptions\"", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,62): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "66", + "67", + "68", + "69" + ], + "location": { + "end": { + "column": 51, + "line": 130 + }, + "start": { + "column": 23, + "line": 130 + } + } + }, + { + "id": "4097", + "mutatorName": "EqualityOperator", + "replacement": "role.minInGame !== undefined", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,85): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "66", + "67", + "68", + "69" + ], + "location": { + "end": { + "column": 51, + "line": 130 + }, + "start": { + "column": 23, + "line": 130 + } + } + }, + { + "id": "4098", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected false to be true // Object.is equality", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "39" + "66" ], "coveredBy": [ - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", "66", "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1674", - "1675", - "1927", - "1928", - "1929", - "1930" + "68" ], "location": { "end": { - "column": 138, - "line": 24 + "column": 99, + "line": 130 }, "start": { - "column": 134, - "line": 24 + "column": 55, + "line": 130 } } }, { - "id": "4000", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(26,53): error TS2345: Argument of type '{}' is not assignable to parameter of type 'OmitToJSON'.\n Type '{}' is missing the following properties from type 'OmitToJSON': options, players\n", - "status": "CompileError", + "id": "4099", + "mutatorName": "EqualityOperator", + "replacement": "playersWithRoleName.length > role.minInGame", + "statusReason": "expected false to be true // Object.is equality", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "66" + ], "coveredBy": [ - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", "66", "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1674", - "1675", - "1927", - "1928", - "1929", - "1930" + "68" ], "location": { "end": { - "column": 4, - "line": 29 + "column": 99, + "line": 130 }, "start": { - "column": 53, - "line": 26 + "column": 55, + "line": 130 } } }, { - "id": "4001", - "mutatorName": "ArrayDeclaration", - "replacement": "[\"Stryker was here\"]", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(27,15): error TS2322: Type 'string' is not assignable to type 'CreateGamePlayerDto'.\n", - "status": "CompileError", + "id": "4100", + "mutatorName": "EqualityOperator", + "replacement": "playersWithRoleName.length < role.minInGame", + "statusReason": "expected false to be true // Object.is equality", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "66" + ], "coveredBy": [ - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", "66", "67", - "68", - "69", + "68" + ], + "location": { + "end": { + "column": 99, + "line": 130 + }, + "start": { + "column": 55, + "line": 130 + } + } + }, + { + "id": "4101", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(133,65): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ "70", "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1674", - "1675", - "1927", - "1928", - "1929", - "1930" + "72" ], "location": { "end": { - "column": 16, - "line": 27 + "column": 4, + "line": 138 }, "start": { - "column": 14, - "line": 27 + "column": 73, + "line": 133 } } }, { - "id": "4002", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(31,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", + "id": "4102", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be false // Object.is equality", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "71" + ], + "coveredBy": [ + "70", + "71", + "72" + ], + "location": { + "end": { + "column": 66, + "line": 137 + }, + "start": { + "column": 12, + "line": 137 + } + } + }, + { + "id": "4103", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected false to be true // Object.is equality", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "70" + ], + "coveredBy": [ + "70", + "71", + "72" + ], + "location": { + "end": { + "column": 66, + "line": 137 + }, + "start": { + "column": 12, + "line": 137 + } + } + }, + { + "id": "4104", + "mutatorName": "LogicalOperator", + "replacement": "!!role || playersWithRoleName.length >= role.maxInGame", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(137,52): error TS18048: 'role' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", "70", "71", - "72", + "72" + ], + "location": { + "end": { + "column": 66, + "line": 137 + }, + "start": { + "column": 12, + "line": 137 + } + } + }, + { + "id": "4105", + "mutatorName": "BooleanLiteral", + "replacement": "!role", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(137,51): error TS18048: 'role' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "70", + "71", + "72" + ], + "location": { + "end": { + "column": 18, + "line": 137 + }, + "start": { + "column": 12, + "line": 137 + } + } + }, + { + "id": "4106", + "mutatorName": "BooleanLiteral", + "replacement": "role", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(137,51): error TS18048: 'role' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "70", + "71", + "72" + ], + "location": { + "end": { + "column": 18, + "line": 137 + }, + "start": { + "column": 13, + "line": 137 + } + } + }, + { + "id": "4107", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be false // Object.is equality", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "71" + ], + "coveredBy": [ + "70", + "71" + ], + "location": { + "end": { + "column": 66, + "line": 137 + }, + "start": { + "column": 22, + "line": 137 + } + } + }, + { + "id": "4108", + "mutatorName": "EqualityOperator", + "replacement": "playersWithRoleName.length > role.maxInGame", + "statusReason": "expected false to be true // Object.is equality", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "70" + ], + "coveredBy": [ + "70", + "71" + ], + "location": { + "end": { + "column": 66, + "line": 137 + }, + "start": { + "column": 22, + "line": 137 + } + } + }, + { + "id": "4109", + "mutatorName": "EqualityOperator", + "replacement": "playersWithRoleName.length < role.maxInGame", + "statusReason": "expected false to be true // Object.is equality", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "70" + ], + "coveredBy": [ + "70", + "71" + ], + "location": { + "end": { + "column": 66, + "line": 137 + }, + "start": { + "column": 22, + "line": 137 + } + } + }, + { + "id": "4110", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(140,75): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ "73", "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1674", - "1675", - "1927", - "1928", - "1929", - "1930" + "75" ], "location": { "end": { "column": 4, - "line": 34 + "line": 149 }, "start": { - "column": 65, - "line": 31 + "column": 82, + "line": 140 } } }, { - "id": "4003", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(36,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", + "id": "4111", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", "73", "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1674", - "1675", - "1927", - "1928", - "1929", - "1930" + "75" ], "location": { "end": { - "column": 87, - "line": 36 + "column": 38, + "line": 143 }, "start": { - "column": 54, - "line": 36 + "column": 9, + "line": 143 } } }, { - "id": "4004", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(38,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", + "id": "4112", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "41", - "42", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" + "73", + "74", + "75" ], "location": { "end": { - "column": 4, - "line": 43 + "column": 38, + "line": 143 }, "start": { - "column": 82, - "line": 38 + "column": 9, + "line": 143 } } }, { - "id": "4005", - "mutatorName": "ArrayDeclaration", - "replacement": "[]", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 1, + "id": "4113", + "mutatorName": "EqualityOperator", + "replacement": "role?.minInGame !== undefined", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "41" - ], + "killedBy": [], "coveredBy": [ - "41", - "42", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" + "73", + "74", + "75" ], "location": { "end": { - "column": 91, - "line": 39 + "column": 38, + "line": 143 }, "start": { - "column": 48, - "line": 39 + "column": 9, + "line": 143 } } }, { - "id": "4006", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(39,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", + "id": "4114", + "mutatorName": "OptionalChaining", + "replacement": "role.minInGame", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(143,9): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "41", - "42", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" + "73", + "74", + "75" ], "location": { "end": { - "column": 69, - "line": 39 + "column": 24, + "line": 143 }, "start": { - "column": 49, - "line": 39 + "column": 9, + "line": 143 } } }, { - "id": "4007", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(39,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", + "id": "4115", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(144,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(144,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "41", - "42", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" + "75" ], "location": { "end": { - "column": 83, - "line": 39 + "column": 6, + "line": 145 }, "start": { - "column": 71, - "line": 39 + "column": 40, + "line": 143 } } }, { - "id": "4008", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(39,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", - "status": "CompileError", + "id": "4116", + "mutatorName": "ArithmeticOperator", + "replacement": "role.minInGame + playersWithRoleName.length", + "statusReason": "expected 2 to be +0 // Object.is equality", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "73" + ], "coveredBy": [ - "41", - "42", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" + "73", + "74" ], "location": { "end": { - "column": 90, - "line": 39 + "column": 66, + "line": 146 }, "start": { - "column": 85, - "line": 39 + "column": 23, + "line": 146 } } }, { - "id": "4009", + "id": "4117", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected true to be falsy", + "statusReason": "expected +0 to be 1 // Object.is equality", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 4, "static": false, "killedBy": [ - "42" + "74" ], "coveredBy": [ - "41", - "42", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" + "73", + "74" ], "location": { "end": { - "column": 56, - "line": 42 + "column": 27, + "line": 148 }, "start": { "column": 12, - "line": 42 + "line": 148 } } }, { - "id": "4010", + "id": "4118", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expected false to be truthy", + "statusReason": "expected -1 to be +0 // Object.is equality", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "41" + "73" ], "coveredBy": [ - "41", - "42", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" + "73", + "74" ], "location": { "end": { - "column": 56, - "line": 42 + "column": 27, + "line": 148 }, "start": { "column": 12, - "line": 42 + "line": 148 } } }, { - "id": "4011", + "id": "4119", "mutatorName": "EqualityOperator", - "replacement": "playersWithPositionDependantRoles.length >= 0", - "statusReason": "expected true to be falsy", + "replacement": "leftCount < -1", + "statusReason": "expected -1 to be +0 // Object.is equality", "status": "Killed", "testsCompleted": 2, "static": false, "killedBy": [ - "42" + "73" ], "coveredBy": [ - "41", - "42", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" + "73", + "74" ], "location": { "end": { - "column": 56, - "line": 42 + "column": 27, + "line": 148 }, "start": { "column": 12, - "line": 42 + "line": 148 } } }, { - "id": "4012", + "id": "4120", "mutatorName": "EqualityOperator", - "replacement": "playersWithPositionDependantRoles.length <= 0", - "statusReason": "expected false to be truthy", + "replacement": "leftCount > -1", + "statusReason": "expected -1 to be +0 // Object.is equality", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "41" + "73" ], "coveredBy": [ - "41", - "42", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" + "73", + "74" ], "location": { "end": { - "column": 56, - "line": 42 + "column": 27, + "line": 148 }, "start": { "column": 12, - "line": 42 - } - } - }, - { - "id": "4013", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(45,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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "43", - "44", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755" - ], - "location": { - "end": { - "column": 4, - "line": 49 - }, - "start": { - "column": 89, - "line": 45 + "line": 148 } } }, { - "id": "4014", - "mutatorName": "ArrayDeclaration", - "replacement": "[]", - "statusReason": "expected false to be truthy", + "id": "4121", + "mutatorName": "UnaryOperator", + "replacement": "+1", + "statusReason": "expected +0 to be 1 // Object.is equality", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 4, "static": false, "killedBy": [ - "43" + "74" ], "coveredBy": [ - "43", - "44", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755" + "73", + "74" ], "location": { "end": { - "column": 132, - "line": 46 + "column": 27, + "line": 148 }, "start": { - "column": 95, - "line": 46 + "column": 25, + "line": 148 } } }, { - "id": "4015", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be falsy", + "id": "4122", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected undefined to strictly equal [ …(2) ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "44" + "76" ], "coveredBy": [ - "43", - "44", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755" + "76", + "77", + "533", + "536" ], "location": { "end": { - "column": 63, - "line": 48 + "column": 4, + "line": 158 }, "start": { - "column": 12, - "line": 48 + "column": 160, + "line": 151 } } }, { - "id": "4016", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 1, + "id": "4123", + "mutatorName": "BooleanLiteral", + "replacement": "createGameDto.value.additionalCards", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "43" - ], + "killedBy": [], "coveredBy": [ - "43", - "44", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755" + "76", + "77", + "533", + "536" ], "location": { "end": { - "column": 63, - "line": 48 + "column": 45, + "line": 152 }, "start": { - "column": 12, - "line": 48 + "column": 9, + "line": 152 } } }, { - "id": "4017", - "mutatorName": "EqualityOperator", - "replacement": "playersWithAdditionalCardsDependantRoles.length >= 0", - "statusReason": "expected true to be falsy", + "id": "4124", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected [ Array(1) ] to strictly equal [ …(3) ]", "status": "Killed", "testsCompleted": 2, "static": false, "killedBy": [ - "44" + "77" ], "coveredBy": [ - "43", - "44", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755" + "76", + "77", + "533", + "536" ], "location": { "end": { - "column": 63, - "line": 48 + "column": 45, + "line": 152 }, "start": { - "column": 12, - "line": 48 + "column": 9, + "line": 152 } } }, { - "id": "4018", - "mutatorName": "EqualityOperator", - "replacement": "playersWithAdditionalCardsDependantRoles.length <= 0", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 1, + "id": "4125", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "43" - ], + "killedBy": [], "coveredBy": [ - "43", - "44", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755" + "76", + "77", + "533", + "536" ], "location": { "end": { - "column": 63, - "line": 48 + "column": 45, + "line": 152 }, "start": { - "column": 12, - "line": 48 + "column": 9, + "line": 152 } } }, { - "id": "4019", + "id": "4126", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(154,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "45" - ], + "killedBy": [], "coveredBy": [ - "45", - "46" + "76" ], "location": { "end": { - "column": 4, - "line": 54 + "column": 6, + "line": 154 }, "start": { - "column": 70, - "line": 51 + "column": 47, + "line": 152 } } }, { - "id": "4020", - "mutatorName": "BooleanLiteral", - "replacement": "false", - "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ players: [], …(2) }", + "id": "4127", + "mutatorName": "MethodExpression", + "replacement": "createGameDto.value.additionalCards", + "statusReason": "expected [ …(4) ] to strictly equal [ …(3) ]", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "48" + "77" ], "coveredBy": [ - "48" + "76", + "77", + "533", + "536" ], "location": { "end": { - "column": 68, - "line": 56 + "column": 123, + "line": 156 }, "start": { - "column": 64, - "line": 56 + "column": 43, + "line": 156 } } }, { - "id": "4021", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ players: [], …(2) }", + "id": "4128", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected [ Array(1) ] to strictly equal [ …(3) ]", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 2, "static": false, "killedBy": [ - "47" + "77" ], "coveredBy": [ - "47", - "48", - "49" + "76", + "77", + "533", + "536" ], "location": { "end": { - "column": 4, - "line": 67 + "column": 122, + "line": 156 }, "start": { - "column": 76, - "line": 56 + "column": 86, + "line": 156 } } }, { - "id": "4022", - "mutatorName": "BooleanLiteral", - "replacement": "doesRetrieveLocalStorageValues", - "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ players: [], …(2) }", + "id": "4129", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "48" + "76" ], "coveredBy": [ - "47", - "48", - "49" + "76", + "77", + "533", + "536" ], "location": { "end": { - "column": 40, - "line": 57 + "column": 122, + "line": 156 }, "start": { - "column": 9, - "line": 57 + "column": 94, + "line": 156 } } }, { - "id": "4023", + "id": "4130", "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ players: [], …(2) }", + "replacement": "false", + "statusReason": "expected [ Array(1) ] to strictly equal [ …(3) ]", "status": "Killed", "testsCompleted": 2, "static": false, "killedBy": [ - "48" + "77" ], "coveredBy": [ - "47", - "48", - "49" + "76", + "77", + "533", + "536" ], "location": { "end": { - "column": 40, - "line": 57 + "column": 122, + "line": 156 }, "start": { - "column": 9, - "line": 57 + "column": 94, + "line": 156 } } }, { - "id": "4024", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected { value: _GameOptions{ …(3) } } to strictly equal { value: _GameOptions{ …(3) } }", + "id": "4131", + "mutatorName": "EqualityOperator", + "replacement": "card.recipient === recipient", + "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", "status": "Killed", - "testsCompleted": 3, + "testsCompleted": 1, "static": false, "killedBy": [ - "49" + "76" ], "coveredBy": [ - "47", - "48", - "49" + "76", + "77", + "533", + "536" ], "location": { "end": { - "column": 40, - "line": 57 + "column": 122, + "line": 156 }, "start": { - "column": 9, - "line": 57 + "column": 94, + "line": 156 } } }, { - "id": "4025", + "id": "4132", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected { value: _GameOptions{ …(3) } } to strictly equal { value: _GameOptions{ …(3) } }", - "status": "Killed", - "testsCompleted": 2, + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(160,107): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "49" - ], + "killedBy": [], "coveredBy": [ - "47", - "49" + "78", + "79", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1282", + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { - "column": 6, - "line": 62 + "column": 4, + "line": 162 }, "start": { - "column": 42, - "line": 57 + "column": 137, + "line": 160 } } }, { - "id": "4026", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(63,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", + "id": "4133", + "mutatorName": "LogicalOperator", + "replacement": "createGameDto.value.additionalCards?.filter(card => card.recipient === recipient) && []", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(161,5): error TS2322: Type 'never[] | undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "48" + "78", + "79", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1282", + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { - "column": 6, - "line": 66 + "column": 99, + "line": 161 }, "start": { - "column": 48, - "line": 63 + "column": 12, + "line": 161 } } }, { - "id": "4027", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _GameOptions{ …(3) } to strictly equal _GameOptions{ …(3) }", + "id": "4134", + "mutatorName": "MethodExpression", + "replacement": "createGameDto.value.additionalCards", + "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "50" + "78" ], "coveredBy": [ - "50", - "51" + "78", + "79", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1282", + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { - "column": 4, - "line": 72 + "column": 93, + "line": 161 }, "start": { - "column": 46, - "line": 69 + "column": 12, + "line": 161 } } }, { - "id": "4028", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _GameOptions{ …(3) } to strictly equal _GameOptions{ …(3) }", - "status": "Killed", - "testsCompleted": 1, + "id": "4135", + "mutatorName": "OptionalChaining", + "replacement": "createGameDto.value.additionalCards.filter", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(161,12): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "52" - ], + "killedBy": [], "coveredBy": [ - "52" + "78", + "79", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1282", + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { - "column": 4, - "line": 78 + "column": 55, + "line": 161 }, "start": { - "column": 89, - "line": 74 + "column": 12, + "line": 161 } } }, { - "id": "4029", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected { value: { …(3) } } to strictly equal { value: _GameOptions{ …(3) } }", + "id": "4136", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected [] to strictly equal [ …(2) ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "46" + "78" ], "coveredBy": [ - "45", - "46", - "47", - "49", - "50", - "51", - "52", - "53" + "78", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1282", + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { - "column": 4, - "line": 82 + "column": 92, + "line": 161 }, "start": { - "column": 59, - "line": 80 + "column": 56, + "line": 161 } } }, { - "id": "4030", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected [ …(3) ] to strictly equal [ Array(1) ]", + "id": "4137", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "54" + "78" ], "coveredBy": [ - "54", - "55" + "78", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1282", + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { - "column": 4, - "line": 90 + "column": 92, + "line": 161 }, "start": { - "column": 67, - "line": 84 + "column": 64, + "line": 161 } } }, { - "id": "4031", - "mutatorName": "BooleanLiteral", - "replacement": "createGameDto.value.additionalCards", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,89): error TS7031: Binding element 'recipient' implicitly has an 'any' type.\n", - "status": "CompileError", + "id": "4138", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected [] to strictly equal [ …(2) ]", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "78" + ], "coveredBy": [ - "54", - "55" + "78", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1282", + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { - "column": 45, - "line": 85 + "column": 92, + "line": 161 }, "start": { - "column": 9, - "line": 85 + "column": 64, + "line": 161 } } }, { - "id": "4032", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", - "status": "CompileError", + "id": "4139", + "mutatorName": "EqualityOperator", + "replacement": "card.recipient !== recipient", + "statusReason": "expected [ …(2) ] to strictly equal [ …(2) ]", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], - "coveredBy": [ - "54", - "55" + "killedBy": [ + "78" ], - "location": { - "end": { - "column": 45, - "line": 85 - }, - "start": { - "column": 9, - "line": 85 - } - } - }, - { - "id": "4033", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "54", - "55" - ], - "location": { - "end": { - "column": 45, - "line": 85 - }, - "start": { - "column": 9, - "line": 85 - } - } - }, - { - "id": "4034", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(87,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "55" + "78", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1282", + "1283", + "1284", + "1285", + "1286" ], "location": { "end": { - "column": 6, - "line": 87 + "column": 92, + "line": 161 }, "start": { - "column": 47, - "line": 85 + "column": 64, + "line": 161 } } }, { - "id": "4035", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(89,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", + "id": "4140", + "mutatorName": "ArrayDeclaration", + "replacement": "[\"Stryker was here\"]", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(161,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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "54" - ], - "location": { - "end": { - "column": 91, - "line": 88 - }, - "start": { - "column": 65, - "line": 88 - } - } - }, - { - "id": "4036", - "mutatorName": "MethodExpression", - "replacement": "createGameDto.value.additionalCards", - "statusReason": "expected [ …(3) ] to strictly equal [ Array(1) ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "54" - ], - "coveredBy": [ - "54" - ], - "location": { - "end": { - "column": 132, - "line": 89 - }, - "start": { - "column": 43, - "line": 89 - } - } - }, - { - "id": "4037", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected [] to strictly equal [ Array(1) ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "54" - ], - "coveredBy": [ - "54" - ], - "location": { - "end": { - "column": 131, - "line": 89 - }, - "start": { - "column": 86, - "line": 89 - } - } - }, - { - "id": "4038", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _CreateGameDto{ players: [], …(2) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "56" - ], - "coveredBy": [ - "56" + "79", + "529", + "1286" ], "location": { "end": { - "column": 4, - "line": 94 + "column": 99, + "line": 161 }, "start": { - "column": 72, - "line": 92 + "column": 97, + "line": 161 } } }, { - "id": "4039", + "id": "4141", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(164,79): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "57" - ], + "killedBy": [], "coveredBy": [ - "57", - "58" + "80", + "81" ], "location": { "end": { "column": 4, - "line": 101 - }, - "start": { - "column": 75, - "line": 96 - } - } - }, - { - "id": "4040", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "57" - ], - "coveredBy": [ - "57", - "58" - ], - "location": { - "end": { - "column": 97, - "line": 97 - }, - "start": { - "column": 63, - "line": 97 - } - } - }, - { - "id": "4041", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "57" - ], - "coveredBy": [ - "57", - "58" - ], - "location": { - "end": { - "column": 97, - "line": 97 - }, - "start": { - "column": 77, - "line": 97 - } - } - }, - { - "id": "4042", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "57" - ], - "coveredBy": [ - "57", - "58" - ], - "location": { - "end": { - "column": 97, - "line": 97 + "line": 166 }, "start": { - "column": 77, - "line": 97 + "column": 109, + "line": 164 } } }, { - "id": "4043", - "mutatorName": "EqualityOperator", - "replacement": "name !== player.name", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, + "id": "4142", + "mutatorName": "LogicalOperator", + "replacement": "createGameDto.value.additionalCards?.filter(card => card.roleName === roleName) && []", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(165,5): error TS2322: Type 'never[] | undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "57" - ], + "killedBy": [], "coveredBy": [ - "57", - "58" + "80", + "81" ], "location": { "end": { "column": 97, - "line": 97 - }, - "start": { - "column": 77, - "line": 97 - } - } - }, - { - "id": "4044", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "58" - ], - "coveredBy": [ - "57", - "58" - ], - "location": { - "end": { - "column": 27, - "line": 98 - }, - "start": { - "column": 9, - "line": 98 - } - } - }, - { - "id": "4045", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "57" - ], - "coveredBy": [ - "57", - "58" - ], - "location": { - "end": { - "column": 27, - "line": 98 - }, - "start": { - "column": 9, - "line": 98 - } - } - }, - { - "id": "4046", - "mutatorName": "EqualityOperator", - "replacement": "playerIndex === -1", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "57" - ], - "coveredBy": [ - "57", - "58" - ], - "location": { - "end": { - "column": 27, - "line": 98 - }, - "start": { - "column": 9, - "line": 98 - } - } - }, - { - "id": "4047", - "mutatorName": "UnaryOperator", - "replacement": "+1", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "57" - ], - "coveredBy": [ - "57", - "58" - ], - "location": { - "end": { - "column": 27, - "line": 98 - }, - "start": { - "column": 25, - "line": 98 - } - } - }, - { - "id": "4048", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "57" - ], - "coveredBy": [ - "57" - ], - "location": { - "end": { - "column": 6, - "line": 100 + "line": 165 }, "start": { - "column": 29, - "line": 98 + "column": 12, + "line": 165 } } }, { - "id": "4049", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected [] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(2) ]", + "id": "4143", + "mutatorName": "MethodExpression", + "replacement": "createGameDto.value.additionalCards", + "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "59" + "80" ], "coveredBy": [ - "59" + "80", + "81" ], "location": { "end": { - "column": 4, - "line": 105 + "column": 91, + "line": 165 }, "start": { - "column": 76, - "line": 103 + "column": 12, + "line": 165 } } }, { - "id": "4050", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(104,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", + "id": "4144", + "mutatorName": "OptionalChaining", + "replacement": "createGameDto.value.additionalCards.filter", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(165,12): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "59" - ], - "location": { - "end": { - "column": 91, - "line": 104 - }, - "start": { - "column": 47, - "line": 104 - } - } - }, - { - "id": "4051", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "60" - ], - "coveredBy": [ - "60", - "61" + "80", + "81" ], "location": { "end": { - "column": 4, - "line": 112 + "column": 55, + "line": 165 }, "start": { - "column": 68, - "line": 107 + "column": 12, + "line": 165 } } }, { - "id": "4052", + "id": "4145", "mutatorName": "ArrowFunction", "replacement": "() => undefined", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "statusReason": "expected [] to strictly equal [ …(2) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "60" + "80" ], "coveredBy": [ - "60", - "61" + "80" ], "location": { "end": { - "column": 99, - "line": 108 + "column": 90, + "line": 165 }, "start": { - "column": 63, - "line": 108 + "column": 56, + "line": 165 } } }, { - "id": "4053", + "id": "4146", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "60" - ], - "coveredBy": [ - "60", - "61" - ], - "location": { - "end": { - "column": 99, - "line": 108 - }, - "start": { - "column": 73, - "line": 108 - } - } - }, - { - "id": "4054", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "60" - ], - "coveredBy": [ - "60", - "61" - ], - "location": { - "end": { - "column": 99, - "line": 108 - }, - "start": { - "column": 73, - "line": 108 - } - } - }, - { - "id": "4055", - "mutatorName": "EqualityOperator", - "replacement": "player.name !== playerName", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "60" - ], - "coveredBy": [ - "60", - "61" - ], - "location": { - "end": { - "column": 99, - "line": 108 - }, - "start": { - "column": 73, - "line": 108 - } - } - }, - { - "id": "4056", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "61" + "80" ], "coveredBy": [ - "60", - "61" + "80" ], "location": { "end": { - "column": 27, - "line": 109 + "column": 90, + "line": 165 }, "start": { - "column": 9, - "line": 109 + "column": 64, + "line": 165 } } }, { - "id": "4057", + "id": "4147", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "statusReason": "expected [] to strictly equal [ …(2) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "60" + "80" ], "coveredBy": [ - "60", - "61" + "80" ], "location": { "end": { - "column": 27, - "line": 109 + "column": 90, + "line": 165 }, "start": { - "column": 9, - "line": 109 + "column": 64, + "line": 165 } } }, { - "id": "4058", + "id": "4148", "mutatorName": "EqualityOperator", - "replacement": "playerIndex === -1", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "60" - ], - "coveredBy": [ - "60", - "61" - ], - "location": { - "end": { - "column": 27, - "line": 109 - }, - "start": { - "column": 9, - "line": 109 - } - } - }, - { - "id": "4059", - "mutatorName": "UnaryOperator", - "replacement": "+1", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "60" - ], - "coveredBy": [ - "60", - "61" - ], - "location": { - "end": { - "column": 27, - "line": 109 - }, - "start": { - "column": 25, - "line": 109 - } - } - }, - { - "id": "4060", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _CreateGameDto{ …(3) } to strictly equal _CreateGameDto{ …(3) }", + "replacement": "card.roleName !== roleName", + "statusReason": "expected [ …(2) ] to strictly equal [ …(2) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "60" + "80" ], "coveredBy": [ - "60" + "80" ], "location": { "end": { - "column": 6, - "line": 111 + "column": 90, + "line": 165 }, "start": { - "column": 29, - "line": 109 + "column": 64, + "line": 165 } } }, { - "id": "4061", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(114,55): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "id": "4149", + "mutatorName": "ArrayDeclaration", + "replacement": "[\"Stryker was here\"]", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(165,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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "62", - "63" - ], - "location": { - "end": { - "column": 4, - "line": 116 - }, - "start": { - "column": 63, - "line": 114 - } - } - }, - { - "id": "4062", - "mutatorName": "MethodExpression", - "replacement": "createGameDto.value.players.every(player => player.role.name === roleName)", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "62" - ], - "coveredBy": [ - "62", - "63" - ], - "location": { - "end": { - "column": 85, - "line": 115 - }, - "start": { - "column": 12, - "line": 115 - } - } - }, - { - "id": "4063", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "62" - ], - "coveredBy": [ - "62", - "63" - ], - "location": { - "end": { - "column": 84, - "line": 115 - }, - "start": { - "column": 45, - "line": 115 - } - } - }, - { - "id": "4064", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be falsy", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "63" - ], - "coveredBy": [ - "62", - "63" - ], - "location": { - "end": { - "column": 84, - "line": 115 - }, - "start": { - "column": 55, - "line": 115 - } - } - }, - { - "id": "4065", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "62" - ], - "coveredBy": [ - "62", - "63" - ], - "location": { - "end": { - "column": 84, - "line": 115 - }, - "start": { - "column": 55, - "line": 115 - } - } - }, - { - "id": "4066", - "mutatorName": "EqualityOperator", - "replacement": "player.role.name !== roleName", - "statusReason": "expected true to be falsy", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "63" - ], - "coveredBy": [ - "62", - "63" + "81" ], "location": { "end": { - "column": 84, - "line": 115 + "column": 97, + "line": 165 }, "start": { - "column": 55, - "line": 115 + "column": 95, + "line": 165 } } }, { - "id": "4067", - "mutatorName": "BlockStatement", + "id": "4009", + "mutatorName": "ObjectLiteral", "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(118,71): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(26,53): error TS2345: Argument of type '{}' is not assignable to parameter of type 'OmitToJSON'.\n Type '{}' is missing the following properties from type 'OmitToJSON': options, players\n", "status": "CompileError", "static": false, - "killedBy": [], - "coveredBy": [ - "64", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" - ], - "location": { - "end": { - "column": 4, - "line": 120 - }, - "start": { - "column": 93, - "line": 118 - } - } - }, - { - "id": "4068", - "mutatorName": "MethodExpression", - "replacement": "createGameDto.value.players", - "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "64" - ], "coveredBy": [ + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", "64", + "65", "66", "67", "68", @@ -202463,270 +193665,76 @@ "73", "74", "75", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" - ], - "location": { - "end": { - "column": 87, - "line": 119 - }, - "start": { - "column": 12, - "line": 119 - } - } - }, - { - "id": "4069", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected [] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "64" - ], - "coveredBy": [ - "64", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" - ], - "location": { - "end": { - "column": 86, - "line": 119 - }, - "start": { - "column": 47, - "line": 119 - } - } - }, - { - "id": "4070", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected [ _CreateGamePlayerDto{ …(4) }, …(2) ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "64" - ], - "coveredBy": [ - "64", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" - ], - "location": { - "end": { - "column": 86, - "line": 119 - }, - "start": { - "column": 57, - "line": 119 - } - } - }, - { - "id": "4071", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected [] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "64" - ], - "coveredBy": [ - "64", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" - ], - "location": { - "end": { - "column": 86, - "line": 119 - }, - "start": { - "column": 57, - "line": 119 - } - } - }, - { - "id": "4072", - "mutatorName": "EqualityOperator", - "replacement": "player.role.name !== roleName", - "statusReason": "expected [ _CreateGamePlayerDto{ …(4) } ] to strictly equal [ _CreateGamePlayerDto{ …(4) }, …(1) ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "64" - ], - "coveredBy": [ - "64", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386" - ], - "location": { - "end": { - "column": 86, - "line": 119 - }, - "start": { - "column": 57, - "line": 119 - } - } - }, - { - "id": "4073", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(122,77): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "41", - "42", - "43", - "44", - "65", - "368", - "369", - "370", + "76", + "77", + "78", + "79", + "80", + "81", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", "371", "372", "373", @@ -202743,9 +193751,127 @@ "384", "385", "386", - "744", - "745", - "746", + "387", + "388", + "389", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", + "701", + "702", + "703", "747", "748", "749", @@ -202754,159 +193880,421 @@ "752", "753", "754", - "755" + "755", + "756", + "757", + "758", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", + "800", + "801", + "802", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", + "826", + "827", + "828", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", + "1030", + "1031", + "1032", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", + "1048", + "1049", + "1050", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", + "1319", + "1320", + "1321", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", + "1391", + "1392", + "1393", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", + "1479", + "1480", + "1481", + "1499", + "1500", + "1501", + "1502", + "1503", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", + "1543", + "1544", + "1545", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1677", + "1678", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { "column": 4, - "line": 124 - }, - "start": { - "column": 99, - "line": 122 - } - } - }, - { - "id": "4074", - "mutatorName": "MethodExpression", - "replacement": "createGameDto.value.players", - "statusReason": "expected true to be falsy", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "42" - ], - "coveredBy": [ - "41", - "42", - "43", - "44", - "65", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755" - ], - "location": { - "end": { - "column": 114, - "line": 123 - }, - "start": { - "column": 12, - "line": 123 - } - } - }, - { - "id": "4075", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected false to be truthy", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "41" - ], - "coveredBy": [ - "41", - "42", - "43", - "44", - "65", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755" - ], - "location": { - "end": { - "column": 113, - "line": 123 + "line": 29 }, "start": { - "column": 47, - "line": 123 + "column": 53, + "line": 26 } } }, { - "id": "4076", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be falsy", - "status": "Killed", - "testsCompleted": 2, + "id": "4010", + "mutatorName": "ArrayDeclaration", + "replacement": "[\"Stryker was here\"]", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(27,15): error TS2322: Type 'string' is not assignable to type 'CreateGamePlayerDto'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "42" - ], "coveredBy": [ + "39", + "40", "41", "42", "43", "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", "65", - "368", - "369", - "370", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", "371", "372", "373", @@ -202923,9 +194311,127 @@ "384", "385", "386", - "744", - "745", - "746", + "387", + "388", + "389", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", + "701", + "702", + "703", "747", "748", "749", @@ -202934,39 +194440,421 @@ "752", "753", "754", - "755" - ], - "location": { + "755", + "756", + "757", + "758", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", + "800", + "801", + "802", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", + "826", + "827", + "828", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", + "1030", + "1031", + "1032", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", + "1048", + "1049", + "1050", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", + "1319", + "1320", + "1321", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", + "1391", + "1392", + "1393", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", + "1479", + "1480", + "1481", + "1499", + "1500", + "1501", + "1502", + "1503", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", + "1543", + "1544", + "1545", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1677", + "1678", + "1930", + "1931", + "1932", + "1933" + ], + "location": { "end": { - "column": 113, - "line": 123 + "column": 16, + "line": 27 }, "start": { - "column": 57, - "line": 123 + "column": 14, + "line": 27 } } }, { - "id": "4077", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, + "id": "4011", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(31,65): error TS2345: Argument of type '{}' is not assignable to parameter of type 'OmitToJSON'.\n Type '{}' is missing the following properties from type 'OmitToJSON': options, players\n", + "status": "CompileError", "static": false, - "killedBy": [ - "744" - ], "coveredBy": [ + "39", + "40", "41", "42", "43", "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", "65", - "368", - "369", - "370", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", "371", "372", "373", @@ -202983,9 +194871,127 @@ "384", "385", "386", - "744", - "745", - "746", + "387", + "388", + "389", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", + "701", + "702", + "703", "747", "748", "749", @@ -202994,36 +195000,421 @@ "752", "753", "754", - "755" + "755", + "756", + "757", + "758", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", + "800", + "801", + "802", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", + "826", + "827", + "828", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", + "1030", + "1031", + "1032", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", + "1048", + "1049", + "1050", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", + "1319", + "1320", + "1321", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", + "1391", + "1392", + "1393", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", + "1479", + "1480", + "1481", + "1499", + "1500", + "1501", + "1502", + "1503", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", + "1543", + "1544", + "1545", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1677", + "1678", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { - "column": 113, - "line": 123 + "column": 4, + "line": 34 }, "start": { - "column": 57, - "line": 123 + "column": 65, + "line": 31 } } }, { - "id": "4078", - "mutatorName": "LogicalOperator", - "replacement": "player.role.name || roleNames.includes(player.role.name)", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(123,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", + "id": "4006", + "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(100,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(150,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(227,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(232,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(249,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,33): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(68,24): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(109,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts(119,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(66,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(120,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(129,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(146,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(163,41): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(182,37): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(187,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(201,37): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(218,37): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(223,30): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts(237,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(166,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(176,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(205,28): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(221,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(86,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(103,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(115,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(127,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(131,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(170,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/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(123,35): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(137,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/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.nuxt.spec.ts(41,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(58,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts(85,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.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(46,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(55,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(68,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(85,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(94,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(108,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(122,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(149,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts(158,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(71,33): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayerCard/GameLobbyPlayerCard.nuxt.spec.ts(79,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(74,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(44,31): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(50,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(55,33): error TS2339: Property 'doesCreateGameDtoContainPositionDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(60,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(65,33): error TS2339: Property 'doesCreateGameDtoContainPositionDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(72,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(77,33): error TS2339: Property 'doesCreateGameDtoContainAdditionalCardsDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(82,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(87,33): error TS2339: Property 'doesCreateGameDtoContainAdditionalCardsDependantRoles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(102,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(104,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(117,26): error TS2339: Property 'setCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(119,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(126,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(137,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(139,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(146,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(157,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(159,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(166,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(173,26): error TS2339: Property 'resetCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(176,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(183,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(184,26): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(187,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(192,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(193,26): error TS2339: Property 'resetCreateGameOptionsDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(196,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(203,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(204,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(205,26): error TS2339: Property 'resetCreateGameOptionDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(208,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(216,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(217,26): error TS2339: Property 'saveCreateGameOptionsDtoToLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(219,33): error TS2339: Property 'createGameOptionsDtoFromLocalStorage' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(240,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(245,26): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(247,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(252,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(253,26): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(255,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(268,26): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(270,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(282,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(293,26): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(295,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(305,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(312,26): error TS2339: Property 'updatePlayerInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(314,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(326,26): error TS2339: Property 'setPlayersToCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(328,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(340,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(348,26): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(350,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(360,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(366,26): error TS2339: Property 'removePlayerFromCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(368,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(375,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(380,33): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(385,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(390,33): error TS2339: Property 'isRoleInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(402,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(405,41): error TS2339: Property 'getPlayersWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(420,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(423,41): error TS2339: Property 'getPlayersWithAnyRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(499,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(501,33): error TS2339: Property 'isRoleMinReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(556,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(558,33): error TS2339: Property 'isRoleMaxReachedInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(620,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(622,33): error TS2339: Property 'getRoleLeftCountToReachMinInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(639,26): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(641,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(660,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(673,26): error TS2339: Property 'setAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(675,33): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(700,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(706,41): error TS2339: Property 'getAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(713,41): error TS2339: Property 'getAdditionalCardsForRecipientInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(740,26): error TS2339: Property 'createGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(746,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(753,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store'.\n", "status": "CompileError", "static": false, - "killedBy": [], "coveredBy": [ + "39", + "40", "41", "42", "43", "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", "65", - "368", - "369", - "370", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", "371", "372", "373", @@ -203040,2798 +195431,4257 @@ "384", "385", "386", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755" - ], - "location": { - "end": { - "column": 113, - "line": 123 - }, - "start": { - "column": 57, - "line": 123 - } - } - }, - { - "id": "4079", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(126,65): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "66", - "67", - "68", - "69" - ], - "location": { - "end": { - "column": 4, - "line": 131 - }, - "start": { - "column": 73, - "line": 126 - } - } - }, - { - "id": "4080", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be false // Object.is equality", - "status": "Killed", - "testsCompleted": 3, - "static": false, - "killedBy": [ - "67" - ], - "coveredBy": [ - "66", - "67", - "68", - "69" - ], - "location": { - "end": { - "column": 100, - "line": 130 - }, - "start": { - "column": 12, - "line": 130 - } - } - }, - { - "id": "4081", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected false to be true // Object.is equality", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "66" - ], - "coveredBy": [ - "66", - "67", - "68", - "69" + "387", + "388", + "389", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", + "701", + "702", + "703", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", + "800", + "801", + "802", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", + "826", + "827", + "828", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", + "1030", + "1031", + "1032", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", + "1048", + "1049", + "1050", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", + "1319", + "1320", + "1321", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", + "1391", + "1392", + "1393", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", + "1479", + "1480", + "1481", + "1499", + "1500", + "1501", + "1502", + "1503", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", + "1543", + "1544", + "1545", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1677", + "1678", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { - "column": 100, - "line": 130 + "column": 2, + "line": 193 }, "start": { - "column": 12, - "line": 130 + "column": 75, + "line": 20 } } }, { - "id": "4082", - "mutatorName": "LogicalOperator", - "replacement": "!!role || role.minInGame === undefined || playersWithRoleName.length >= role.minInGame", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,22): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,84): error TS18048: 'role' is possibly 'undefined'.\n", + "id": "4012", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(36,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", "status": "CompileError", "static": false, - "killedBy": [], "coveredBy": [ + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", "66", "67", "68", - "69" + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", + "701", + "702", + "703", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", + "800", + "801", + "802", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", + "826", + "827", + "828", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", + "1030", + "1031", + "1032", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", + "1048", + "1049", + "1050", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", + "1319", + "1320", + "1321", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", + "1391", + "1392", + "1393", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", + "1479", + "1480", + "1481", + "1499", + "1500", + "1501", + "1502", + "1503", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", + "1543", + "1544", + "1545", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1677", + "1678", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { - "column": 100, - "line": 130 + "column": 87, + "line": 36 }, "start": { - "column": 12, - "line": 130 + "column": 54, + "line": 36 } } }, { - "id": "4083", - "mutatorName": "BooleanLiteral", - "replacement": "!role", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,22): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,84): error TS18048: 'role' is possibly 'undefined'.\n", + "id": "4150", + "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(100,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(150,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(227,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(232,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(249,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,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(68,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(109,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(119,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(55,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(66,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(120,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(129,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(146,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(163,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(182,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(187,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(201,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(218,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(223,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(237,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(166,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(176,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(205,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(221,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(86,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(103,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(115,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(127,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(131,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(170,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/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(123,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(137,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/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.nuxt.spec.ts(41,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(58,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(85,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(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(46,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(55,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(68,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(85,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(94,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(108,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(122,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(149,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(158,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(71,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(79,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(74,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/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(44,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(50,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(55,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(60,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(65,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(72,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(77,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(82,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(87,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(102,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(104,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(117,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(119,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(126,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(137,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(139,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(146,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(157,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(159,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(166,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(173,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(176,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(183,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(184,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(187,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(192,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(193,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(196,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(203,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(204,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(205,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(208,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(216,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(217,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(219,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(240,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(245,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(247,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(252,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(253,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(255,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(268,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(270,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(282,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(293,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(295,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(305,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(312,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(314,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(326,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(328,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(340,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(348,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(350,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(360,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(366,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(368,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(375,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(380,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(385,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(390,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(402,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(405,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(420,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(423,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(499,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(501,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(556,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(558,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(620,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(622,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(639,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(641,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(660,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(673,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(675,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(700,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(706,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(713,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(740,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(746,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(753,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", "status": "CompileError", "static": false, - "killedBy": [], - "coveredBy": [ - "66", - "67", - "68", - "69" - ], - "location": { - "end": { - "column": 18, - "line": 130 - }, - "start": { - "column": 12, - "line": 130 - } - } - }, - { - "id": "4084", - "mutatorName": "BooleanLiteral", - "replacement": "role", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,22): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,84): error TS18048: 'role' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "66", - "67", - "68", - "69" - ], - "location": { - "end": { - "column": 18, - "line": 130 - }, - "start": { - "column": 13, - "line": 130 - } - } - }, - { - "id": "4085", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be false // Object.is equality", - "status": "Killed", - "testsCompleted": 3, - "static": false, - "killedBy": [ - "67" - ], - "coveredBy": [ - "66", - "67", - "68", - "69" - ], - "location": { - "end": { - "column": 99, - "line": 130 - }, - "start": { - "column": 23, - "line": 130 - } - } - }, - { - "id": "4086", - "mutatorName": "LogicalOperator", - "replacement": "role.minInGame === undefined && playersWithRoleName.length >= role.minInGame", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,85): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "66", - "67", - "68", - "69" - ], - "location": { - "end": { - "column": 99, - "line": 130 - }, - "start": { - "column": 23, - "line": 130 - } - } - }, - { - "id": "4087", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,62): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "66", - "67", - "68", - "69" - ], - "location": { - "end": { - "column": 51, - "line": 130 - }, - "start": { - "column": 23, - "line": 130 - } - } - }, - { - "id": "4088", - "mutatorName": "EqualityOperator", - "replacement": "role.minInGame !== undefined", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(130,85): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", "66", "67", "68", - "69" - ], - "location": { - "end": { - "column": 51, - "line": 130 - }, - "start": { - "column": 23, - "line": 130 - } - } - }, - { - "id": "4089", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected false to be true // Object.is equality", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "66" - ], - "coveredBy": [ - "66", - "67", - "68" - ], - "location": { - "end": { - "column": 99, - "line": 130 - }, - "start": { - "column": 55, - "line": 130 - } - } - }, - { - "id": "4090", - "mutatorName": "EqualityOperator", - "replacement": "playersWithRoleName.length > role.minInGame", - "statusReason": "expected false to be true // Object.is equality", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "66" - ], - "coveredBy": [ - "66", - "67", - "68" - ], - "location": { - "end": { - "column": 99, - "line": 130 - }, - "start": { - "column": 55, - "line": 130 - } - } - }, - { - "id": "4091", - "mutatorName": "EqualityOperator", - "replacement": "playersWithRoleName.length < role.minInGame", - "statusReason": "expected false to be true // Object.is equality", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "66" - ], - "coveredBy": [ - "66", - "67", - "68" - ], - "location": { - "end": { - "column": 99, - "line": 130 - }, - "start": { - "column": 55, - "line": 130 - } - } - }, - { - "id": "4092", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(133,65): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "70", - "71", - "72" - ], - "location": { - "end": { - "column": 4, - "line": 138 - }, - "start": { - "column": 73, - "line": 133 - } - } - }, - { - "id": "4093", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be false // Object.is equality", - "status": "Killed", - "testsCompleted": 3, - "static": false, - "killedBy": [ - "71" - ], - "coveredBy": [ - "70", - "71", - "72" - ], - "location": { - "end": { - "column": 66, - "line": 137 - }, - "start": { - "column": 12, - "line": 137 - } - } - }, - { - "id": "4094", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected false to be true // Object.is equality", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "70" - ], - "coveredBy": [ - "70", - "71", - "72" - ], - "location": { - "end": { - "column": 66, - "line": 137 - }, - "start": { - "column": 12, - "line": 137 - } - } - }, - { - "id": "4095", - "mutatorName": "LogicalOperator", - "replacement": "!!role || playersWithRoleName.length >= role.maxInGame", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(137,52): error TS18048: 'role' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "70", - "71", - "72" - ], - "location": { - "end": { - "column": 66, - "line": 137 - }, - "start": { - "column": 12, - "line": 137 - } - } - }, - { - "id": "4096", - "mutatorName": "BooleanLiteral", - "replacement": "!role", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(137,51): error TS18048: 'role' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "70", - "71", - "72" - ], - "location": { - "end": { - "column": 18, - "line": 137 - }, - "start": { - "column": 12, - "line": 137 - } - } - }, - { - "id": "4097", - "mutatorName": "BooleanLiteral", - "replacement": "role", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(137,51): error TS18048: 'role' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ + "69", "70", "71", - "72" - ], - "location": { - "end": { - "column": 18, - "line": 137 - }, - "start": { - "column": 13, - "line": 137 - } - } - }, - { - "id": "4098", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be false // Object.is equality", - "status": "Killed", - "testsCompleted": 3, - "static": false, - "killedBy": [ - "71" - ], - "coveredBy": [ - "70", - "71" - ], - "location": { - "end": { - "column": 66, - "line": 137 - }, - "start": { - "column": 22, - "line": 137 - } - } - }, - { - "id": "4099", - "mutatorName": "EqualityOperator", - "replacement": "playersWithRoleName.length > role.maxInGame", - "statusReason": "expected false to be true // Object.is equality", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "70" - ], - "coveredBy": [ - "70", - "71" - ], - "location": { - "end": { - "column": 66, - "line": 137 - }, - "start": { - "column": 22, - "line": 137 - } - } - }, - { - "id": "4100", - "mutatorName": "EqualityOperator", - "replacement": "playersWithRoleName.length < role.maxInGame", - "statusReason": "expected false to be true // Object.is equality", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "70" - ], - "coveredBy": [ - "70", - "71" - ], - "location": { - "end": { - "column": 66, - "line": 137 - }, - "start": { - "column": 22, - "line": 137 - } - } - }, - { - "id": "4101", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(140,75): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ + "72", "73", "74", - "75" + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", + "387", + "388", + "389", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", + "701", + "702", + "703", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", + "757", + "758", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", + "800", + "801", + "802", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", + "826", + "827", + "828", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", + "1030", + "1031", + "1032", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", + "1048", + "1049", + "1050", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", + "1319", + "1320", + "1321", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", + "1391", + "1392", + "1393", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", + "1479", + "1480", + "1481", + "1499", + "1500", + "1501", + "1502", + "1503", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", + "1543", + "1544", + "1545", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1677", + "1678", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { "column": 4, - "line": 149 + "line": 192 }, "start": { - "column": 82, - "line": 140 + "column": 10, + "line": 167 } } - }, + } + ], + "source": "import { defineStore } from \"pinia\";\nimport { get, set } from \"radash\";\nimport type { Paths } from \"type-fest\";\nimport { ref } from \"vue\";\nimport { DEFAULT_GAME_OPTIONS } from \"~/composables/api/game/constants/game-options/game-options.constants\";\nimport type { CreateGameAdditionalCardDto } from \"~/composables/api/game/dto/create-game/create-game-additional-card/create-game-additional-card.dto\";\n\nimport { CreateGamePlayerDto } from \"~/composables/api/game/dto/create-game/create-game-player/create-game-player.dto\";\nimport { CreateGameDto } from \"~/composables/api/game/dto/create-game/create-game.dto\";\nimport type { GameAdditionalCardRecipientRoleName } from \"~/composables/api/game/types/game-additional-card/game-additional-card.types\";\nimport { GameOptions } from \"~/composables/api/game/types/game-options/game-options.class\";\nimport type { DeepStringifiedGameOptions } from \"~/composables/api/game/types/game-options/game-options.types\";\nimport { ADDITIONAL_CARDS_DEPENDANT_ROLES } from \"~/composables/api/role/constants/role.constants\";\nimport type { RoleName } from \"~/composables/api/role/types/role.types\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useRolesStore } from \"~/stores/role/useRolesStore\";\nimport { useLocalStorage } from \"@vueuse/core\";\nimport { LocalStorageKeys } from \"~/utils/enums/local-storage.enums\";\n\nconst useCreateGameDtoStore = defineStore(StoreIds.CREATE_GAME_DTO, () => {\n const rolesStore = useRolesStore();\n const { getRoleWithNameInRoles } = rolesStore;\n\n const createGameOptionsDtoFromLocalStorage = useLocalStorage(LocalStorageKeys.GAME_OPTIONS, DEFAULT_GAME_OPTIONS, { mergeDefaults: true });\n\n const defaultCreateGameDto = CreateGameDto.create({\n players: [],\n options: DEFAULT_GAME_OPTIONS,\n });\n\n const createGameDto = ref(CreateGameDto.create({\n ...defaultCreateGameDto,\n options: createGameOptionsDtoFromLocalStorage.value,\n }));\n\n const createGameOptionsDto = computed(() => createGameDto.value.options);\n\n const doesCreateGameDtoContainPositionDependantRoles = computed(() => {\n const positionDependantRoles: RoleName[] = [\"rusty-sword-knight\", \"bear-tamer\", \"fox\"];\n const playersWithPositionDependantRoles = getPlayersWithAnyRoleNameInCreateGameDto(positionDependantRoles);\n\n return playersWithPositionDependantRoles.length > 0;\n });\n\n const doesCreateGameDtoContainAdditionalCardsDependantRoles = computed(() => {\n const playersWithAdditionalCardsDependantRoles = getPlayersWithAnyRoleNameInCreateGameDto([...ADDITIONAL_CARDS_DEPENDANT_ROLES]);\n\n return playersWithAdditionalCardsDependantRoles.length > 0;\n });\n\n function setCreateGameDto(createGameDtoValue: CreateGameDto): void {\n createGameDto.value = CreateGameDto.create(createGameDtoValue);\n saveCreateGameOptionsDtoToLocalStorage();\n }\n\n function resetCreateGameDto(doesRetrieveLocalStorageValues = true): void {\n if (!doesRetrieveLocalStorageValues) {\n createGameDto.value = CreateGameDto.create(defaultCreateGameDto);\n saveCreateGameOptionsDtoToLocalStorage();\n\n return;\n }\n createGameDto.value = CreateGameDto.create({\n ...defaultCreateGameDto,\n options: createGameOptionsDtoFromLocalStorage.value,\n });\n }\n\n function resetCreateGameOptionsDto(): void {\n createGameDto.value.options = GameOptions.create(DEFAULT_GAME_OPTIONS);\n saveCreateGameOptionsDtoToLocalStorage();\n }\n\n function resetCreateGameOptionDto(optionKey: Paths): void {\n const defaultOptionValue = get(DEFAULT_GAME_OPTIONS, optionKey);\n createGameDto.value.options = GameOptions.create(set(createGameDto.value.options, optionKey, defaultOptionValue));\n saveCreateGameOptionsDtoToLocalStorage();\n }\n\n function saveCreateGameOptionsDtoToLocalStorage(): void {\n createGameOptionsDtoFromLocalStorage.value = createGameDto.value.options;\n }\n\n function removeObsoleteAdditionalCardsFromCreateGameDto(): void {\n if (!createGameDto.value.additionalCards) {\n return;\n }\n const rolesInGame = new Set(createGameDto.value.players.map(player => player.role.name));\n createGameDto.value.additionalCards = createGameDto.value.additionalCards.filter(({ recipient }) => rolesInGame.has(recipient));\n }\n\n function addPlayerToCreateGameDto(player: CreateGamePlayerDto): void {\n createGameDto.value.players.push(CreateGamePlayerDto.create(player));\n }\n\n function updatePlayerInCreateGameDto(player: CreateGamePlayerDto): void {\n const playerIndex = createGameDto.value.players.findIndex(({ name }) => name === player.name);\n if (playerIndex !== -1) {\n createGameDto.value.players.splice(playerIndex, 1, CreateGamePlayerDto.create(player));\n }\n }\n\n function setPlayersToCreateGameDto(players: CreateGamePlayerDto[]): void {\n createGameDto.value.players = players.map(player => CreateGamePlayerDto.create(player));\n }\n\n function removePlayerFromCreateGameDto(playerName: string): void {\n const playerIndex = createGameDto.value.players.findIndex(player => player.name === playerName);\n if (playerIndex !== -1) {\n createGameDto.value.players = createGameDto.value.players.toSpliced(playerIndex, 1);\n }\n }\n\n function isRoleInCreateGameDto(roleName: RoleName): boolean {\n return createGameDto.value.players.some(player => player.role.name === roleName);\n }\n\n function getPlayersWithRoleNameInCreateGameDto(roleName: RoleName): CreateGamePlayerDto[] {\n return createGameDto.value.players.filter(player => player.role.name === roleName);\n }\n\n function getPlayersWithAnyRoleNameInCreateGameDto(roleNames: RoleName[]): CreateGamePlayerDto[] {\n return createGameDto.value.players.filter(player => player.role.name && roleNames.includes(player.role.name));\n }\n\n function isRoleMinReachedInCreateGameDto(roleName: RoleName): boolean {\n const playersWithRoleName = getPlayersWithRoleNameInCreateGameDto(roleName);\n const role = getRoleWithNameInRoles(roleName);\n\n return !!role && (role.minInGame === undefined || playersWithRoleName.length >= role.minInGame);\n }\n\n function isRoleMaxReachedInCreateGameDto(roleName: RoleName): boolean {\n const playersWithRoleName = getPlayersWithRoleNameInCreateGameDto(roleName);\n const role = getRoleWithNameInRoles(roleName);\n\n return !!role && playersWithRoleName.length >= role.maxInGame;\n }\n\n function getRoleLeftCountToReachMinInCreateGameDto(roleName: RoleName): number {\n const playersWithRoleName = getPlayersWithRoleNameInCreateGameDto(roleName);\n const role = getRoleWithNameInRoles(roleName);\n if (role?.minInGame === undefined) {\n return 0;\n }\n const leftCount = role.minInGame - playersWithRoleName.length;\n\n return leftCount <= -1 ? 0 : leftCount;\n }\n\n function setAdditionalCardsForRecipientInCreateGameDto(additionalCards: CreateGameAdditionalCardDto[], recipient: GameAdditionalCardRecipientRoleName): void {\n if (!createGameDto.value.additionalCards) {\n createGameDto.value.additionalCards = additionalCards;\n }\n\n createGameDto.value.additionalCards = createGameDto.value.additionalCards.filter(card => card.recipient !== recipient);\n createGameDto.value.additionalCards.push(...additionalCards);\n }\n\n function getAdditionalCardsForRecipientInCreateGameDto(recipient: GameAdditionalCardRecipientRoleName): CreateGameAdditionalCardDto[] {\n return createGameDto.value.additionalCards?.filter(card => card.recipient === recipient) ?? [];\n }\n\n function getAdditionalCardsWithRoleNameInCreateGameDto(roleName: RoleName): CreateGameAdditionalCardDto[] {\n return createGameDto.value.additionalCards?.filter(card => card.roleName === roleName) ?? [];\n }\n return {\n createGameOptionsDtoFromLocalStorage,\n createGameDto,\n createGameOptionsDto,\n doesCreateGameDtoContainPositionDependantRoles,\n doesCreateGameDtoContainAdditionalCardsDependantRoles,\n setCreateGameDto,\n resetCreateGameDto,\n resetCreateGameOptionsDto,\n resetCreateGameOptionDto,\n saveCreateGameOptionsDtoToLocalStorage,\n removeObsoleteAdditionalCardsFromCreateGameDto,\n addPlayerToCreateGameDto,\n updatePlayerInCreateGameDto,\n setPlayersToCreateGameDto,\n removePlayerFromCreateGameDto,\n isRoleInCreateGameDto,\n getPlayersWithRoleNameInCreateGameDto,\n getPlayersWithAnyRoleNameInCreateGameDto,\n isRoleMinReachedInCreateGameDto,\n isRoleMaxReachedInCreateGameDto,\n getRoleLeftCountToReachMinInCreateGameDto,\n setAdditionalCardsForRecipientInCreateGameDto,\n getAdditionalCardsForRecipientInCreateGameDto,\n getAdditionalCardsWithRoleNameInCreateGameDto,\n };\n});\n\nexport { useCreateGameDtoStore };" + }, + "app/stores/game/game-event/useGameEventsStore.ts": { + "language": "typescript", + "mutants": [ { - "id": "4102", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "73", - "74", - "75" + "id": "4152", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "Snapshot `Game Events Monitor Current Event Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 51, + "static": true, + "killedBy": [ + "190" ], - "location": { - "end": { - "column": 38, - "line": 143 - }, - "start": { - "column": 9, - "line": 143 - } - } - }, - { - "id": "4103", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "73", - "74", - "75" - ], - "location": { - "end": { - "column": 38, - "line": 143 - }, - "start": { - "column": 9, - "line": 143 - } - } - }, - { - "id": "4104", - "mutatorName": "EqualityOperator", - "replacement": "role?.minInGame !== undefined", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "73", - "74", - "75" - ], - "location": { - "end": { - "column": 38, - "line": 143 - }, - "start": { - "column": 9, - "line": 143 - } - } - }, - { - "id": "4105", - "mutatorName": "OptionalChaining", - "replacement": "role.minInGame", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(143,9): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(146,23): error TS18048: 'role' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "73", - "74", - "75" - ], - "location": { - "end": { - "column": 24, - "line": 143 - }, - "start": { - "column": 9, - "line": 143 - } - } - }, - { - "id": "4106", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(144,23): error TS18048: 'role' is possibly 'undefined'.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(144,23): error TS18048: 'role.minInGame' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "75" - ], - "location": { - "end": { - "column": 6, - "line": 145 - }, - "start": { - "column": 40, - "line": 143 - } - } - }, - { - "id": "4107", - "mutatorName": "ArithmeticOperator", - "replacement": "role.minInGame + playersWithRoleName.length", - "statusReason": "expected 2 to be +0 // Object.is equality", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "73" - ], - "coveredBy": [ - "73", - "74" - ], - "location": { - "end": { - "column": 66, - "line": 146 - }, - "start": { - "column": 23, - "line": 146 - } - } - }, - { - "id": "4108", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected +0 to be 1 // Object.is equality", - "status": "Killed", - "testsCompleted": 4, - "static": false, - "killedBy": [ - "74" - ], - "coveredBy": [ - "73", - "74" - ], - "location": { - "end": { - "column": 27, - "line": 148 - }, - "start": { - "column": 12, - "line": 148 - } - } - }, - { - "id": "4109", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected -1 to be +0 // Object.is equality", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "73" - ], - "coveredBy": [ - "73", - "74" - ], - "location": { - "end": { - "column": 27, - "line": 148 - }, - "start": { - "column": 12, - "line": 148 - } - } - }, - { - "id": "4110", - "mutatorName": "EqualityOperator", - "replacement": "leftCount < -1", - "statusReason": "expected -1 to be +0 // Object.is equality", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "73" - ], - "coveredBy": [ - "73", - "74" - ], - "location": { - "end": { - "column": 27, - "line": 148 - }, - "start": { - "column": 12, - "line": 148 - } - } - }, - { - "id": "4111", - "mutatorName": "EqualityOperator", - "replacement": "leftCount > -1", - "statusReason": "expected -1 to be +0 // Object.is equality", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "73" - ], - "coveredBy": [ - "73", - "74" - ], - "location": { - "end": { - "column": 27, - "line": 148 - }, - "start": { - "column": 12, - "line": 148 - } - } - }, - { - "id": "4112", - "mutatorName": "UnaryOperator", - "replacement": "+1", - "statusReason": "expected +0 to be 1 // Object.is equality", - "status": "Killed", - "testsCompleted": 4, - "static": false, - "killedBy": [ - "74" - ], - "coveredBy": [ - "73", - "74" - ], - "location": { - "end": { - "column": 27, - "line": 148 - }, - "start": { - "column": 25, - "line": 148 - } - } - }, - { - "id": "4113", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected undefined to strictly equal [ …(2) ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "76" - ], - "coveredBy": [ - "76", - "77", - "530", - "533" - ], - "location": { - "end": { - "column": 4, - "line": 158 - }, - "start": { - "column": 160, - "line": 151 - } - } - }, - { - "id": "4114", - "mutatorName": "BooleanLiteral", - "replacement": "createGameDto.value.additionalCards", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "76", - "77", - "530", - "533" + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "571", + "572", + "573", + "574", + "575", + "576", + "577", + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "586", + "587", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1673", + "1674", + "1675", + "1676", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" ], "location": { "end": { - "column": 45, - "line": 152 + "column": 83, + "line": 12 }, "start": { - "column": 9, - "line": 152 + "column": 56, + "line": 12 } } }, { - "id": "4115", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected [ Array(1) ] to strictly equal [ …(3) ]", + "id": "4153", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "Snapshot `Game Events Monitor Current Event Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", - "testsCompleted": 2, - "static": false, + "testsCompleted": 51, + "static": true, "killedBy": [ - "77" - ], - "coveredBy": [ - "76", - "77", - "530", - "533" - ], - "location": { - "end": { - "column": 45, - "line": 152 - }, - "start": { - "column": 9, - "line": 152 - } - } - }, - { - "id": "4116", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(156,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "76", - "77", - "530", - "533" + "190" ], - "location": { - "end": { - "column": 45, - "line": 152 - }, - "start": { - "column": 9, - "line": 152 - } - } - }, - { - "id": "4117", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(154,43): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "76" - ], - "location": { - "end": { - "column": 6, - "line": 154 - }, - "start": { - "column": 47, - "line": 152 - } - } - }, - { - "id": "4118", - "mutatorName": "MethodExpression", - "replacement": "createGameDto.value.additionalCards", - "statusReason": "expected [ …(4) ] to strictly equal [ …(3) ]", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "77" - ], - "coveredBy": [ - "76", - "77", - "530", - "533" + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "571", + "572", + "573", + "574", + "575", + "576", + "577", + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "586", + "587", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1673", + "1674", + "1675", + "1676", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" ], "location": { "end": { - "column": 123, - "line": 156 + "column": 113, + "line": 14 }, "start": { - "column": 43, - "line": 156 + "column": 60, + "line": 14 } } }, { - "id": "4119", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected [ Array(1) ] to strictly equal [ …(3) ]", - "status": "Killed", - "testsCompleted": 2, + "id": "4154", + "mutatorName": "OptionalChaining", + "replacement": "gameEvents.value[currentGameEventIndex.value]", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(14,66): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "77" - ], + "killedBy": [], "coveredBy": [ - "76", - "77", - "530", - "533" + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "571", + "578", + "579", + "581", + "587", + "1757", + "1758", + "1759", + "1760", + "1761" ], "location": { "end": { - "column": 122, - "line": 156 + "column": 113, + "line": 14 }, "start": { - "column": 86, - "line": 156 + "column": 66, + "line": 14 } } }, { - "id": "4120", + "id": "4156", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", + "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "76" + "390" ], "coveredBy": [ - "76", - "77", - "530", - "533" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "572", + "573", + "574" ], "location": { "end": { - "column": 122, - "line": 156 + "column": 139, + "line": 15 }, "start": { - "column": 94, - "line": 156 + "column": 60, + "line": 15 } } }, { - "id": "4121", + "id": "4157", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expected [ Array(1) ] to strictly equal [ …(3) ]", + "statusReason": "expected '' to be undefined", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 4, "static": false, "killedBy": [ - "77" + "393" ], "coveredBy": [ - "76", - "77", - "530", - "533" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "572", + "573", + "574" ], "location": { "end": { - "column": 122, - "line": 156 + "column": 139, + "line": 15 }, "start": { - "column": 94, - "line": 156 + "column": 60, + "line": 15 } } }, { - "id": "4122", - "mutatorName": "EqualityOperator", - "replacement": "card.recipient === recipient", - "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", + "id": "4158", + "mutatorName": "LogicalOperator", + "replacement": "currentGameEventIndex.value > 0 || gameStore.makingGamePlayStatus !== \"pending\"", + "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "76" + "390" ], "coveredBy": [ - "76", - "77", - "530", - "533" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "572", + "573", + "574" ], "location": { "end": { - "column": 122, - "line": 156 + "column": 139, + "line": 15 }, "start": { - "column": 94, - "line": 156 + "column": 60, + "line": 15 } } }, { - "id": "4123", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(160,107): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", + "id": "4159", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], - "coveredBy": [ - "78", - "79", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1279", - "1280", - "1281", - "1282", - "1283" + "killedBy": [ + "390" ], - "location": { - "end": { - "column": 4, - "line": 162 - }, - "start": { - "column": 137, - "line": 160 - } - } - }, - { - "id": "4124", - "mutatorName": "LogicalOperator", - "replacement": "createGameDto.value.additionalCards?.filter(card => card.recipient === recipient) && []", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(161,5): error TS2322: Type 'never[] | undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "78", - "79", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1279", - "1280", - "1281", - "1282", - "1283" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "572", + "573", + "574" ], "location": { "end": { - "column": 99, - "line": 161 + "column": 91, + "line": 15 }, "start": { - "column": 12, - "line": 161 + "column": 60, + "line": 15 } } }, { - "id": "4125", - "mutatorName": "MethodExpression", - "replacement": "createGameDto.value.additionalCards", - "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", + "id": "4160", + "mutatorName": "EqualityOperator", + "replacement": "currentGameEventIndex.value >= 0", + "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "78" + "390" ], "coveredBy": [ - "78", - "79", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1279", - "1280", - "1281", - "1282", - "1283" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "572", + "573", + "574" ], "location": { "end": { - "column": 93, - "line": 161 + "column": 91, + "line": 15 }, "start": { - "column": 12, - "line": 161 + "column": 60, + "line": 15 } } }, { - "id": "4126", - "mutatorName": "OptionalChaining", - "replacement": "createGameDto.value.additionalCards.filter", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(161,12): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", - "status": "CompileError", + "id": "4161", + "mutatorName": "EqualityOperator", + "replacement": "currentGameEventIndex.value <= 0", + "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "390" + ], "coveredBy": [ - "78", - "79", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1279", - "1280", - "1281", - "1282", - "1283" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "572", + "573", + "574" ], "location": { "end": { - "column": 55, - "line": 161 + "column": 91, + "line": 15 }, "start": { - "column": 12, - "line": 161 + "column": 60, + "line": 15 } } }, { - "id": "4127", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected [] to strictly equal [ …(2) ]", + "id": "4162", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be falsy", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "574" + ], + "coveredBy": [ + "393", + "395", + "396", + "397", + "398", + "399", + "400", + "402", + "572", + "574" + ], + "location": { + "end": { + "column": 139, + "line": 15 + }, + "start": { + "column": 95, + "line": 15 + } + } + }, + { + "id": "4163", + "mutatorName": "EqualityOperator", + "replacement": "gameStore.makingGamePlayStatus === \"pending\"", + "statusReason": "expected '' to be undefined", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "78" + "393" ], "coveredBy": [ - "78", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1279", - "1280", - "1281", - "1282", - "1283" + "393", + "395", + "396", + "397", + "398", + "399", + "400", + "402", + "572", + "574" ], "location": { "end": { - "column": 92, - "line": 161 + "column": 139, + "line": 15 }, "start": { - "column": 56, - "line": 161 + "column": 95, + "line": 15 } } }, { - "id": "4128", + "id": "4164", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(15,95): error TS2367: This comparison appears to be unintentional because the types 'AsyncDataRequestStatus' and '\"\"' have no overlap.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "393", + "395", + "396", + "397", + "398", + "399", + "400", + "402", + "572", + "574" + ], + "location": { + "end": { + "column": 139, + "line": 15 + }, + "start": { + "column": 130, + "line": 15 + } + } + }, + { + "id": "4166", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", + "statusReason": "expected true to be falsy", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 3, "static": false, "killedBy": [ - "78" + "576" ], "coveredBy": [ - "78", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1279", - "1280", - "1281", - "1282", - "1283" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "575", + "576" ], "location": { "end": { - "column": 92, - "line": 161 + "column": 100, + "line": 16 }, "start": { - "column": 64, - "line": 161 + "column": 56, + "line": 16 } } }, { - "id": "4129", + "id": "4167", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expected [] to strictly equal [ …(2) ]", + "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "78" + "390" ], "coveredBy": [ - "78", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1279", - "1280", - "1281", - "1282", - "1283" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "575", + "576" ], "location": { "end": { - "column": 92, - "line": 161 + "column": 100, + "line": 16 }, "start": { - "column": 64, - "line": 161 + "column": 56, + "line": 16 } } }, { - "id": "4130", + "id": "4168", "mutatorName": "EqualityOperator", - "replacement": "card.recipient !== recipient", - "statusReason": "expected [ …(2) ] to strictly equal [ …(2) ]", + "replacement": "gameStore.makingGamePlayStatus === \"pending\"", + "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "78" + "390" ], "coveredBy": [ - "78", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1279", - "1280", - "1281", - "1282", - "1283" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "575", + "576" ], "location": { "end": { - "column": 92, - "line": 161 + "column": 100, + "line": 16 }, "start": { - "column": 64, - "line": 161 + "column": 56, + "line": 16 } } }, { - "id": "4131", - "mutatorName": "ArrayDeclaration", - "replacement": "[\"Stryker was here\"]", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(161,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", + "id": "4169", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(16,56): error TS2367: This comparison appears to be unintentional because the types 'AsyncDataRequestStatus' and '\"\"' have no overlap.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "79", - "526", - "1283" + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "571", + "575", + "576" ], "location": { "end": { - "column": 99, - "line": 161 + "column": 100, + "line": 16 }, "start": { - "column": 97, - "line": 161 + "column": 91, + "line": 16 } } }, { - "id": "4132", + "id": "4170", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(164,79): error TS2355: A function whose declared type is neither 'undefined', 'void', nor 'any' must return a value.\n", - "status": "CompileError", + "statusReason": "expected 2 to be +0 // Object.is equality", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "577" + ], "coveredBy": [ - "80", - "81" + "577", + "581", + "583", + "584", + "585" ], "location": { "end": { "column": 4, - "line": 166 + "line": 20 }, "start": { - "column": 109, - "line": 164 + "column": 40, + "line": 18 } } }, { - "id": "4133", - "mutatorName": "LogicalOperator", - "replacement": "createGameDto.value.additionalCards?.filter(card => card.roleName === roleName) && []", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(165,5): error TS2322: Type 'never[] | undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n Type 'undefined' is not assignable to type 'CreateGameAdditionalCardDto[]'.\n", + "id": "4171", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'death', …(1) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "578" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "586", + "587" + ], + "location": { + "end": { + "column": 4, + "line": 41 + }, + "start": { + "column": 53, + "line": 22 + } + } + }, + { + "id": "4172", + "mutatorName": "BooleanLiteral", + "replacement": "gameEvents.value", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(27,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(28,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(29,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "80", - "81" + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "586", + "587" ], "location": { "end": { - "column": 97, - "line": 165 + "column": 26, + "line": 23 }, "start": { - "column": 12, - "line": 165 + "column": 9, + "line": 23 } } }, { - "id": "4134", - "mutatorName": "MethodExpression", - "replacement": "createGameDto.value.additionalCards", - "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", - "status": "Killed", - "testsCompleted": 1, + "id": "4173", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(27,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(28,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(29,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "80" + "killedBy": [], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "586", + "587" ], + "location": { + "end": { + "column": 26, + "line": 23 + }, + "start": { + "column": 9, + "line": 23 + } + } + }, + { + "id": "4174", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(27,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(28,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(29,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], "coveredBy": [ - "80", - "81" + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "586", + "587" ], "location": { "end": { - "column": 91, - "line": 165 + "column": 26, + "line": 23 }, "start": { - "column": 12, - "line": 165 + "column": 9, + "line": 23 } } }, { - "id": "4135", - "mutatorName": "OptionalChaining", - "replacement": "createGameDto.value.additionalCards.filter", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(165,12): error TS18048: 'createGameDto.value.additionalCards' is possibly 'undefined'.\n", + "id": "4175", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(25,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(26,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(27,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "80", - "81" + "586" ], "location": { "end": { - "column": 55, - "line": 165 + "column": 6, + "line": 25 }, "start": { - "column": 12, - "line": 165 + "column": 28, + "line": 23 } } }, { - "id": "4136", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected [] to strictly equal [ …(2) ]", + "id": "4176", + "mutatorName": "ArithmeticOperator", + "replacement": "currentGameEventIndex.value - 1", + "statusReason": "Cannot read properties of undefined (reading 'type')", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "80" + "578" ], "coveredBy": [ - "80" + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" ], "location": { "end": { - "column": 90, - "line": 165 + "column": 75, + "line": 27 }, "start": { - "column": 56, - "line": 165 + "column": 44, + "line": 27 } } }, { - "id": "4137", + "id": "4177", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected [ …(4) ] to strictly equal [ …(2) ]", + "statusReason": "expected +0 to be 1 // Object.is equality", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 3, "static": false, "killedBy": [ - "80" + "580" ], "coveredBy": [ - "80" + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" ], "location": { "end": { - "column": 90, - "line": 165 + "column": 88, + "line": 28 }, "start": { - "column": 64, - "line": 165 + "column": 29, + "line": 28 } } }, { - "id": "4138", + "id": "4178", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expected [] to strictly equal [ …(2) ]", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 7, "static": false, "killedBy": [ - "80" + "584" ], "coveredBy": [ - "80" + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" ], "location": { "end": { - "column": 90, - "line": 165 + "column": 88, + "line": 28 }, "start": { - "column": 64, - "line": 165 + "column": 29, + "line": 28 } } }, { - "id": "4139", + "id": "4179", "mutatorName": "EqualityOperator", - "replacement": "card.roleName !== roleName", - "statusReason": "expected [ …(2) ] to strictly equal [ …(2) ]", + "replacement": "currentGameEventIndex.value !== gameEvents.value.length - 1", + "statusReason": "expected +0 to be 1 // Object.is equality", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 3, "static": false, "killedBy": [ - "80" + "580" ], "coveredBy": [ - "80" + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" ], "location": { "end": { - "column": 90, - "line": 165 + "column": 88, + "line": 28 }, "start": { - "column": 64, - "line": 165 + "column": 29, + "line": 28 } } }, { - "id": "4140", - "mutatorName": "ArrayDeclaration", - "replacement": "[\"Stryker was here\"]", - "statusReason": "app/stores/game/create-game-dto/useCreateGameDtoStore.ts(165,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", - "status": "CompileError", + "id": "4180", + "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", + "status": "Killed", + "testsCompleted": 7, "static": false, - "killedBy": [], + "killedBy": [ + "584" + ], "coveredBy": [ - "81" + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" ], "location": { "end": { - "column": 97, - "line": 165 + "column": 88, + "line": 28 }, "start": { - "column": 95, - "line": 165 + "column": 61, + "line": 28 } } }, { - "id": "4141", - "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/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/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/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(100,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(150,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(227,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(232,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(249,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,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(68,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(109,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(119,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(55,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(66,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(120,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(129,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(146,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(163,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(182,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(187,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(201,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(218,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(223,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(237,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(166,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(176,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(205,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(221,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(86,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(103,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(115,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(127,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(131,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(170,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/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/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/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/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts(123,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(137,35): error TS2339: Property 'addPlayerToCreateGameDto' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.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/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.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/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/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.nuxt.spec.ts(41,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(58,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(46,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(55,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(68,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(85,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(94,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(108,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(122,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(149,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(158,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/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/GameLobbyPlayersParty/GameLobbyPlayerCard/GameLobbyPlayerCard.nuxt.spec.ts(71,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(79,33): error TS2339: Property 'removeObsoleteAdditionalCardsFromCreateGameDto' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyPositionCoordinator/GameLobbyPositionCoordinatorSorter/GameLobbyPositionCoordinatorSorter.nuxt.spec.ts(74,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(117,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(325,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(337,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(44,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(50,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(55,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(60,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(65,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(72,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(77,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(82,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(87,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(102,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(104,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(117,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(119,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(126,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(137,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(139,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(146,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(157,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(159,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(166,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(173,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(176,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(183,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(184,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(187,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(192,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(193,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(196,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(203,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(204,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(205,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(208,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(216,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(217,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(219,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(240,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(245,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(247,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(252,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(253,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(255,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(268,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(270,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(282,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(293,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(295,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(305,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(312,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(314,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(326,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(328,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(340,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(348,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(350,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(360,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(366,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(368,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(375,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(380,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(385,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(390,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(402,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(405,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(420,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(423,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(499,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(501,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(556,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(558,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(620,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(622,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(639,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(641,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(660,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(673,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(675,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(700,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(706,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(713,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(740,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(746,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(753,41): error TS2339: Property 'getAdditionalCardsWithRoleNameInCreateGameDto' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", - "status": "CompileError", + "id": "4181", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected +0 to be 1 // Object.is equality", + "status": "Killed", + "testsCompleted": 3, "static": false, - "killedBy": [], + "killedBy": [ + "580" + ], "coveredBy": [ - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1674", - "1675", - "1927", - "1928", - "1929", - "1930" + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" ], "location": { "end": { - "column": 4, - "line": 192 + "column": 145, + "line": 29 }, "start": { - "column": 10, - "line": 167 + "column": 43, + "line": 29 } } - } - ], - "source": "import { defineStore } from \"pinia\";\nimport { get, set } from \"radash\";\nimport type { Paths } from \"type-fest\";\nimport { ref } from \"vue\";\nimport { DEFAULT_GAME_OPTIONS } from \"~/composables/api/game/constants/game-options/game-options.constants\";\nimport type { CreateGameAdditionalCardDto } from \"~/composables/api/game/dto/create-game/create-game-additional-card/create-game-additional-card.dto\";\n\nimport { CreateGamePlayerDto } from \"~/composables/api/game/dto/create-game/create-game-player/create-game-player.dto\";\nimport { CreateGameDto } from \"~/composables/api/game/dto/create-game/create-game.dto\";\nimport type { GameAdditionalCardRecipientRoleName } from \"~/composables/api/game/types/game-additional-card/game-additional-card.types\";\nimport { GameOptions } from \"~/composables/api/game/types/game-options/game-options.class\";\nimport type { DeepStringifiedGameOptions } from \"~/composables/api/game/types/game-options/game-options.types\";\nimport { ADDITIONAL_CARDS_DEPENDANT_ROLES } from \"~/composables/api/role/constants/role.constants\";\nimport type { RoleName } from \"~/composables/api/role/types/role.types\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useRolesStore } from \"~/stores/role/useRolesStore\";\nimport { useLocalStorage } from \"@vueuse/core\";\nimport { LocalStorageKeys } from \"~/utils/enums/local-storage.enums\";\n\nconst useCreateGameDtoStore = defineStore(StoreIds.CREATE_GAME_DTO, () => {\n const rolesStore = useRolesStore();\n const { getRoleWithNameInRoles } = rolesStore;\n\n const createGameOptionsDtoFromLocalStorage = useLocalStorage(LocalStorageKeys.GAME_OPTIONS, DEFAULT_GAME_OPTIONS, { mergeDefaults: true });\n\n const defaultCreateGameDto = CreateGameDto.create({\n players: [],\n options: DEFAULT_GAME_OPTIONS,\n });\n\n const createGameDto = ref(CreateGameDto.create({\n ...defaultCreateGameDto,\n options: createGameOptionsDtoFromLocalStorage.value,\n }));\n\n const createGameOptionsDto = computed(() => createGameDto.value.options);\n\n const doesCreateGameDtoContainPositionDependantRoles = computed(() => {\n const positionDependantRoles: RoleName[] = [\"rusty-sword-knight\", \"bear-tamer\", \"fox\"];\n const playersWithPositionDependantRoles = getPlayersWithAnyRoleNameInCreateGameDto(positionDependantRoles);\n\n return playersWithPositionDependantRoles.length > 0;\n });\n\n const doesCreateGameDtoContainAdditionalCardsDependantRoles = computed(() => {\n const playersWithAdditionalCardsDependantRoles = getPlayersWithAnyRoleNameInCreateGameDto([...ADDITIONAL_CARDS_DEPENDANT_ROLES]);\n\n return playersWithAdditionalCardsDependantRoles.length > 0;\n });\n\n function setCreateGameDto(createGameDtoValue: CreateGameDto): void {\n createGameDto.value = CreateGameDto.create(createGameDtoValue);\n saveCreateGameOptionsDtoToLocalStorage();\n }\n\n function resetCreateGameDto(doesRetrieveLocalStorageValues = true): void {\n if (!doesRetrieveLocalStorageValues) {\n createGameDto.value = CreateGameDto.create(defaultCreateGameDto);\n saveCreateGameOptionsDtoToLocalStorage();\n\n return;\n }\n createGameDto.value = CreateGameDto.create({\n ...defaultCreateGameDto,\n options: createGameOptionsDtoFromLocalStorage.value,\n });\n }\n\n function resetCreateGameOptionsDto(): void {\n createGameDto.value.options = GameOptions.create(DEFAULT_GAME_OPTIONS);\n saveCreateGameOptionsDtoToLocalStorage();\n }\n\n function resetCreateGameOptionDto(optionKey: Paths): void {\n const defaultOptionValue = get(DEFAULT_GAME_OPTIONS, optionKey);\n createGameDto.value.options = GameOptions.create(set(createGameDto.value.options, optionKey, defaultOptionValue));\n saveCreateGameOptionsDtoToLocalStorage();\n }\n\n function saveCreateGameOptionsDtoToLocalStorage(): void {\n createGameOptionsDtoFromLocalStorage.value = createGameDto.value.options;\n }\n\n function removeObsoleteAdditionalCardsFromCreateGameDto(): void {\n if (!createGameDto.value.additionalCards) {\n return;\n }\n const rolesInGame = new Set(createGameDto.value.players.map(player => player.role.name));\n createGameDto.value.additionalCards = createGameDto.value.additionalCards.filter(({ recipient }) => rolesInGame.has(recipient));\n }\n\n function addPlayerToCreateGameDto(player: CreateGamePlayerDto): void {\n createGameDto.value.players.push(CreateGamePlayerDto.create(player));\n }\n\n function updatePlayerInCreateGameDto(player: CreateGamePlayerDto): void {\n const playerIndex = createGameDto.value.players.findIndex(({ name }) => name === player.name);\n if (playerIndex !== -1) {\n createGameDto.value.players.splice(playerIndex, 1, CreateGamePlayerDto.create(player));\n }\n }\n\n function setPlayersToCreateGameDto(players: CreateGamePlayerDto[]): void {\n createGameDto.value.players = players.map(player => CreateGamePlayerDto.create(player));\n }\n\n function removePlayerFromCreateGameDto(playerName: string): void {\n const playerIndex = createGameDto.value.players.findIndex(player => player.name === playerName);\n if (playerIndex !== -1) {\n createGameDto.value.players = createGameDto.value.players.toSpliced(playerIndex, 1);\n }\n }\n\n function isRoleInCreateGameDto(roleName: RoleName): boolean {\n return createGameDto.value.players.some(player => player.role.name === roleName);\n }\n\n function getPlayersWithRoleNameInCreateGameDto(roleName: RoleName): CreateGamePlayerDto[] {\n return createGameDto.value.players.filter(player => player.role.name === roleName);\n }\n\n function getPlayersWithAnyRoleNameInCreateGameDto(roleNames: RoleName[]): CreateGamePlayerDto[] {\n return createGameDto.value.players.filter(player => player.role.name && roleNames.includes(player.role.name));\n }\n\n function isRoleMinReachedInCreateGameDto(roleName: RoleName): boolean {\n const playersWithRoleName = getPlayersWithRoleNameInCreateGameDto(roleName);\n const role = getRoleWithNameInRoles(roleName);\n\n return !!role && (role.minInGame === undefined || playersWithRoleName.length >= role.minInGame);\n }\n\n function isRoleMaxReachedInCreateGameDto(roleName: RoleName): boolean {\n const playersWithRoleName = getPlayersWithRoleNameInCreateGameDto(roleName);\n const role = getRoleWithNameInRoles(roleName);\n\n return !!role && playersWithRoleName.length >= role.maxInGame;\n }\n\n function getRoleLeftCountToReachMinInCreateGameDto(roleName: RoleName): number {\n const playersWithRoleName = getPlayersWithRoleNameInCreateGameDto(roleName);\n const role = getRoleWithNameInRoles(roleName);\n if (role?.minInGame === undefined) {\n return 0;\n }\n const leftCount = role.minInGame - playersWithRoleName.length;\n\n return leftCount <= -1 ? 0 : leftCount;\n }\n\n function setAdditionalCardsForRecipientInCreateGameDto(additionalCards: CreateGameAdditionalCardDto[], recipient: GameAdditionalCardRecipientRoleName): void {\n if (!createGameDto.value.additionalCards) {\n createGameDto.value.additionalCards = additionalCards;\n }\n\n createGameDto.value.additionalCards = createGameDto.value.additionalCards.filter(card => card.recipient !== recipient);\n createGameDto.value.additionalCards.push(...additionalCards);\n }\n\n function getAdditionalCardsForRecipientInCreateGameDto(recipient: GameAdditionalCardRecipientRoleName): CreateGameAdditionalCardDto[] {\n return createGameDto.value.additionalCards?.filter(card => card.recipient === recipient) ?? [];\n }\n\n function getAdditionalCardsWithRoleNameInCreateGameDto(roleName: RoleName): CreateGameAdditionalCardDto[] {\n return createGameDto.value.additionalCards?.filter(card => card.roleName === roleName) ?? [];\n }\n return {\n createGameOptionsDtoFromLocalStorage,\n createGameDto,\n createGameOptionsDto,\n doesCreateGameDtoContainPositionDependantRoles,\n doesCreateGameDtoContainAdditionalCardsDependantRoles,\n setCreateGameDto,\n resetCreateGameDto,\n resetCreateGameOptionsDto,\n resetCreateGameOptionDto,\n saveCreateGameOptionsDtoToLocalStorage,\n removeObsoleteAdditionalCardsFromCreateGameDto,\n addPlayerToCreateGameDto,\n updatePlayerInCreateGameDto,\n setPlayersToCreateGameDto,\n removePlayerFromCreateGameDto,\n isRoleInCreateGameDto,\n getPlayersWithRoleNameInCreateGameDto,\n getPlayersWithAnyRoleNameInCreateGameDto,\n isRoleMinReachedInCreateGameDto,\n isRoleMaxReachedInCreateGameDto,\n getRoleLeftCountToReachMinInCreateGameDto,\n setAdditionalCardsForRecipientInCreateGameDto,\n getAdditionalCardsForRecipientInCreateGameDto,\n getAdditionalCardsWithRoleNameInCreateGameDto,\n };\n});\n\nexport { useCreateGameDtoStore };" - }, - "app/stores/game/game-event/useGameEventsStore.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "4142", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/useGameStore.ts(24,11): error TS2339: Property 'resetGameEventIndex' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & 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(72,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(124,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(129,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(134,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(139,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(145,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(155,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(160,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(168,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(172,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(183,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(189,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(98,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(44,28): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(45,28): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(46,28): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(58,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(60,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(72,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(84,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(86,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(100,30): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(113,30): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(120,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(121,23): error TS2339: Property 'resetGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(123,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(137,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(139,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(147,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(149,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(150,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(161,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(163,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(174,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(176,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(190,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(203,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(215,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(220,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(233,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(235,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(243,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(245,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(258,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(259,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(260,23): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(262,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\n", + "id": "4182", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "status": "Killed", + "testsCompleted": 4, + "static": false, + "killedBy": [ + "581" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 145, + "line": 29 + }, + "start": { + "column": 43, + "line": 29 + } + } + }, + { + "id": "4183", + "mutatorName": "LogicalOperator", + "replacement": "gameEvents.value.length > currentGameEventIndex.value + 1 || nextGameEvent.type === \"game-turn-starts\"", + "statusReason": "Cannot read properties of undefined (reading 'type')", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "579" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 145, + "line": 29 + }, + "start": { + "column": 43, + "line": 29 + } + } + }, + { + "id": "4184", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "Cannot read properties of undefined (reading 'type')", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "579" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 100, + "line": 29 + }, + "start": { + "column": 43, + "line": 29 + } + } + }, + { + "id": "4185", + "mutatorName": "EqualityOperator", + "replacement": "gameEvents.value.length >= currentGameEventIndex.value + 1", + "statusReason": "Cannot read properties of undefined (reading 'type')", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "579" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 100, + "line": 29 + }, + "start": { + "column": 43, + "line": 29 + } + } + }, + { + "id": "4186", + "mutatorName": "EqualityOperator", + "replacement": "gameEvents.value.length <= currentGameEventIndex.value + 1", + "statusReason": "Cannot read properties of undefined (reading 'type')", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "579" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 100, + "line": 29 + }, + "start": { + "column": 43, + "line": 29 + } + } + }, + { + "id": "4187", + "mutatorName": "ArithmeticOperator", + "replacement": "currentGameEventIndex.value - 1", + "statusReason": "Cannot read properties of undefined (reading 'type')", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "579" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 100, + "line": 29 + }, + "start": { + "column": 69, + "line": 29 + } + } + }, + { + "id": "4188", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected +0 to be 1 // Object.is equality", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "580" + ], + "coveredBy": [ + "578", + "580", + "581", + "582", + "583", + "585", + "587" + ], + "location": { + "end": { + "column": 145, + "line": 29 + }, + "start": { + "column": 104, + "line": 29 + } + } + }, + { + "id": "4189", + "mutatorName": "EqualityOperator", + "replacement": "nextGameEvent.type !== \"game-turn-starts\"", + "statusReason": "expected +0 to be 1 // Object.is equality", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "580" + ], + "coveredBy": [ + "578", + "580", + "581", + "582", + "583", + "585", + "587" + ], + "location": { + "end": { + "column": 145, + "line": 29 + }, + "start": { + "column": 104, + "line": 29 + } + } + }, + { + "id": "4190", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(29,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", "status": "CompileError", - "static": true, + "static": false, "killedBy": [], "coveredBy": [ - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "438", - "439", - "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "568", - "569", - "570", - "571", - "572", - "573", - "574", - "575", - "576", - "577", + "578", + "580", + "581", + "582", + "583", + "585", + "587" + ], + "location": { + "end": { + "column": 145, + "line": 29 + }, + "start": { + "column": 127, + "line": 29 + } + } + }, + { + "id": "4191", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected +0 to be 1 // Object.is equality", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "580" + ], + "coveredBy": [ "578", "579", "580", @@ -205839,417 +199689,551 @@ "582", "583", "584", - "667", - "668", - "669", - "670", - "671", - "672", - "673", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", - "972", - "973", - "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1169", - "1170", - "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1267", - "1268", - "1269", - "1270", - "1271", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1479", - "1480", - "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", - "1501", - "1502", - "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1569", - "1570", - "1571", - "1572", - "1573", - "1574", - "1616", - "1617", - "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1670", - "1671", - "1672", - "1673", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" + "585", + "587" ], "location": { "end": { - "column": 2, - "line": 56 + "column": 163, + "line": 30 }, "start": { - "column": 68, - "line": 7 + "column": 73, + "line": 30 } } }, { - "id": "4143", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "Snapshot `Game Events Monitor Current Event Component > should match snapshot when rendered. 1` mismatched", + "id": "4192", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", "status": "Killed", - "testsCompleted": 51, - "static": true, + "testsCompleted": 4, + "static": false, "killedBy": [ - "160" + "581" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 163, + "line": 30 + }, + "start": { + "column": 73, + "line": 30 + } + } + }, + { + "id": "4193", + "mutatorName": "LogicalOperator", + "replacement": "gameStore.game.currentPlay?.action === \"bury-dead-bodies\" || isNextGameEventGameTurnStarts", + "statusReason": "expected +0 to be 1 // Object.is equality", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "580" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 163, + "line": 30 + }, + "start": { + "column": 73, + "line": 30 + } + } + }, + { + "id": "4194", + "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", + "status": "Killed", + "testsCompleted": 5, + "static": false, + "killedBy": [ + "582" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 130, + "line": 30 + }, + "start": { + "column": 73, + "line": 30 + } + } + }, + { + "id": "4195", + "mutatorName": "EqualityOperator", + "replacement": "gameStore.game.currentPlay?.action !== \"bury-dead-bodies\"", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "status": "Killed", + "testsCompleted": 4, + "static": false, + "killedBy": [ + "581" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 130, + "line": 30 + }, + "start": { + "column": 73, + "line": 30 + } + } + }, + { + "id": "4196", + "mutatorName": "OptionalChaining", + "replacement": "gameStore.game.currentPlay.action", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(30,73): error TS18047: 'gameStore.game.currentPlay' is possibly 'null'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 107, + "line": 30 + }, + "start": { + "column": 73, + "line": 30 + } + } + }, + { + "id": "4197", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(30,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\" | ... 7 more ... | undefined' and '\"\"' have no overlap.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 130, + "line": 30 + }, + "start": { + "column": 112, + "line": 30 + } + } + }, + { + "id": "4198", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ …(2) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "578" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 60, + "line": 33 + }, + "start": { + "column": 7, + "line": 32 + } + } + }, + { + "id": "4199", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "status": "Killed", + "testsCompleted": 4, + "static": false, + "killedBy": [ + "581" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 60, + "line": 33 + }, + "start": { + "column": 7, + "line": 32 + } + } + }, + { + "id": "4200", + "mutatorName": "LogicalOperator", + "replacement": "isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts && mustCurrentGamePlayBeSkipped.value && isLastGameEvent && mustCurrentGamePlayBeSkipped.value", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "status": "Killed", + "testsCompleted": 4, + "static": false, + "killedBy": [ + "581" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 60, + "line": 33 + }, + "start": { + "column": 7, + "line": 32 + } + } + }, + { + "id": "4201", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "status": "Killed", + "testsCompleted": 4, + "static": false, + "killedBy": [ + "581" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 104, + "line": 32 + }, + "start": { + "column": 7, + "line": 32 + } + } + }, + { + "id": "4202", + "mutatorName": "LogicalOperator", + "replacement": "isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts || mustCurrentGamePlayBeSkipped.value", + "statusReason": "expected +0 to be 1 // Object.is equality", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "580" + ], + "coveredBy": [ + "578", + "579", + "580", + "581", + "582", + "583", + "584", + "585", + "587" + ], + "location": { + "end": { + "column": 104, + "line": 32 + }, + "start": { + "column": 7, + "line": 32 + } + } + }, + { + "id": "4203", + "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", + "status": "Killed", + "testsCompleted": 5, + "static": false, + "killedBy": [ + "584" + ], + "coveredBy": [ + "578", + "579", + "580", + "582", + "584", + "587" + ], + "location": { + "end": { + "column": 60, + "line": 33 + }, + "start": { + "column": 7, + "line": 33 + } + } + }, + { + "id": "4204", + "mutatorName": "LogicalOperator", + "replacement": "isLastGameEvent || mustCurrentGamePlayBeSkipped.value", + "statusReason": "expected _GameEvent{ …(2) } to be undefined", + "status": "Killed", + "testsCompleted": 2, + "static": false, + "killedBy": [ + "579" + ], + "coveredBy": [ + "578", + "579", + "580", + "582", + "584", + "587" + ], + "location": { + "end": { + "column": 60, + "line": 33 + }, + "start": { + "column": 7, + "line": 33 + } + } + }, + { + "id": "4205", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "581" + ], + "coveredBy": [ + "581", + "583", + "584", + "585" + ], + "location": { + "end": { + "column": 6, + "line": 39 + }, + "start": { + "column": 7, + "line": 34 + } + } + }, + { + "id": "4206", + "mutatorName": "AssignmentOperator", + "replacement": "currentGameEventIndex.value -= 1", + "statusReason": "expected undefined to strictly equal _GameEvent{ …(2) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "578" + ], + "coveredBy": [ + "578", + "579", + "580", + "582", + "587" + ], + "location": { + "end": { + "column": 37, + "line": 40 + }, + "start": { + "column": 5, + "line": 40 + } + } + }, + { + "id": "4207", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ …(2) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "587" + ], + "coveredBy": [ + "587" + ], + "location": { + "end": { + "column": 4, + "line": 45 + }, + "start": { + "column": 42, + "line": 43 + } + } + }, + { + "id": "4208", + "mutatorName": "AssignmentOperator", + "replacement": "currentGameEventIndex.value += 1", + "statusReason": "expected undefined to strictly equal _GameEvent{ …(2) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "587" + ], + "coveredBy": [ + "587" ], + "location": { + "end": { + "column": 37, + "line": 44 + }, + "start": { + "column": 5, + "line": 44 + } + } + }, + { + "id": "4155", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(15,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", + "status": "CompileError", + "static": true, "coveredBy": [ "82", "83", @@ -206328,6 +200312,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -206335,29 +200342,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -206400,9 +200384,9 @@ "279", "280", "281", - "387", - "388", - "389", + "282", + "283", + "284", "390", "391", "392", @@ -206422,9 +200406,9 @@ "406", "407", "408", - "438", - "439", - "440", + "409", + "410", + "411", "441", "442", "443", @@ -206450,9 +200434,9 @@ "463", "464", "465", - "482", - "483", - "484", + "466", + "467", + "468", "485", "486", "487", @@ -206491,9 +200475,9 @@ "520", "521", "522", - "534", - "535", - "536", + "523", + "524", + "525", "537", "538", "539", @@ -206506,9 +200490,9 @@ "546", "547", "548", - "568", - "569", - "570", + "549", + "550", + "551", "571", "572", "573", @@ -206523,16 +200507,16 @@ "582", "583", "584", - "667", - "668", - "669", + "585", + "586", + "587", "670", "671", "672", "673", - "701", - "702", - "703", + "674", + "675", + "676", "704", "705", "706", @@ -206540,9 +200524,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -206562,9 +200546,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -206577,18 +200561,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -206603,9 +200587,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -206643,10 +200627,10 @@ "913", "914", "915", - "953", - "972", - "973", - "974", + "916", + "917", + "918", + "956", "975", "976", "977", @@ -206663,18 +200647,18 @@ "988", "989", "990", - "1030", - "1031", - "1032", + "991", + "992", + "993", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", @@ -206685,9 +200669,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -206697,24 +200681,24 @@ "1074", "1075", "1076", - "1169", - "1170", - "1171", + "1077", + "1078", + "1079", "1172", "1173", "1174", "1175", "1176", "1177", - "1214", - "1215", - "1216", + "1178", + "1179", + "1180", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -206725,10 +200709,10 @@ "1240", "1241", "1242", + "1243", "1244", - "1267", - "1268", - "1269", + "1245", + "1247", "1270", "1271", "1272", @@ -206738,15 +200722,15 @@ "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -206766,28 +200750,28 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", "1469", "1470", - "1479", - "1480", - "1481", + "1471", + "1472", + "1473", "1482", "1483", "1484", @@ -206802,9 +200786,9 @@ "1493", "1494", "1495", - "1501", - "1502", - "1503", + "1496", + "1497", + "1498", "1504", "1505", "1506", @@ -206813,31 +200797,31 @@ "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1569", - "1570", - "1571", + "1549", + "1550", + "1551", "1572", "1573", "1574", - "1616", - "1617", - "1618", + "1575", + "1576", + "1577", "1619", - "1626", - "1650", - "1651", - "1652", + "1620", + "1621", + "1622", + "1629", "1653", "1654", "1655", @@ -206845,95 +200829,94 @@ "1657", "1658", "1659", - "1670", - "1671", - "1672", + "1660", + "1661", + "1662", "1673", - "1688", - "1689", - "1690", + "1674", + "1675", + "1676", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" ], "location": { "end": { - "column": 83, - "line": 12 + "column": 139, + "line": 15 }, "start": { - "column": 56, - "line": 12 + "column": 54, + "line": 15 } } }, { - "id": "4144", + "id": "4165", "mutatorName": "ArrowFunction", "replacement": "() => undefined", - "statusReason": "Snapshot `Game Events Monitor Current Event Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 51, + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(16,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", + "status": "CompileError", "static": true, - "killedBy": [ - "160" - ], "coveredBy": [ "82", "83", @@ -207012,6 +200995,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -207019,29 +201025,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -207084,9 +201067,9 @@ "279", "280", "281", - "387", - "388", - "389", + "282", + "283", + "284", "390", "391", "392", @@ -207106,9 +201089,9 @@ "406", "407", "408", - "438", - "439", - "440", + "409", + "410", + "411", "441", "442", "443", @@ -207134,9 +201117,9 @@ "463", "464", "465", - "482", - "483", - "484", + "466", + "467", + "468", "485", "486", "487", @@ -207175,9 +201158,9 @@ "520", "521", "522", - "534", - "535", - "536", + "523", + "524", + "525", "537", "538", "539", @@ -207190,9 +201173,9 @@ "546", "547", "548", - "568", - "569", - "570", + "549", + "550", + "551", "571", "572", "573", @@ -207207,16 +201190,16 @@ "582", "583", "584", - "667", - "668", - "669", + "585", + "586", + "587", "670", "671", "672", "673", - "701", - "702", - "703", + "674", + "675", + "676", "704", "705", "706", @@ -207224,9 +201207,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -207246,9 +201229,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -207261,18 +201244,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -207287,9 +201270,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -207327,10 +201310,10 @@ "913", "914", "915", - "953", - "972", - "973", - "974", + "916", + "917", + "918", + "956", "975", "976", "977", @@ -207347,18 +201330,18 @@ "988", "989", "990", - "1030", - "1031", - "1032", + "991", + "992", + "993", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", @@ -207369,9 +201352,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -207381,24 +201364,24 @@ "1074", "1075", "1076", - "1169", - "1170", - "1171", + "1077", + "1078", + "1079", "1172", "1173", "1174", "1175", "1176", "1177", - "1214", - "1215", - "1216", + "1178", + "1179", + "1180", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -207409,10 +201392,10 @@ "1240", "1241", "1242", + "1243", "1244", - "1267", - "1268", - "1269", + "1245", + "1247", "1270", "1271", "1272", @@ -207422,15 +201405,15 @@ "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -207450,28 +201433,28 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", "1469", "1470", - "1479", - "1480", - "1481", + "1471", + "1472", + "1473", "1482", "1483", "1484", @@ -207486,9 +201469,9 @@ "1493", "1494", "1495", - "1501", - "1502", - "1503", + "1496", + "1497", + "1498", "1504", "1505", "1506", @@ -207497,31 +201480,31 @@ "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1569", - "1570", - "1571", + "1549", + "1550", + "1551", "1572", "1573", "1574", - "1616", - "1617", - "1618", + "1575", + "1576", + "1577", "1619", - "1626", - "1650", - "1651", - "1652", + "1620", + "1621", + "1622", + "1629", "1653", "1654", "1655", @@ -207529,146 +201512,94 @@ "1657", "1658", "1659", - "1670", - "1671", - "1672", + "1660", + "1661", + "1662", "1673", - "1688", - "1689", - "1690", + "1674", + "1675", + "1676", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" - ], - "location": { - "end": { - "column": 113, - "line": 14 - }, - "start": { - "column": 60, - "line": 14 - } - } - }, - { - "id": "4145", - "mutatorName": "OptionalChaining", - "replacement": "gameEvents.value[currentGameEventIndex.value]", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(14,66): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "568", - "575", - "576", - "578", - "584", - "1754", - "1755", - "1756", - "1757", - "1758" + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" ], "location": { "end": { - "column": 113, - "line": 14 + "column": 100, + "line": 16 }, "start": { - "column": 66, - "line": 14 + "column": 50, + "line": 16 } } }, { - "id": "4146", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(15,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", + "id": "4209", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "app/stores/game/useGameStore.ts(24,11): error TS2339: Property 'resetGameEventIndex' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & 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(72,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(124,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(129,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(134,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(139,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(145,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(155,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(160,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(168,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(172,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(183,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(189,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(98,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(44,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(45,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(46,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(58,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(60,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(72,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(84,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(86,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(100,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(113,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(120,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(121,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(123,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(137,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(139,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(147,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(149,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(150,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(161,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(163,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(174,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(176,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(190,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(203,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(215,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(220,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(233,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,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(243,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(245,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(258,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(259,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(260,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(262,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", "status": "CompileError", "static": true, - "killedBy": [], "coveredBy": [ "82", "83", @@ -207747,6 +201678,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -207754,29 +201708,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -207819,9 +201750,9 @@ "279", "280", "281", - "387", - "388", - "389", + "282", + "283", + "284", "390", "391", "392", @@ -207841,9 +201772,9 @@ "406", "407", "408", - "438", - "439", - "440", + "409", + "410", + "411", "441", "442", "443", @@ -207869,9 +201800,9 @@ "463", "464", "465", - "482", - "483", - "484", + "466", + "467", + "468", "485", "486", "487", @@ -207910,9 +201841,9 @@ "520", "521", "522", - "534", - "535", - "536", + "523", + "524", + "525", "537", "538", "539", @@ -207925,9 +201856,9 @@ "546", "547", "548", - "568", - "569", - "570", + "549", + "550", + "551", "571", "572", "573", @@ -207942,16 +201873,16 @@ "582", "583", "584", - "667", - "668", - "669", + "585", + "586", + "587", "670", "671", "672", "673", - "701", - "702", - "703", + "674", + "675", + "676", "704", "705", "706", @@ -207959,9 +201890,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -207981,9 +201912,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -207996,18 +201927,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -208022,9 +201953,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -208062,10 +201993,10 @@ "913", "914", "915", - "953", - "972", - "973", - "974", + "916", + "917", + "918", + "956", "975", "976", "977", @@ -208082,18 +202013,18 @@ "988", "989", "990", - "1030", - "1031", - "1032", + "991", + "992", + "993", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", @@ -208104,9 +202035,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -208116,24 +202047,24 @@ "1074", "1075", "1076", - "1169", - "1170", - "1171", + "1077", + "1078", + "1079", "1172", "1173", "1174", "1175", "1176", "1177", - "1214", - "1215", - "1216", + "1178", + "1179", + "1180", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -208144,10 +202075,10 @@ "1240", "1241", "1242", + "1243", "1244", - "1267", - "1268", - "1269", + "1245", + "1247", "1270", "1271", "1272", @@ -208157,15 +202088,15 @@ "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -208185,28 +202116,28 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", "1469", "1470", - "1479", - "1480", - "1481", + "1471", + "1472", + "1473", "1482", "1483", "1484", @@ -208221,9 +202152,9 @@ "1493", "1494", "1495", - "1501", - "1502", - "1503", + "1496", + "1497", + "1498", "1504", "1505", "1506", @@ -208232,31 +202163,31 @@ "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1569", - "1570", - "1571", + "1549", + "1550", + "1551", "1572", "1573", "1574", - "1616", - "1617", - "1618", + "1575", + "1576", + "1577", "1619", - "1626", - "1650", - "1651", - "1652", + "1620", + "1621", + "1622", + "1629", "1653", "1654", "1655", @@ -208264,149 +202195,247 @@ "1657", "1658", "1659", - "1670", - "1671", - "1672", + "1660", + "1661", + "1662", "1673", - "1688", - "1689", - "1690", + "1674", + "1675", + "1676", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" - ], - "location": { - "end": { - "column": 139, - "line": 15 - }, - "start": { - "column": 54, - "line": 15 - } - } - }, - { - "id": "4147", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "387" - ], - "coveredBy": [ - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "568", - "569", - "570", - "571" + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" ], "location": { "end": { - "column": 139, - "line": 15 + "column": 4, + "line": 55 }, "start": { - "column": 60, - "line": 15 + "column": 10, + "line": 46 } } }, { - "id": "4148", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected '' to be undefined", - "status": "Killed", - "testsCompleted": 4, - "static": false, - "killedBy": [ - "390" - ], + "id": "4151", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/useGameStore.ts(24,11): error TS2339: Property 'resetGameEventIndex' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & 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(72,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(124,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(129,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(134,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(139,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(145,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(155,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(160,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(168,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(172,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(183,30): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(189,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(98,30): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(44,28): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(45,28): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(46,28): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(58,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(60,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(72,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(84,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(86,30): error TS2339: Property 'canGoToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(100,30): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(113,30): error TS2339: Property 'canGoToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(120,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(121,23): error TS2339: Property 'resetGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(123,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(137,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(139,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(147,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(149,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(150,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(161,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(163,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(174,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(176,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(190,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(203,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(215,23): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(220,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(233,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(235,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(243,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(245,30): error TS2339: Property 'currentGameEventIndex' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(258,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(259,29): error TS2339: Property 'goToNextGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(260,23): error TS2339: Property 'goToPreviousGameEvent' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(262,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store'.\n", + "status": "CompileError", + "static": true, "coveredBy": [ - "387", - "388", - "389", + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", "390", "391", "392", @@ -208426,504 +202455,9 @@ "406", "407", "408", - "568", - "569", - "570", - "571" - ], - "location": { - "end": { - "column": 139, - "line": 15 - }, - "start": { - "column": 60, - "line": 15 - } - } - }, - { - "id": "4149", - "mutatorName": "LogicalOperator", - "replacement": "currentGameEventIndex.value > 0 || gameStore.makingGamePlayStatus !== \"pending\"", - "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "387" - ], - "coveredBy": [ - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "568", - "569", - "570", - "571" - ], - "location": { - "end": { - "column": 139, - "line": 15 - }, - "start": { - "column": 60, - "line": 15 - } - } - }, - { - "id": "4150", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "387" - ], - "coveredBy": [ - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "568", - "569", - "570", - "571" - ], - "location": { - "end": { - "column": 91, - "line": 15 - }, - "start": { - "column": 60, - "line": 15 - } - } - }, - { - "id": "4151", - "mutatorName": "EqualityOperator", - "replacement": "currentGameEventIndex.value >= 0", - "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "387" - ], - "coveredBy": [ - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "568", - "569", - "570", - "571" - ], - "location": { - "end": { - "column": 91, - "line": 15 - }, - "start": { - "column": 60, - "line": 15 - } - } - }, - { - "id": "4152", - "mutatorName": "EqualityOperator", - "replacement": "currentGameEventIndex.value <= 0", - "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "387" - ], - "coveredBy": [ - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "568", - "569", - "570", - "571" - ], - "location": { - "end": { - "column": 91, - "line": 15 - }, - "start": { - "column": 60, - "line": 15 - } - } - }, - { - "id": "4153", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be falsy", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "571" - ], - "coveredBy": [ - "390", - "392", - "393", - "394", - "395", - "396", - "397", - "399", - "569", - "571" - ], - "location": { - "end": { - "column": 139, - "line": 15 - }, - "start": { - "column": 95, - "line": 15 - } - } - }, - { - "id": "4154", - "mutatorName": "EqualityOperator", - "replacement": "gameStore.makingGamePlayStatus === \"pending\"", - "statusReason": "expected '' to be undefined", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "390" - ], - "coveredBy": [ - "390", - "392", - "393", - "394", - "395", - "396", - "397", - "399", - "569", - "571" - ], - "location": { - "end": { - "column": 139, - "line": 15 - }, - "start": { - "column": 95, - "line": 15 - } - } - }, - { - "id": "4155", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(15,95): error TS2367: This comparison appears to be unintentional because the types 'AsyncDataRequestStatus' and '\"\"' have no overlap.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "390", - "392", - "393", - "394", - "395", - "396", - "397", - "399", - "569", - "571" - ], - "location": { - "end": { - "column": 139, - "line": 15 - }, - "start": { - "column": 130, - "line": 15 - } - } - }, - { - "id": "4156", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(16,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", - "status": "CompileError", - "static": true, - "killedBy": [], - "coveredBy": [ - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "438", - "439", - "440", + "409", + "410", + "411", "441", "442", "443", @@ -208949,9 +202483,9 @@ "463", "464", "465", - "482", - "483", - "484", + "466", + "467", + "468", "485", "486", "487", @@ -208990,9 +202524,9 @@ "520", "521", "522", - "534", - "535", - "536", + "523", + "524", + "525", "537", "538", "539", @@ -209005,9 +202539,9 @@ "546", "547", "548", - "568", - "569", - "570", + "549", + "550", + "551", "571", "572", "573", @@ -209022,16 +202556,16 @@ "582", "583", "584", - "667", - "668", - "669", + "585", + "586", + "587", "670", "671", "672", "673", - "701", - "702", - "703", + "674", + "675", + "676", "704", "705", "706", @@ -209039,9 +202573,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -209061,9 +202595,9 @@ "741", "742", "743", - "756", - "757", - "758", + "744", + "745", + "746", "759", "760", "761", @@ -209076,18 +202610,18 @@ "768", "769", "770", - "800", - "801", - "802", + "771", + "772", + "773", "803", "804", "805", "806", "807", "808", - "826", - "827", - "828", + "809", + "810", + "811", "829", "830", "831", @@ -209102,9 +202636,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -209142,10 +202676,10 @@ "913", "914", "915", - "953", - "972", - "973", - "974", + "916", + "917", + "918", + "956", "975", "976", "977", @@ -209162,18 +202696,18 @@ "988", "989", "990", - "1030", - "1031", - "1032", + "991", + "992", + "993", "1033", "1034", "1035", "1036", "1037", "1038", - "1048", - "1049", - "1050", + "1039", + "1040", + "1041", "1051", "1052", "1053", @@ -209184,9 +202718,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -209196,24 +202730,24 @@ "1074", "1075", "1076", - "1169", - "1170", - "1171", + "1077", + "1078", + "1079", "1172", "1173", "1174", "1175", "1176", "1177", - "1214", - "1215", - "1216", + "1178", + "1179", + "1180", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -209224,10 +202758,10 @@ "1240", "1241", "1242", + "1243", "1244", - "1267", - "1268", - "1269", + "1245", + "1247", "1270", "1271", "1272", @@ -209237,15 +202771,15 @@ "1276", "1277", "1278", - "1319", - "1320", - "1321", + "1279", + "1280", + "1281", "1322", "1323", "1324", - "1391", - "1392", - "1393", + "1325", + "1326", + "1327", "1394", "1395", "1396", @@ -209265,28 +202799,28 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", "1469", "1470", - "1479", - "1480", - "1481", + "1471", + "1472", + "1473", "1482", "1483", "1484", @@ -209301,9 +202835,9 @@ "1493", "1494", "1495", - "1501", - "1502", - "1503", + "1496", + "1497", + "1498", "1504", "1505", "1506", @@ -209312,31 +202846,31 @@ "1509", "1510", "1511", - "1528", - "1529", - "1530", + "1512", + "1513", + "1514", "1531", "1532", - "1543", - "1544", - "1545", + "1533", + "1534", + "1535", "1546", "1547", "1548", - "1569", - "1570", - "1571", + "1549", + "1550", + "1551", "1572", "1573", "1574", - "1616", - "1617", - "1618", + "1575", + "1576", + "1577", "1619", - "1626", - "1650", - "1651", - "1652", + "1620", + "1621", + "1622", + "1629", "1653", "1654", "1655", @@ -209344,3322 +202878,2277 @@ "1657", "1658", "1659", - "1670", - "1671", - "1672", + "1660", + "1661", + "1662", "1673", - "1688", - "1689", - "1690", + "1674", + "1675", + "1676", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" - ], - "location": { - "end": { - "column": 100, - "line": 16 - }, - "start": { - "column": 50, - "line": 16 - } - } - }, - { - "id": "4157", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be falsy", - "status": "Killed", - "testsCompleted": 3, - "static": false, - "killedBy": [ - "573" - ], - "coveredBy": [ - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "568", - "572", - "573" + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" ], "location": { "end": { - "column": 100, - "line": 16 + "column": 2, + "line": 56 }, "start": { - "column": 56, - "line": 16 + "column": 68, + "line": 7 } } - }, + } + ], + "source": "import { defineStore } from \"pinia\";\nimport type { GameEvent } from \"~/composables/api/game/game-event/game-event.class\";\nimport { useCurrentGamePlay } from \"~/composables/api/game/game-play/useCurrentGamePlay\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\n\nconst useGameEventsStore = defineStore(StoreIds.GAME_EVENTS, () => {\n const currentGameEventIndex = ref(0);\n\n const gameStore = useGameStore();\n\n const gameEvents = computed(() => gameStore.game.events);\n\n const currentGameEvent = computed(() => gameEvents.value?.[currentGameEventIndex.value]);\n const canGoToPreviousGameEvent = computed(() => currentGameEventIndex.value > 0 && gameStore.makingGamePlayStatus !== \"pending\");\n const canGoToNextGameEvent = computed(() => gameStore.makingGamePlayStatus !== \"pending\");\n\n function resetGameEventIndex(): void {\n currentGameEventIndex.value = 0;\n }\n\n async function goToNextGameEvent(): Promise {\n if (!gameEvents.value) {\n return;\n }\n const { mustCurrentGamePlayBeSkipped } = useCurrentGamePlay(gameStore.game);\n const nextGameEvent = gameEvents.value[currentGameEventIndex.value + 1];\n const isLastGameEvent = currentGameEventIndex.value === gameEvents.value.length - 1;\n const isNextGameEventGameTurnStarts = gameEvents.value.length > currentGameEventIndex.value + 1 && nextGameEvent.type === \"game-turn-starts\";\n const isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts = gameStore.game.currentPlay?.action === \"bury-dead-bodies\" && isNextGameEventGameTurnStarts;\n if (\n isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts && mustCurrentGamePlayBeSkipped.value ||\n isLastGameEvent && mustCurrentGamePlayBeSkipped.value\n ) {\n await gameStore.skipGamePlay();\n resetGameEventIndex();\n\n return;\n }\n currentGameEventIndex.value += 1;\n }\n\n function goToPreviousGameEvent(): void {\n currentGameEventIndex.value -= 1;\n }\n return {\n gameEvents,\n currentGameEventIndex,\n currentGameEvent,\n canGoToPreviousGameEvent,\n canGoToNextGameEvent,\n resetGameEventIndex,\n goToNextGameEvent,\n goToPreviousGameEvent,\n };\n});\n\nexport { useGameEventsStore };" + }, + "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts": { + "language": "typescript", + "mutants": [ { - "id": "4158", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, + "id": "4210", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "tests/unit/specs/components/pages/game/GameOver/GameOverActions/GameOverActions.nuxt.spec.ts(50,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", + "status": "CompileError", "static": false, - "killedBy": [ - "387" - ], + "killedBy": [], "coveredBy": [ - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "568", - "572", - "573" + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "1688", + "1689", + "1690", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1851", + "1852", + "1853" ], "location": { "end": { - "column": 100, - "line": 16 + "column": 2, + "line": 30 }, "start": { - "column": 56, - "line": 16 + "column": 85, + "line": 8 } } }, { - "id": "4159", - "mutatorName": "EqualityOperator", - "replacement": "gameStore.makingGamePlayStatus === \"pending\"", - "statusReason": "Snapshot `Game Events Monitor Footer Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 1, + "id": "4211", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "387" - ], + "killedBy": [], "coveredBy": [ - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "568", - "572", - "573" + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "1688", + "1689", + "1690", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1851", + "1852", + "1853" ], "location": { "end": { - "column": 100, - "line": 16 + "column": 57, + "line": 11 }, "start": { - "column": 56, - "line": 16 + "column": 55, + "line": 11 } } }, { - "id": "4160", + "id": "4212", "mutatorName": "StringLiteral", "replacement": "\"\"", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(16,56): error TS2367: This comparison appears to be unintentional because the types 'AsyncDataRequestStatus' and '\"\"' have no overlap.\n", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "568", - "572", - "573" + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "1688", + "1689", + "1690", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1851", + "1852", + "1853" ], "location": { "end": { - "column": 100, - "line": 16 + "column": 78, + "line": 12 }, "start": { - "column": 91, - "line": 16 + "column": 72, + "line": 12 } } }, { - "id": "4161", + "id": "4213", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected 2 to be +0 // Object.is equality", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "574" + "1852" ], "coveredBy": [ - "574", - "578", - "580", - "581", - "582" + "1852", + "1853" ], "location": { "end": { "column": 4, - "line": 20 + "line": 24 }, "start": { - "column": 40, - "line": 18 + "column": 79, + "line": 14 } } }, { - "id": "4162", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'death', …(1) }", - "status": "Killed", - "testsCompleted": 1, + "id": "4214", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(15,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "575" - ], + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "583", - "584" + "1852", + "1853" ], "location": { "end": { - "column": 4, - "line": 41 + "column": 55, + "line": 15 }, "start": { - "column": 53, - "line": 22 + "column": 46, + "line": 15 } } }, { - "id": "4163", + "id": "4215", "mutatorName": "BooleanLiteral", - "replacement": "gameEvents.value", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(27,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(28,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(29,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", + "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: \"no-action\" | \"vote\" | ... 4 more ... | \"bury-dead-bodies\"; ... 8 more ...; chosenSide?: \"villagers\" | ... 1 more ... | undefined; }; ... 4 more ...; createdAt:...'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "583", - "584" + "1852", + "1853" ], "location": { "end": { - "column": 26, - "line": 23 + "column": 35, + "line": 17 }, "start": { "column": 9, - "line": 23 + "line": 17 } } }, { - "id": "4164", + "id": "4216", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(27,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(28,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(29,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "583", - "584" + "1852", + "1853" ], "location": { "end": { - "column": 26, - "line": 23 + "column": 35, + "line": 17 }, "start": { "column": 9, - "line": 23 + "line": 17 } } }, { - "id": "4165", + "id": "4217", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(27,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(28,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(29,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "583", - "584" + "1852", + "1853" ], "location": { "end": { - "column": 26, - "line": 23 + "column": 35, + "line": 17 }, "start": { "column": 9, - "line": 23 + "line": 17 } } }, { - "id": "4166", + "id": "4218", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(25,27): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(26,61): error TS18048: 'gameEvents.value' is possibly 'undefined'.\napp/stores/game/game-event/useGameEventsStore.ts(27,43): error TS18048: 'gameEvents.value' is possibly 'undefined'.\n", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "583" + "1852" ], "location": { "end": { "column": 6, - "line": 25 + "line": 21 }, "start": { - "column": 28, - "line": 23 + "column": 37, + "line": 17 } } }, { - "id": "4167", - "mutatorName": "ArithmeticOperator", - "replacement": "currentGameEventIndex.value - 1", - "statusReason": "Cannot read properties of undefined (reading 'type')", - "status": "Killed", - "testsCompleted": 1, + "id": "4219", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(18,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "575" - ], + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "1852" ], "location": { "end": { - "column": 75, - "line": 27 + "column": 55, + "line": 18 }, "start": { - "column": 44, - "line": 27 + "column": 48, + "line": 18 } } }, { - "id": "4168", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected +0 to be 1 // Object.is equality", - "status": "Killed", - "testsCompleted": 3, + "id": "4220", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(23,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "577" - ], + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "1853" ], "location": { "end": { - "column": 88, - "line": 28 + "column": 55, + "line": 23 }, "start": { - "column": 29, - "line": 28 + "column": 46, + "line": 23 } } }, { - "id": "4169", - "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", - "status": "Killed", - "testsCompleted": 7, + "id": "4221", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "tests/unit/specs/components/pages/game/GameOver/GameOverActions/GameOverActions.nuxt.spec.ts(50,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", + "status": "CompileError", "static": false, - "killedBy": [ - "581" - ], + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "1688", + "1689", + "1690", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1851", + "1852", + "1853" ], "location": { "end": { - "column": 88, - "line": 28 + "column": 4, + "line": 29 }, "start": { - "column": 29, - "line": 28 + "column": 10, + "line": 25 } } - }, + } + ], + "source": "import type { AsyncDataRequestStatus } from \"nuxt/app\";\nimport { defineStore } from \"pinia\";\n\nimport { useFetchGameHistoryRecords } from \"~/composables/api/game/game-history-record/useFetchGameHistoryRecords\";\nimport type { GameHistoryRecord } from \"~/composables/api/game/types/game-history-record/game-history-record.class\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\n\nconst useGameHistoryRecordsStore = defineStore(StoreIds.GAME_HISTORY_RECORDS, () => {\n const { getGameHistoryRecords } = useFetchGameHistoryRecords();\n\n const gameHistoryRecords = ref([]);\n const fetchingGameHistoryRecordsStatus = ref(\"idle\");\n\n async function fetchAndSetGameHistoryRecords(gameId: string): Promise {\n fetchingGameHistoryRecordsStatus.value = \"pending\";\n const fetchedGameHistoryRecords = await getGameHistoryRecords(gameId);\n if (!fetchedGameHistoryRecords) {\n fetchingGameHistoryRecordsStatus.value = \"error\";\n\n return;\n }\n gameHistoryRecords.value = fetchedGameHistoryRecords;\n fetchingGameHistoryRecordsStatus.value = \"success\";\n }\n return {\n gameHistoryRecords,\n fetchingGameHistoryRecordsStatus,\n fetchAndSetGameHistoryRecords,\n };\n});\n\nexport { useGameHistoryRecordsStore };" + }, + "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts": { + "language": "typescript", + "mutants": [ { - "id": "4170", - "mutatorName": "EqualityOperator", - "replacement": "currentGameEventIndex.value !== gameEvents.value.length - 1", - "statusReason": "expected +0 to be 1 // Object.is equality", - "status": "Killed", - "testsCompleted": 3, + "id": "4222", + "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(76,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(86,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/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", + "status": "CompileError", "static": false, - "killedBy": [ - "577" - ], + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "346", + "347", + "348", + "349", + "350", + "351", + "352", + "353", + "354", + "355", + "356", + "357", + "358", + "359", + "360", + "361", + "362", + "363", + "364", + "365", + "366", + "367", + "368", + "369", + "370", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "1270", + "1271", + "1272", + "1273", + "1274", + "1345", + "1346", + "1347", + "1348", + "1349", + "1350", + "1351", + "1352", + "1353", + "1373", + "1374", + "1375", + "1376", + "1377", + "1378", + "1379" ], "location": { "end": { - "column": 88, - "line": 28 + "column": 2, + "line": 101 }, "start": { - "column": 29, - "line": 28 + "column": 80, + "line": 10 } } }, { - "id": "4171", - "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", + "id": "4223", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _MakeGamePlayDto{ …(5) } to strictly equal _MakeGamePlayDto{ targets: [], …(4) }", "status": "Killed", - "testsCompleted": 7, + "testsCompleted": 1, "static": false, "killedBy": [ - "581" + "347" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "347" ], "location": { "end": { - "column": 88, - "line": 28 + "column": 4, + "line": 15 }, "start": { - "column": 61, - "line": 28 + "column": 76, + "line": 13 } } }, { - "id": "4172", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected +0 to be 1 // Object.is equality", + "id": "4224", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _MakeGamePlayDto{ targets: [], …(4) } to strictly equal _MakeGamePlayDto{ …(5) }", "status": "Killed", - "testsCompleted": 3, + "testsCompleted": 1, "static": false, "killedBy": [ - "577" + "348" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "348" ], "location": { "end": { - "column": 145, - "line": 29 + "column": 4, + "line": 19 }, "start": { - "column": 43, - "line": 29 + "column": 41, + "line": 17 } } }, { - "id": "4173", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "id": "4225", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", "status": "Killed", - "testsCompleted": 4, + "testsCompleted": 1, "static": false, "killedBy": [ - "578" + "349" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "349", + "350" ], "location": { "end": { - "column": 145, - "line": 29 + "column": 4, + "line": 26 }, "start": { - "column": 43, - "line": 29 + "column": 74, + "line": 21 } } }, { - "id": "4174", - "mutatorName": "LogicalOperator", - "replacement": "gameEvents.value.length > currentGameEventIndex.value + 1 || nextGameEvent.type === \"game-turn-starts\"", - "statusReason": "Cannot read properties of undefined (reading 'type')", - "status": "Killed", - "testsCompleted": 2, + "id": "4226", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "576" - ], + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "349", + "350" ], "location": { "end": { - "column": 145, - "line": 29 + "column": 39, + "line": 22 }, "start": { - "column": 43, - "line": 29 + "column": 9, + "line": 22 } } }, { - "id": "4175", + "id": "4227", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "Cannot read properties of undefined (reading 'type')", + "statusReason": "expected [ _MakeGamePlayTargetDto{ …(2) } ] to strictly equal [ Array(2) ]", "status": "Killed", "testsCompleted": 2, "static": false, "killedBy": [ - "576" + "350" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "349", + "350" ], "location": { "end": { - "column": 100, - "line": 29 + "column": 39, + "line": 22 }, "start": { - "column": 43, - "line": 29 + "column": 9, + "line": 22 } } }, { - "id": "4176", - "mutatorName": "EqualityOperator", - "replacement": "gameEvents.value.length >= currentGameEventIndex.value + 1", - "statusReason": "Cannot read properties of undefined (reading 'type')", - "status": "Killed", - "testsCompleted": 2, + "id": "4228", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "576" - ], + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "349", + "350" ], "location": { "end": { - "column": 100, - "line": 29 + "column": 39, + "line": 22 }, "start": { - "column": 43, - "line": 29 + "column": 9, + "line": 22 } } }, { - "id": "4177", - "mutatorName": "EqualityOperator", - "replacement": "gameEvents.value.length <= currentGameEventIndex.value + 1", - "statusReason": "Cannot read properties of undefined (reading 'type')", - "status": "Killed", - "testsCompleted": 2, + "id": "4229", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(23,5): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "576" + "killedBy": [], + "coveredBy": [ + "349" ], + "location": { + "end": { + "column": 6, + "line": 24 + }, + "start": { + "column": 41, + "line": 22 + } + } + }, + { + "id": "4230", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "349" ], "location": { "end": { - "column": 100, - "line": 29 + "column": 41, + "line": 23 }, "start": { - "column": 43, - "line": 29 + "column": 39, + "line": 23 } } }, { - "id": "4178", - "mutatorName": "ArithmeticOperator", - "replacement": "currentGameEventIndex.value - 1", - "statusReason": "Cannot read properties of undefined (reading 'type')", + "id": "4231", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 3, "static": false, "killedBy": [ - "576" + "353" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "351", + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 100, - "line": 29 + "column": 4, + "line": 39 }, "start": { - "column": 69, - "line": 29 + "column": 64, + "line": 28 } } }, { - "id": "4179", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected +0 to be 1 // Object.is equality", - "status": "Killed", - "testsCompleted": 2, + "id": "4232", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "577" - ], + "killedBy": [], "coveredBy": [ - "575", - "577", - "578", - "579", - "580", - "582", - "584" + "351", + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 145, + "column": 39, "line": 29 }, "start": { - "column": 104, + "column": 9, "line": 29 } } }, { - "id": "4180", - "mutatorName": "EqualityOperator", - "replacement": "nextGameEvent.type !== \"game-turn-starts\"", - "statusReason": "expected +0 to be 1 // Object.is equality", - "status": "Killed", - "testsCompleted": 2, + "id": "4233", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "577" - ], + "killedBy": [], "coveredBy": [ - "575", - "577", - "578", - "579", - "580", - "582", - "584" + "351", + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 145, + "column": 39, "line": 29 }, "start": { - "column": 104, + "column": 9, "line": 29 } } }, { - "id": "4181", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(29,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", + "id": "4234", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "575", - "577", - "578", - "579", - "580", - "582", - "584" + "351", + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 145, + "column": 39, "line": 29 }, "start": { - "column": 127, + "column": 9, "line": 29 } } }, { - "id": "4182", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected +0 to be 1 // Object.is equality", - "status": "Killed", - "testsCompleted": 3, + "id": "4235", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "577" - ], + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "351" ], "location": { "end": { - "column": 163, - "line": 30 + "column": 6, + "line": 31 }, "start": { - "column": 73, - "line": 30 + "column": 41, + "line": 29 } } }, { - "id": "4183", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "id": "4236", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", "status": "Killed", - "testsCompleted": 4, + "testsCompleted": 2, "static": false, "killedBy": [ - "578" + "353" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 163, - "line": 30 + "column": 103, + "line": 32 }, "start": { - "column": 73, - "line": 30 + "column": 65, + "line": 32 } } }, { - "id": "4184", - "mutatorName": "LogicalOperator", - "replacement": "gameStore.game.currentPlay?.action === \"bury-dead-bodies\" || isNextGameEventGameTurnStarts", - "statusReason": "expected +0 to be 1 // Object.is equality", + "id": "4237", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", "status": "Killed", - "testsCompleted": 3, + "testsCompleted": 1, "static": false, "killedBy": [ - "577" + "352" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 163, - "line": 30 + "column": 103, + "line": 32 }, "start": { - "column": 73, - "line": 30 + "column": 75, + "line": 32 } } }, { - "id": "4185", + "id": "4238", "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", + "replacement": "false", + "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", "status": "Killed", - "testsCompleted": 5, + "testsCompleted": 2, "static": false, "killedBy": [ - "579" + "353" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 130, - "line": 30 + "column": 103, + "line": 32 }, "start": { - "column": 73, - "line": 30 + "column": 75, + "line": 32 } } }, { - "id": "4186", + "id": "4239", "mutatorName": "EqualityOperator", - "replacement": "gameStore.game.currentPlay?.action !== \"bury-dead-bodies\"", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "replacement": "target.playerId !== targetId", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", "status": "Killed", - "testsCompleted": 4, + "testsCompleted": 1, "static": false, "killedBy": [ - "578" + "352" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 130, - "line": 30 + "column": 103, + "line": 32 }, "start": { - "column": 73, - "line": 30 + "column": 75, + "line": 32 } } }, { - "id": "4187", - "mutatorName": "OptionalChaining", - "replacement": "gameStore.game.currentPlay.action", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(30,73): error TS18047: 'gameStore.game.currentPlay' is possibly 'null'.\n", - "status": "CompileError", + "id": "4240", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "352" + ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 107, - "line": 30 + "column": 27, + "line": 33 }, "start": { - "column": 73, - "line": 30 + "column": 9, + "line": 33 } } }, { - "id": "4188", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(30,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\" | ... 7 more ... | undefined' and '\"\"' have no overlap.\n", + "id": "4241", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 130, - "line": 30 + "column": 27, + "line": 33 }, "start": { - "column": 112, - "line": 30 + "column": 9, + "line": 33 } } }, { - "id": "4189", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ …(2) }", + "id": "4242", + "mutatorName": "EqualityOperator", + "replacement": "targetIndex === -1", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "575" + "352" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 60, + "column": 27, "line": 33 }, "start": { - "column": 7, - "line": 32 + "column": 9, + "line": 33 } } }, { - "id": "4190", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "id": "4243", + "mutatorName": "UnaryOperator", + "replacement": "+1", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", "status": "Killed", - "testsCompleted": 4, + "testsCompleted": 1, "static": false, "killedBy": [ - "578" + "352" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 60, + "column": 27, "line": 33 }, "start": { - "column": 7, - "line": 32 + "column": 25, + "line": 33 } } }, { - "id": "4191", - "mutatorName": "LogicalOperator", - "replacement": "isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts && mustCurrentGamePlayBeSkipped.value && isLastGameEvent && mustCurrentGamePlayBeSkipped.value", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "id": "4244", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", "status": "Killed", - "testsCompleted": 4, + "testsCompleted": 1, "static": false, "killedBy": [ - "578" + "353" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 60, - "line": 33 + "column": 6, + "line": 35 }, "start": { - "column": 7, - "line": 32 + "column": 29, + "line": 33 } } }, { - "id": "4192", + "id": "4245", "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "replacement": "true", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", "status": "Killed", - "testsCompleted": 4, + "testsCompleted": 1, "static": false, "killedBy": [ - "578" + "352" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 104, - "line": 32 + "column": 51, + "line": 36 }, "start": { - "column": 7, - "line": 32 + "column": 9, + "line": 36 } } }, { - "id": "4193", - "mutatorName": "LogicalOperator", - "replacement": "isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts || mustCurrentGamePlayBeSkipped.value", - "statusReason": "expected +0 to be 1 // Object.is equality", + "id": "4246", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected [] to be undefined", "status": "Killed", "testsCompleted": 3, "static": false, "killedBy": [ - "577" + "354" ], "coveredBy": [ - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 104, - "line": 32 + "column": 51, + "line": 36 }, "start": { - "column": 7, - "line": 32 + "column": 9, + "line": 36 } } }, { - "id": "4194", - "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", + "id": "4247", + "mutatorName": "EqualityOperator", + "replacement": "makeGamePlayDto.value.targets.length !== 0", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", "status": "Killed", - "testsCompleted": 5, + "testsCompleted": 1, "static": false, "killedBy": [ - "581" + "352" ], "coveredBy": [ - "575", - "576", - "577", - "579", - "581", - "584" + "352", + "353", + "354", + "357", + "361" ], "location": { "end": { - "column": 60, - "line": 33 + "column": 51, + "line": 36 }, "start": { - "column": 7, - "line": 33 + "column": 9, + "line": 36 } } }, { - "id": "4195", - "mutatorName": "LogicalOperator", - "replacement": "isLastGameEvent || mustCurrentGamePlayBeSkipped.value", - "statusReason": "expected _GameEvent{ …(2) } to be undefined", + "id": "4248", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected [] to be undefined", "status": "Killed", - "testsCompleted": 2, + "testsCompleted": 1, "static": false, "killedBy": [ - "576" + "354" ], "coveredBy": [ - "575", - "576", - "577", - "579", - "581", - "584" + "354" ], "location": { "end": { - "column": 60, - "line": 33 + "column": 6, + "line": 38 }, "start": { - "column": 7, - "line": 33 + "column": 53, + "line": 36 } } }, { - "id": "4196", + "id": "4249", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ type: 'game-starts', …(1) }", + "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 3, "static": false, "killedBy": [ - "578" + "357" ], "coveredBy": [ - "578", - "580", - "581", - "582" + "355", + "356", + "357" ], "location": { "end": { - "column": 6, - "line": 39 + "column": 4, + "line": 47 }, "start": { - "column": 7, - "line": 34 + "column": 53, + "line": 41 } } }, { - "id": "4197", - "mutatorName": "AssignmentOperator", - "replacement": "currentGameEventIndex.value -= 1", - "statusReason": "expected undefined to strictly equal _GameEvent{ …(2) }", - "status": "Killed", - "testsCompleted": 1, + "id": "4250", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "575" + "killedBy": [], + "coveredBy": [ + "355", + "356", + "357" ], + "location": { + "end": { + "column": 85, + "line": 42 + }, + "start": { + "column": 9, + "line": 42 + } + } + }, + { + "id": "4251", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], "coveredBy": [ - "575", - "576", - "577", - "579", - "584" + "355", + "356", + "357" ], "location": { "end": { - "column": 37, - "line": 40 + "column": 85, + "line": 42 }, "start": { - "column": 5, - "line": 40 + "column": 9, + "line": 42 } } }, { - "id": "4198", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _GameEvent{ …(2) } to strictly equal _GameEvent{ …(2) }", - "status": "Killed", - "testsCompleted": 1, + "id": "4252", + "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", + "status": "CompileError", "static": false, - "killedBy": [ - "584" + "killedBy": [], + "coveredBy": [ + "355", + "356", + "357" ], + "location": { + "end": { + "column": 85, + "line": 42 + }, + "start": { + "column": 9, + "line": 42 + } + } + }, + { + "id": "4253", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], "coveredBy": [ - "584" + "355", + "356", + "357" ], "location": { "end": { - "column": 4, - "line": 45 + "column": 39, + "line": 42 }, "start": { - "column": 42, - "line": 43 + "column": 9, + "line": 42 } } }, { - "id": "4199", - "mutatorName": "AssignmentOperator", - "replacement": "currentGameEventIndex.value += 1", - "statusReason": "expected undefined to strictly equal _GameEvent{ …(2) }", + "id": "4254", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "Cannot read properties of undefined (reading 'playerId')", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "584" + "356" ], "coveredBy": [ - "584" + "356", + "357" ], "location": { "end": { - "column": 37, - "line": 44 + "column": 85, + "line": 42 }, "start": { - "column": 5, - "line": 44 + "column": 43, + "line": 42 } } }, { - "id": "4200", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/game/useGameStore.ts(24,11): error TS2339: Property 'resetGameEventIndex' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & 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(72,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(124,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(129,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(134,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(139,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(145,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(155,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(160,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(168,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(172,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(183,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(189,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(98,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(44,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(45,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(46,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(58,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(60,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(72,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(84,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(86,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(100,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(113,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(120,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(121,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(123,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(137,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(139,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(147,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(149,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(150,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(161,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(163,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(174,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(176,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(190,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(203,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(215,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(220,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(233,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,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(243,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(245,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(258,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(259,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(260,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(262,30): error TS2339: Property 'currentGameEvent' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", - "status": "CompileError", - "static": true, - "killedBy": [], + "id": "4255", + "mutatorName": "EqualityOperator", + "replacement": "makeGamePlayDto.value.targets.length !== 0", + "statusReason": "Cannot read properties of undefined (reading 'playerId')", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "356" + ], "coveredBy": [ - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "438", - "439", - "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "568", - "569", - "570", - "571", - "572", - "573", - "574", - "575", - "576", - "577", - "578", - "579", - "580", - "581", - "582", - "583", - "584", - "667", - "668", - "669", - "670", - "671", - "672", - "673", - "701", - "702", - "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", - "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", - "972", - "973", - "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", - "1030", - "1031", - "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1169", - "1170", - "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1267", - "1268", - "1269", - "1270", - "1271", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1479", - "1480", - "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", - "1501", - "1502", - "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1569", - "1570", - "1571", - "1572", - "1573", - "1574", - "1616", - "1617", - "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1670", - "1671", - "1672", - "1673", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" + "356", + "357" ], "location": { "end": { - "column": 4, - "line": 55 + "column": 85, + "line": 42 }, "start": { - "column": 10, - "line": 46 + "column": 43, + "line": 42 } } - } - ], - "source": "import { defineStore } from \"pinia\";\nimport type { GameEvent } from \"~/composables/api/game/game-event/game-event.class\";\nimport { useCurrentGamePlay } from \"~/composables/api/game/game-play/useCurrentGamePlay\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\n\nconst useGameEventsStore = defineStore(StoreIds.GAME_EVENTS, () => {\n const currentGameEventIndex = ref(0);\n\n const gameStore = useGameStore();\n\n const gameEvents = computed(() => gameStore.game.events);\n\n const currentGameEvent = computed(() => gameEvents.value?.[currentGameEventIndex.value]);\n const canGoToPreviousGameEvent = computed(() => currentGameEventIndex.value > 0 && gameStore.makingGamePlayStatus !== \"pending\");\n const canGoToNextGameEvent = computed(() => gameStore.makingGamePlayStatus !== \"pending\");\n\n function resetGameEventIndex(): void {\n currentGameEventIndex.value = 0;\n }\n\n async function goToNextGameEvent(): Promise {\n if (!gameEvents.value) {\n return;\n }\n const { mustCurrentGamePlayBeSkipped } = useCurrentGamePlay(gameStore.game);\n const nextGameEvent = gameEvents.value[currentGameEventIndex.value + 1];\n const isLastGameEvent = currentGameEventIndex.value === gameEvents.value.length - 1;\n const isNextGameEventGameTurnStarts = gameEvents.value.length > currentGameEventIndex.value + 1 && nextGameEvent.type === \"game-turn-starts\";\n const isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts = gameStore.game.currentPlay?.action === \"bury-dead-bodies\" && isNextGameEventGameTurnStarts;\n if (\n isCurrentGamePlayBuryDeadBodiesAndNextEventIsGameTurnStarts && mustCurrentGamePlayBeSkipped.value ||\n isLastGameEvent && mustCurrentGamePlayBeSkipped.value\n ) {\n await gameStore.skipGamePlay();\n resetGameEventIndex();\n\n return;\n }\n currentGameEventIndex.value += 1;\n }\n\n function goToPreviousGameEvent(): void {\n currentGameEventIndex.value -= 1;\n }\n return {\n gameEvents,\n currentGameEventIndex,\n currentGameEvent,\n canGoToPreviousGameEvent,\n canGoToNextGameEvent,\n resetGameEventIndex,\n goToNextGameEvent,\n goToPreviousGameEvent,\n };\n});\n\nexport { useGameEventsStore };" - }, - "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "4201", + "id": "4256", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "tests/unit/specs/components/pages/game/GameOver/GameOverActions/GameOverActions.nuxt.spec.ts(50,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", + "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(43,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "1685", - "1686", - "1687", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1848", - "1849", - "1850" + "355", + "356" ], "location": { "end": { - "column": 2, - "line": 30 + "column": 6, + "line": 44 }, "start": { - "column": 85, - "line": 8 + "column": 87, + "line": 42 } } }, { - "id": "4202", - "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", - "status": "CompileError", + "id": "4257", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", + "status": "Killed", + "testsCompleted": 4, "static": false, - "killedBy": [], + "killedBy": [ + "361" + ], "coveredBy": [ - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "1685", - "1686", - "1687", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1848", - "1849", - "1850" + "358", + "359", + "360", + "361" ], "location": { "end": { - "column": 57, - "line": 11 + "column": 4, + "line": 54 }, "start": { - "column": 55, - "line": 11 + "column": 87, + "line": 49 } } }, { - "id": "4203", - "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", + "id": "4258", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "1685", - "1686", - "1687", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1848", - "1849", - "1850" + "358", + "359", + "360", + "361" ], "location": { "end": { - "column": 78, - "line": 12 + "column": 71, + "line": 50 }, "start": { - "column": 72, - "line": 12 + "column": 36, + "line": 50 } } }, { - "id": "4204", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "id": "4259", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", "status": "Killed", - "testsCompleted": 1, + "testsCompleted": 3, "static": false, "killedBy": [ - "1849" - ], - "coveredBy": [ - "1849", - "1850" - ], - "location": { - "end": { - "column": 4, - "line": 24 - }, - "start": { - "column": 79, - "line": 14 - } - } - }, - { - "id": "4205", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(15,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1849", - "1850" + "361" ], - "location": { - "end": { - "column": 55, - "line": 15 - }, - "start": { - "column": 46, - "line": 15 - } - } - }, - { - "id": "4206", - "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: \"no-action\" | \"vote\" | ... 4 more ... | \"bury-dead-bodies\"; ... 8 more ...; chosenSide?: \"villagers\" | ... 1 more ... | undefined; }; ... 4 more ...; createdAt:...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "1849", - "1850" + "359", + "360", + "361" ], "location": { "end": { - "column": 35, - "line": 17 + "column": 116, + "line": 50 }, "start": { - "column": 9, - "line": 17 + "column": 72, + "line": 50 } } }, { - "id": "4207", + "id": "4260", "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", - "status": "CompileError", + "statusReason": "expected [ Array(2) ] to strictly equal [ Array(3) ]", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "360" + ], "coveredBy": [ - "1849", - "1850" + "360", + "361" ], "location": { "end": { - "column": 35, - "line": 17 + "column": 116, + "line": 50 }, "start": { - "column": 9, - "line": 17 + "column": 82, + "line": 50 } } }, { - "id": "4208", + "id": "4261", "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", - "status": "CompileError", + "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", + "status": "Killed", + "testsCompleted": 2, "static": false, - "killedBy": [], - "coveredBy": [ - "1849", - "1850" + "killedBy": [ + "361" ], - "location": { - "end": { - "column": 35, - "line": 17 - }, - "start": { - "column": 9, - "line": 17 - } - } - }, - { - "id": "4209", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "1849" + "360", + "361" ], "location": { "end": { - "column": 6, - "line": 21 + "column": 116, + "line": 50 }, "start": { - "column": 37, - "line": 17 + "column": 82, + "line": 50 } } }, { - "id": "4210", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(18,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", + "id": "4262", + "mutatorName": "EqualityOperator", + "replacement": "target.drankPotion !== drankPotion", + "statusReason": "expected [ Array(2) ] to strictly equal [ Array(3) ]", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], - "coveredBy": [ - "1849" + "killedBy": [ + "360" ], - "location": { - "end": { - "column": 55, - "line": 18 - }, - "start": { - "column": 48, - "line": 18 - } - } - }, - { - "id": "4211", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/game-history-record/useGameHistoryRecordsStore.ts(23,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], "coveredBy": [ - "1850" + "360", + "361" ], "location": { "end": { - "column": 55, - "line": 23 + "column": 116, + "line": 50 }, "start": { - "column": 46, - "line": 23 + "column": 82, + "line": 50 } } }, { - "id": "4212", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "tests/unit/specs/components/pages/game/GameOver/GameOverActions/GameOverActions.nuxt.spec.ts(50,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", + "id": "4263", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(52,35): error TS18048: 'firstDrankPotionTarget' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "1685", - "1686", - "1687", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1848", - "1849", - "1850" + "358", + "359", + "360", + "361" ], "location": { "end": { - "column": 4, - "line": 29 + "column": 31, + "line": 51 }, "start": { - "column": 10, - "line": 25 + "column": 9, + "line": 51 } } - } - ], - "source": "import type { AsyncDataRequestStatus } from \"nuxt/app\";\nimport { defineStore } from \"pinia\";\n\nimport { useFetchGameHistoryRecords } from \"~/composables/api/game/game-history-record/useFetchGameHistoryRecords\";\nimport type { GameHistoryRecord } from \"~/composables/api/game/types/game-history-record/game-history-record.class\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\n\nconst useGameHistoryRecordsStore = defineStore(StoreIds.GAME_HISTORY_RECORDS, () => {\n const { getGameHistoryRecords } = useFetchGameHistoryRecords();\n\n const gameHistoryRecords = ref([]);\n const fetchingGameHistoryRecordsStatus = ref(\"idle\");\n\n async function fetchAndSetGameHistoryRecords(gameId: string): Promise {\n fetchingGameHistoryRecordsStatus.value = \"pending\";\n const fetchedGameHistoryRecords = await getGameHistoryRecords(gameId);\n if (!fetchedGameHistoryRecords) {\n fetchingGameHistoryRecordsStatus.value = \"error\";\n\n return;\n }\n gameHistoryRecords.value = fetchedGameHistoryRecords;\n fetchingGameHistoryRecordsStatus.value = \"success\";\n }\n return {\n gameHistoryRecords,\n fetchingGameHistoryRecordsStatus,\n fetchAndSetGameHistoryRecords,\n };\n});\n\nexport { useGameHistoryRecordsStore };" - }, - "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "4213", - "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(76,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(86,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/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", + "id": "4264", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(52,35): error TS18048: 'firstDrankPotionTarget' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "343", - "344", - "345", - "346", - "347", - "348", - "349", - "350", - "351", - "352", - "353", - "354", - "355", - "356", - "357", "358", "359", "360", - "361", - "362", - "363", - "364", - "365", - "366", - "367", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "1267", - "1268", - "1269", - "1270", - "1271", - "1342", - "1343", - "1344", - "1345", - "1346", - "1347", - "1348", - "1349", - "1350", - "1370", - "1371", - "1372", - "1373", - "1374", - "1375", - "1376" - ], - "location": { - "end": { - "column": 2, - "line": 101 - }, - "start": { - "column": 80, - "line": 10 - } - } - }, - { - "id": "4214", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _MakeGamePlayDto{ …(5) } to strictly equal _MakeGamePlayDto{ targets: [], …(4) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "344" - ], - "coveredBy": [ - "344" + "361" ], "location": { "end": { - "column": 4, - "line": 15 + "column": 31, + "line": 51 }, "start": { - "column": 76, - "line": 13 + "column": 9, + "line": 51 } } }, { - "id": "4215", + "id": "4265", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected _MakeGamePlayDto{ targets: [], …(4) } to strictly equal _MakeGamePlayDto{ …(5) }", + "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "345" + "361" ], "coveredBy": [ - "345" + "361" ], "location": { "end": { - "column": 4, - "line": 19 + "column": 6, + "line": 53 }, "start": { - "column": 41, - "line": 17 + "column": 33, + "line": 51 } } }, { - "id": "4216", + "id": "4266", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "346" + "362" ], "coveredBy": [ - "346", - "347" + "362", + "363" ], "location": { "end": { "column": 4, - "line": 26 + "line": 61 }, "start": { - "column": 74, - "line": 21 + "column": 68, + "line": 56 } } }, { - "id": "4217", + "id": "4267", "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", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "346", - "347" + "362", + "363" ], "location": { "end": { - "column": 39, - "line": 22 + "column": 37, + "line": 57 }, "start": { "column": 9, - "line": 22 + "line": 57 } } }, { - "id": "4218", + "id": "4268", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected [ _MakeGamePlayTargetDto{ …(2) } ] to strictly equal [ Array(2) ]", + "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) } ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", "status": "Killed", "testsCompleted": 2, "static": false, "killedBy": [ - "347" + "363" ], "coveredBy": [ - "346", - "347" + "362", + "363" ], "location": { "end": { - "column": 39, - "line": 22 + "column": 37, + "line": 57 }, "start": { "column": 9, - "line": 22 + "line": 57 } } }, { - "id": "4219", + "id": "4269", "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", + "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(60,5): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "346", - "347" + "362", + "363" ], "location": { "end": { - "column": 39, - "line": 22 + "column": 37, + "line": 57 }, "start": { "column": 9, - "line": 22 + "line": 57 } } }, { - "id": "4220", + "id": "4270", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(23,5): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", + "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(58,5): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "346" + "362" ], "location": { "end": { "column": 6, - "line": 24 + "line": 59 }, "start": { - "column": 41, - "line": 22 + "column": 39, + "line": 57 } } }, { - "id": "4221", + "id": "4271", "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", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "346" + "362" ], "location": { "end": { - "column": 41, - "line": 23 + "column": 39, + "line": 58 }, "start": { - "column": 39, - "line": 23 + "column": 37, + "line": 58 } } }, { - "id": "4222", + "id": "4272", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", + "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", "status": "Killed", "testsCompleted": 3, "static": false, "killedBy": [ - "350" + "366" ], "coveredBy": [ - "348", - "349", - "350", - "351", - "354", - "358" + "364", + "365", + "366", + "367" ], "location": { "end": { "column": 4, - "line": 39 + "line": 74 }, "start": { - "column": 64, - "line": 28 + "column": 62, + "line": 63 } } }, { - "id": "4223", + "id": "4273", "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", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "348", - "349", - "350", - "351", - "354", - "358" + "364", + "365", + "366", + "367" ], "location": { "end": { - "column": 39, - "line": 29 + "column": 37, + "line": 64 }, "start": { "column": 9, - "line": 29 + "line": 64 } } }, { - "id": "4224", + "id": "4274", "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", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "348", - "349", - "350", - "351", - "354", - "358" + "364", + "365", + "366", + "367" ], "location": { "end": { - "column": 39, - "line": 29 + "column": 37, + "line": 64 }, "start": { "column": 9, - "line": 29 + "line": 64 } } }, { - "id": "4225", + "id": "4275", "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", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "348", - "349", - "350", - "351", - "354", - "358" + "364", + "365", + "366", + "367" ], "location": { "end": { - "column": 39, - "line": 29 + "column": 37, + "line": 64 }, "start": { "column": 9, - "line": 29 + "line": 64 } } }, { - "id": "4226", + "id": "4276", "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", + "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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "348" + "364" ], "location": { "end": { "column": 6, - "line": 31 + "line": 66 }, "start": { - "column": 41, - "line": 29 + "column": 39, + "line": 64 } } }, { - "id": "4227", + "id": "4277", "mutatorName": "ArrowFunction", "replacement": "() => undefined", - "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", + "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", "status": "Killed", "testsCompleted": 2, "static": false, "killedBy": [ - "350" + "366" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 103, - "line": 32 + "column": 95, + "line": 67 }, "start": { - "column": 65, - "line": 32 + "column": 61, + "line": 67 } } }, { - "id": "4228", + "id": "4278", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "349" + "365" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 103, - "line": 32 + "column": 95, + "line": 67 }, "start": { - "column": 75, - "line": 32 + "column": 69, + "line": 67 } } }, { - "id": "4229", + "id": "4279", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", + "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", "status": "Killed", "testsCompleted": 2, "static": false, "killedBy": [ - "350" + "366" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 103, - "line": 32 + "column": 95, + "line": 67 }, "start": { - "column": 75, - "line": 32 + "column": 69, + "line": 67 } } }, { - "id": "4230", + "id": "4280", "mutatorName": "EqualityOperator", - "replacement": "target.playerId !== targetId", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", + "replacement": "vote.sourceId !== sourceId", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "349" + "365" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 103, - "line": 32 + "column": 95, + "line": 67 }, "start": { - "column": 75, - "line": 32 + "column": 69, + "line": 67 } } }, { - "id": "4231", + "id": "4281", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "349" + "365" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 27, - "line": 33 + "column": 25, + "line": 68 }, "start": { "column": 9, - "line": 33 + "line": 68 } } }, { - "id": "4232", + "id": "4282", "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", + "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(69,37): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 27, - "line": 33 + "column": 25, + "line": 68 }, "start": { "column": 9, - "line": 33 + "line": 68 } } }, { - "id": "4233", + "id": "4283", "mutatorName": "EqualityOperator", - "replacement": "targetIndex === -1", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", + "replacement": "voteIndex === -1", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "349" + "365" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 27, - "line": 33 + "column": 25, + "line": 68 }, "start": { "column": 9, - "line": 33 + "line": 68 } } }, { - "id": "4234", + "id": "4284", "mutatorName": "UnaryOperator", "replacement": "+1", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "349" + "365" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 27, - "line": 33 + "column": 25, + "line": 68 }, "start": { - "column": 25, - "line": 33 + "column": 23, + "line": 68 } } }, { - "id": "4235", + "id": "4285", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", + "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "350" + "366" ], "coveredBy": [ - "350", - "351", - "354", - "358" + "366", + "367" ], "location": { "end": { "column": 6, - "line": 35 + "line": 70 }, "start": { - "column": 29, - "line": 33 + "column": 27, + "line": 68 } } }, { - "id": "4236", + "id": "4286", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "349" + "365" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 51, - "line": 36 + "column": 49, + "line": 71 }, "start": { "column": 9, - "line": 36 + "line": 71 } } }, { - "id": "4237", + "id": "4287", "mutatorName": "ConditionalExpression", "replacement": "false", "statusReason": "expected [] to be undefined", @@ -212667,57 +205156,53 @@ "testsCompleted": 3, "static": false, "killedBy": [ - "351" + "367" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 51, - "line": 36 + "column": 49, + "line": 71 }, "start": { "column": 9, - "line": 36 + "line": 71 } } }, { - "id": "4238", + "id": "4288", "mutatorName": "EqualityOperator", - "replacement": "makeGamePlayDto.value.targets.length !== 0", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayTargetDto{ …(2) } ]", + "replacement": "makeGamePlayDto.value.votes.length !== 0", + "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "349" + "365" ], "coveredBy": [ - "349", - "350", - "351", - "354", - "358" + "365", + "366", + "367" ], "location": { "end": { - "column": 51, - "line": 36 + "column": 49, + "line": 71 }, "start": { "column": 9, - "line": 36 + "line": 71 } } }, { - "id": "4239", + "id": "4289", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expected [] to be undefined", @@ -212725,1217 +205210,5690 @@ "testsCompleted": 1, "static": false, "killedBy": [ - "351" + "367" ], "coveredBy": [ - "351" + "367" ], "location": { "end": { "column": 6, - "line": 38 + "line": 73 }, "start": { - "column": 53, - "line": 36 + "column": 51, + "line": 71 } } }, { - "id": "4240", + "id": "4290", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", + "statusReason": "expected undefined to be truthy", "status": "Killed", - "testsCompleted": 3, + "testsCompleted": 1, "static": false, "killedBy": [ - "354" + "368" ], "coveredBy": [ - "352", - "353", - "354" + "368" ], "location": { "end": { "column": 4, - "line": 47 + "line": 78 }, "start": { - "column": 53, - "line": 41 + "column": 99, + "line": 76 } } }, { - "id": "4241", - "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", - "status": "CompileError", + "id": "4291", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected undefined to be 'cardId' // Object.is equality", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "369" + ], "coveredBy": [ - "352", - "353", - "354" + "369" ], "location": { "end": { - "column": 85, - "line": 42 + "column": 4, + "line": 82 }, "start": { - "column": 9, - "line": 42 + "column": 68, + "line": 80 } } }, { - "id": "4242", - "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", - "status": "CompileError", + "id": "4292", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected undefined to be 'werewolves' // Object.is equality", + "status": "Killed", + "testsCompleted": 1, "static": false, - "killedBy": [], + "killedBy": [ + "370" + ], "coveredBy": [ - "352", - "353", - "354" + "370" ], "location": { "end": { - "column": 85, - "line": 42 + "column": 4, + "line": 86 }, "start": { - "column": 9, - "line": 42 + "column": 66, + "line": 84 } } }, { - "id": "4243", - "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", + "id": "4293", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "tests/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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "346", + "347", + "348", + "349", + "350", + "351", "352", "353", - "354" - ], - "location": { - "end": { - "column": 85, - "line": 42 + "354", + "355", + "356", + "357", + "358", + "359", + "360", + "361", + "362", + "363", + "364", + "365", + "366", + "367", + "368", + "369", + "370", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "1270", + "1271", + "1272", + "1273", + "1274", + "1345", + "1346", + "1347", + "1348", + "1349", + "1350", + "1351", + "1352", + "1353", + "1373", + "1374", + "1375", + "1376", + "1377", + "1378", + "1379" + ], + "location": { + "end": { + "column": 4, + "line": 100 }, "start": { - "column": 9, - "line": 42 + "column": 10, + "line": 87 + } + } + } + ], + "source": "import { defineStore } from \"pinia\";\n\nimport { MakeGamePlayTargetDto } from \"~/composables/api/game/dto/make-game-play/make-game-play-target/make-game-play-target.dto\";\nimport { MakeGamePlayVoteDto } from \"~/composables/api/game/dto/make-game-play/make-game-play-vote/make-game-play-vote.dto\";\nimport { MakeGamePlayDto } from \"~/composables/api/game/dto/make-game-play/make-game-play.dto\";\nimport type { WitchPotion } from \"~/composables/api/game/types/game-play/game-play.types\";\nimport type { RoleSide } from \"~/composables/api/role/types/role.types\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\n\nconst useMakeGamePlayDtoStore = defineStore(StoreIds.MAKE_GAME_PLAY_DTO, () => {\n const makeGamePlayDto = ref(MakeGamePlayDto.create({}));\n\n function setMakeGamePlayDto(makeGamePlayDtoValue: MakeGamePlayDto): void {\n makeGamePlayDto.value = MakeGamePlayDto.create(makeGamePlayDtoValue);\n }\n\n function resetMakeGamePlayDto(): void {\n makeGamePlayDto.value = MakeGamePlayDto.create({});\n }\n\n function addMakeGamePlayTargetDto(target: MakeGamePlayTargetDto): void {\n if (!makeGamePlayDto.value.targets) {\n makeGamePlayDto.value.targets = [];\n }\n makeGamePlayDto.value.targets.push(MakeGamePlayTargetDto.create(target));\n }\n\n function removeMakeGamePlayTargetDto(targetId: string): void {\n if (!makeGamePlayDto.value.targets) {\n return;\n }\n const targetIndex = makeGamePlayDto.value.targets.findIndex(target => target.playerId === targetId);\n if (targetIndex !== -1) {\n makeGamePlayDto.value.targets = makeGamePlayDto.value.targets.toSpliced(targetIndex, 1);\n }\n if (makeGamePlayDto.value.targets.length === 0) {\n makeGamePlayDto.value.targets = undefined;\n }\n }\n\n function removeFirstMakeGamePlayTargetDto(): void {\n if (!makeGamePlayDto.value.targets || makeGamePlayDto.value.targets.length === 0) {\n return;\n }\n const firstTarget = makeGamePlayDto.value.targets[0];\n removeMakeGamePlayTargetDto(firstTarget.playerId);\n }\n\n function removeFirstMakeGamePlayTargetDtoWithPotion(drankPotion: WitchPotion): void {\n const firstDrankPotionTarget = makeGamePlayDto.value.targets?.find(target => target.drankPotion === drankPotion);\n if (firstDrankPotionTarget) {\n removeMakeGamePlayTargetDto(firstDrankPotionTarget.playerId);\n }\n }\n\n function addMakeGamePlayVoteDto(vote: MakeGamePlayVoteDto): void {\n if (!makeGamePlayDto.value.votes) {\n makeGamePlayDto.value.votes = [];\n }\n makeGamePlayDto.value.votes.push(MakeGamePlayVoteDto.create(vote));\n }\n\n function removeMakeGamePlayVoteDto(sourceId: string): void {\n if (!makeGamePlayDto.value.votes) {\n return;\n }\n const voteIndex = makeGamePlayDto.value.votes.findIndex(vote => vote.sourceId === sourceId);\n if (voteIndex !== -1) {\n makeGamePlayDto.value.votes = makeGamePlayDto.value.votes.toSpliced(voteIndex, 1);\n }\n if (makeGamePlayDto.value.votes.length === 0) {\n makeGamePlayDto.value.votes = undefined;\n }\n }\n\n function setDoesJudgeRequestAnotherVote(doesJudgeRequestAnotherVote: boolean | undefined): void {\n makeGamePlayDto.value.doesJudgeRequestAnotherVote = doesJudgeRequestAnotherVote;\n }\n\n function setChosenCardId(chosenCardId: string | undefined): void {\n makeGamePlayDto.value.chosenCardId = chosenCardId;\n }\n\n function setChosenSide(chosenSide: RoleSide | undefined): void {\n makeGamePlayDto.value.chosenSide = chosenSide;\n }\n return {\n makeGamePlayDto,\n setMakeGamePlayDto,\n resetMakeGamePlayDto,\n addMakeGamePlayTargetDto,\n removeMakeGamePlayTargetDto,\n removeFirstMakeGamePlayTargetDto,\n removeFirstMakeGamePlayTargetDtoWithPotion,\n addMakeGamePlayVoteDto,\n removeMakeGamePlayVoteDto,\n setDoesJudgeRequestAnotherVote,\n setChosenCardId,\n setChosenSide,\n };\n});\n\nexport { useMakeGamePlayDtoStore };" + }, + "app/stores/game/useGameStore.ts": { + "language": "typescript", + "mutants": [ + { + "id": "4299", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expected _Game{ …(14) } to strictly equal _Game{ _id: undefined, …(13) }", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1355" + ], + "coveredBy": [ + "1355" + ], + "location": { + "end": { + "column": 4, + "line": 28 + }, + "start": { + "column": 30, + "line": 26 } } }, { - "id": "4244", + "id": "4300", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1356" + ], + "coveredBy": [ + "1356", + "1357", + "1358" + ], + "location": { + "end": { + "column": 4, + "line": 41 + }, + "start": { + "column": 65, + "line": 30 + } + } + }, + { + "id": "4301", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(29,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1356", + "1357", + "1358" + ], + "location": { + "end": { + "column": 41, + "line": 31 + }, + "start": { + "column": 32, + "line": 31 + } + } + }, + { + "id": "4302", "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", + "replacement": "fetchedGame", + "statusReason": "app/stores/game/useGameStore.ts(37,5): error TS2322: Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "352", - "353", - "354" + "1356", + "1357", + "1358" ], "location": { "end": { - "column": 39, - "line": 42 + "column": 21, + "line": 33 }, "start": { "column": 9, - "line": 42 + "line": 33 } } }, { - "id": "4245", + "id": "4303", "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "Cannot read properties of undefined (reading 'playerId')", - "status": "Killed", - "testsCompleted": 1, + "replacement": "true", + "statusReason": "app/stores/game/useGameStore.ts(37,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "353" - ], + "killedBy": [], "coveredBy": [ - "353", - "354" + "1356", + "1357", + "1358" ], "location": { "end": { - "column": 85, - "line": 42 + "column": 21, + "line": 33 }, "start": { - "column": 43, - "line": 42 + "column": 9, + "line": 33 } } }, { - "id": "4246", - "mutatorName": "EqualityOperator", - "replacement": "makeGamePlayDto.value.targets.length !== 0", - "statusReason": "Cannot read properties of undefined (reading 'playerId')", - "status": "Killed", - "testsCompleted": 1, + "id": "4304", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "app/stores/game/useGameStore.ts(37,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "353" - ], + "killedBy": [], "coveredBy": [ - "353", - "354" + "1356", + "1357", + "1358" ], "location": { "end": { - "column": 85, - "line": 42 + "column": 21, + "line": 33 }, "start": { - "column": 43, - "line": 42 + "column": 9, + "line": 33 } } }, { - "id": "4247", + "id": "4305", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(43,25): error TS18048: 'makeGamePlayDto.value.targets' is possibly 'undefined'.\n", + "statusReason": "app/stores/game/useGameStore.ts(33,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "352", - "353" + "1356" ], "location": { "end": { "column": 6, - "line": 44 + "line": 37 }, "start": { - "column": 87, - "line": 42 + "column": 23, + "line": 33 } } }, { - "id": "4248", + "id": "4306", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(32,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1356" + ], + "location": { + "end": { + "column": 41, + "line": 34 + }, + "start": { + "column": 34, + "line": 34 + } + } + }, + { + "id": "4307", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(38,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1357", + "1358" + ], + "location": { + "end": { + "column": 41, + "line": 40 + }, + "start": { + "column": 32, + "line": 40 + } + } + }, + { + "id": "4308", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", - "testsCompleted": 4, + "testsCompleted": 1, "static": false, "killedBy": [ - "358" + "1359" ], "coveredBy": [ - "355", - "356", - "357", - "358" + "1359", + "1360" ], "location": { "end": { "column": 4, - "line": 54 + "line": 53 }, "start": { - "column": 87, - "line": 49 + "column": 46, + "line": 43 } } }, { - "id": "4249", - "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", + "id": "4309", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(42,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "355", - "356", - "357", - "358" + "1359", + "1360" ], "location": { "end": { - "column": 71, - "line": 50 + "column": 42, + "line": 44 }, "start": { - "column": 36, - "line": 50 + "column": 33, + "line": 44 } } }, { - "id": "4250", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", - "status": "Killed", - "testsCompleted": 3, + "id": "4310", + "mutatorName": "BooleanLiteral", + "replacement": "canceledGame", + "statusReason": "app/stores/game/useGameStore.ts(49,5): error TS2322: Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "358" - ], + "killedBy": [], "coveredBy": [ - "356", - "357", - "358" + "1359", + "1360" ], "location": { "end": { - "column": 116, - "line": 50 + "column": 22, + "line": 46 }, "start": { - "column": 72, - "line": 50 + "column": 9, + "line": 46 } } }, { - "id": "4251", + "id": "4311", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "expected [ Array(2) ] to strictly equal [ Array(3) ]", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/game/useGameStore.ts(49,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "357" - ], + "killedBy": [], "coveredBy": [ - "357", - "358" + "1359", + "1360" ], "location": { "end": { - "column": 116, - "line": 50 + "column": 22, + "line": 46 }, "start": { - "column": 82, - "line": 50 + "column": 9, + "line": 46 } } }, { - "id": "4252", + "id": "4312", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", - "status": "Killed", - "testsCompleted": 2, + "statusReason": "app/stores/game/useGameStore.ts(49,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "358" + "killedBy": [], + "coveredBy": [ + "1359", + "1360" ], + "location": { + "end": { + "column": 22, + "line": 46 + }, + "start": { + "column": 9, + "line": 46 + } + } + }, + { + "id": "4313", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/useGameStore.ts(45,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], "coveredBy": [ - "357", - "358" + "1359" ], "location": { "end": { - "column": 116, + "column": 6, "line": 50 }, "start": { - "column": 82, - "line": 50 + "column": 24, + "line": 46 } } }, { - "id": "4253", - "mutatorName": "EqualityOperator", - "replacement": "target.drankPotion !== drankPotion", - "statusReason": "expected [ Array(2) ] to strictly equal [ Array(3) ]", + "id": "4314", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(45,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1359" + ], + "location": { + "end": { + "column": 41, + "line": 47 + }, + "start": { + "column": 34, + "line": 47 + } + } + }, + { + "id": "4315", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(50,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1360" + ], + "location": { + "end": { + "column": 42, + "line": 52 + }, + "start": { + "column": 33, + "line": 52 + } + } + }, + { + "id": "4316", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "357" + "1361" ], "coveredBy": [ - "357", - "358" + "1361", + "1362", + "1363", + "1364" ], "location": { "end": { - "column": 116, - "line": 50 + "column": 4, + "line": 66 }, "start": { - "column": 82, - "line": 50 + "column": 80, + "line": 55 } } }, { - "id": "4254", + "id": "4317", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(54,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1361", + "1362", + "1363", + "1364" + ], + "location": { + "end": { + "column": 43, + "line": 56 + }, + "start": { + "column": 34, + "line": 56 + } + } + }, + { + "id": "4318", + "mutatorName": "BooleanLiteral", + "replacement": "playedGame", + "statusReason": "app/stores/game/useGameStore.ts(62,5): error TS2322: Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1361", + "1362", + "1363", + "1364" + ], + "location": { + "end": { + "column": 20, + "line": 58 + }, + "start": { + "column": 9, + "line": 58 + } + } + }, + { + "id": "4319", "mutatorName": "ConditionalExpression", "replacement": "true", - "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(52,35): error TS18048: 'firstDrankPotionTarget' is possibly 'undefined'.\n", + "statusReason": "app/stores/game/useGameStore.ts(62,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "355", - "356", - "357", - "358" + "1361", + "1362", + "1363", + "1364" ], "location": { "end": { - "column": 31, - "line": 51 + "column": 20, + "line": 58 }, "start": { "column": 9, - "line": 51 + "line": 58 } } }, { - "id": "4255", + "id": "4320", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(52,35): error TS18048: 'firstDrankPotionTarget' is possibly 'undefined'.\n", + "statusReason": "app/stores/game/useGameStore.ts(62,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "355", - "356", - "357", - "358" + "1361", + "1362", + "1363", + "1364" ], "location": { "end": { - "column": 31, - "line": 51 + "column": 20, + "line": 58 }, "start": { "column": 9, - "line": 51 + "line": 58 } } }, { - "id": "4256", + "id": "4321", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected [ Array(3) ] to strictly equal [ Array(2) ]", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/game/useGameStore.ts(58,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", + "status": "CompileError", "static": false, - "killedBy": [ - "358" - ], + "killedBy": [], "coveredBy": [ - "358" + "1361", + "1364" ], "location": { "end": { "column": 6, - "line": 53 + "line": 62 }, "start": { - "column": 33, - "line": 51 + "column": 22, + "line": 58 } } }, { - "id": "4257", + "id": "4322", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(57,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1361", + "1364" + ], + "location": { + "end": { + "column": 41, + "line": 59 + }, + "start": { + "column": 34, + "line": 59 + } + } + }, + { + "id": "4323", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(63,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1362", + "1363" + ], + "location": { + "end": { + "column": 43, + "line": 65 + }, + "start": { + "column": 34, + "line": 65 + } + } + }, + { + "id": "4324", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", "testsCompleted": 1, "static": false, "killedBy": [ - "359" + "1364" ], "coveredBy": [ - "359", - "360" + "1364" + ], + "location": { + "end": { + "column": 4, + "line": 70 + }, + "start": { + "column": 48, + "line": 68 + } + } + }, + { + "id": "4296", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(20,58): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": true, + "coveredBy": [ + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1354", + "1355", + "1356", + "1357", + "1358", + "1359", + "1360", + "1361", + "1362", + "1363", + "1364", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1673", + "1674", + "1675", + "1676", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" + ], + "location": { + "end": { + "column": 64, + "line": 20 + }, + "start": { + "column": 58, + "line": 20 + } + } + }, + { + "id": "4294", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(12,72): error TS2339: Property 'game' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(15,105): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(16,66): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(26,75): error TS2339: Property 'game' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(30,83): error TS2339: Property 'game' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(35,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(101,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(109,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(137,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(166,13): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(194,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(198,24): error TS2339: Property 'cancelGame' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOver.nuxt.spec.ts(93,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOver.nuxt.spec.ts(102,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(97,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(200,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(321,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/GameAccursedWolfFatherMayHaveInfectedEvent/GameAccursedWolfFatherMayHaveInfectedEvent.nuxt.spec.ts(51,15): error TS2339: Property 'game' does not exist on type 'Store'.\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'.\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'.\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'.\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'.\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'.\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/GameFoxMayHaveSniffedEvent/GameFoxMayHaveSniffedEvent.nuxt.spec.ts(48,15): error TS2339: Property 'game' does not exist on type 'Store'.\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'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameFoxMayHaveSniffedEvent/GameFoxMayHaveSniffedEvent.nuxt.spec.ts(136,17): error TS2339: Property 'game' does not exist on type 'Store'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.nuxt.spec.ts(50,15): error TS2339: Property 'game' does not exist on type 'Store'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTwoSistersTurnStartsEvent/GameTwoSistersTurnStartsEvent.nuxt.spec.ts(67,17): error TS2339: Property 'game' does not exist on type 'Store'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\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'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(49,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(178,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/GamePlaygroundFooterCountdown/GamePlaygroundFooterCountdown.nuxt.spec.ts(38,15): error TS2339: Property 'game' does not exist on type 'Store'.\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'.\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'.\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'.\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'.\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/GamePlaying.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(82,17): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(30,15): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(51,22): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(59,22): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(81,17): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(89,17): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(90,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(98,17): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(99,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(107,17): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store'.\ntests/unit/specs/pages/game/game-page.nuxt.spec.ts(108,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(53,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(66,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(79,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(94,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(107,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(132,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(139,83): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(146,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(157,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(170,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(176,83): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(186,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(199,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(216,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(229,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(242,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(253,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(262,83): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(41,22): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(42,22): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(48,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(49,17): error TS2339: Property 'resetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(51,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(58,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(67,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(76,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(78,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(85,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(86,23): error TS2339: Property 'cancelGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(95,23): error TS2339: Property 'cancelGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(97,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(104,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(106,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(116,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(126,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(128,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(135,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(136,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store'.\n", + "status": "CompileError", + "static": true, + "coveredBy": [ + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1354", + "1355", + "1356", + "1357", + "1358", + "1359", + "1360", + "1361", + "1362", + "1363", + "1364", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1673", + "1674", + "1675", + "1676", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" + ], + "location": { + "end": { + "column": 2, + "line": 83 + }, + "start": { + "column": 55, + "line": 11 + } + } + }, + { + "id": "4298", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(22,60): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": true, + "coveredBy": [ + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1354", + "1355", + "1356", + "1357", + "1358", + "1359", + "1360", + "1361", + "1362", + "1363", + "1364", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1673", + "1674", + "1675", + "1676", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" + ], + "location": { + "end": { + "column": 66, + "line": 22 + }, + "start": { + "column": 60, + "line": 22 + } + } + }, + { + "id": "4297", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/game/useGameStore.ts(21,59): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": true, + "coveredBy": [ + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1354", + "1355", + "1356", + "1357", + "1358", + "1359", + "1360", + "1361", + "1362", + "1363", + "1364", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1673", + "1674", + "1675", + "1676", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" + ], + "location": { + "end": { + "column": 65, + "line": 21 + }, + "start": { + "column": 59, + "line": 21 + } + } + }, + { + "id": "4295", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "app/stores/game/useGameStore.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 '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", + "status": "CompileError", + "static": true, + "coveredBy": [ + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1354", + "1355", + "1356", + "1357", + "1358", + "1359", + "1360", + "1361", + "1362", + "1363", + "1364", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1673", + "1674", + "1675", + "1676", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" + ], + "location": { + "end": { + "column": 69, + "line": 19 + }, + "start": { + "column": 45, + "line": 19 + } + } + }, + { + "id": "4325", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(12,72): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(15,105): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(16,66): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(26,75): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(30,83): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(35,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(101,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(109,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(137,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(166,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(194,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(198,24): error TS2339: Property 'cancelGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameOver/GameOver.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/GameOver/GameOver.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/GameOver/GameOverVictoryText/GameOverVictoryText.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/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(200,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(321,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(51,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(136,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(49,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(178,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(82,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(167,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(30,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(51,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(59,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(81,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(89,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(90,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(98,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(99,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(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(108,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(53,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(66,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(79,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(94,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(107,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(132,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(139,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(146,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(157,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(170,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(176,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(186,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(199,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(216,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(229,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(242,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(253,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(262,83): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(41,22): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(42,22): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(48,17): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(49,17): error TS2339: Property 'resetGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(51,24): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(58,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(67,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(76,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(78,24): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(85,17): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(86,23): error TS2339: Property 'cancelGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(95,23): error TS2339: Property 'cancelGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(97,24): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(104,17): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(106,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(116,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(126,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(128,24): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(135,17): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(136,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", + "status": "CompileError", + "static": true, + "coveredBy": [ + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1354", + "1355", + "1356", + "1357", + "1358", + "1359", + "1360", + "1361", + "1362", + "1363", + "1364", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1531", + "1532", + "1533", + "1534", + "1535", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1673", + "1674", + "1675", + "1676", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1915" ], "location": { "end": { "column": 4, - "line": 61 - }, - "start": { - "column": 68, - "line": 56 - } - } - }, - { - "id": "4258", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "359", - "360" - ], - "location": { - "end": { - "column": 37, - "line": 57 - }, - "start": { - "column": 9, - "line": 57 - } - } - }, - { - "id": "4259", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) } ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "360" - ], - "coveredBy": [ - "359", - "360" - ], - "location": { - "end": { - "column": 37, - "line": 57 - }, - "start": { - "column": 9, - "line": 57 - } - } - }, - { - "id": "4260", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "359", - "360" - ], - "location": { - "end": { - "column": 37, - "line": 57 + "line": 82 }, "start": { - "column": 9, - "line": 57 + "column": 10, + "line": 71 } } - }, + } + ], + "source": "import type { AsyncDataRequestStatus } from \"nuxt/app\";\nimport { defineStore } from \"pinia\";\n\nimport type { MakeGamePlayDto } from \"~/composables/api/game/dto/make-game-play/make-game-play.dto\";\nimport type { GameOptions } from \"~/composables/api/game/types/game-options/game-options.class\";\nimport { Game } from \"~/composables/api/game/types/game.class\";\nimport { useFetchGames } from \"~/composables/api/game/useFetchGames\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameEventsStore } from \"~/stores/game/game-event/useGameEventsStore\";\n\nconst useGameStore = defineStore(StoreIds.GAME, () => {\n const {\n getGame: fetchGameFromApi,\n cancelGame: cancelGameFromApi,\n makeGamePlay: makeGamePlayFromApi,\n } = useFetchGames();\n\n const game = ref(new Game());\n const gameOptions = computed(() => game.value.options);\n const fetchingGameStatus = ref(\"idle\");\n const cancelingGameStatus = ref(\"idle\");\n const makingGamePlayStatus = ref(\"idle\");\n\n const { resetGameEventIndex } = useGameEventsStore();\n\n function resetGame(): void {\n game.value = new Game();\n }\n\n async function fetchAndSetGame(gameId: string): Promise {\n fetchingGameStatus.value = \"pending\";\n const fetchedGame = await fetchGameFromApi(gameId);\n if (!fetchedGame) {\n fetchingGameStatus.value = \"error\";\n\n return;\n }\n resetGameEventIndex();\n game.value = fetchedGame;\n fetchingGameStatus.value = \"success\";\n }\n\n async function cancelGame(): Promise {\n cancelingGameStatus.value = \"pending\";\n const canceledGame = await cancelGameFromApi(game.value._id);\n if (!canceledGame) {\n fetchingGameStatus.value = \"error\";\n\n return;\n }\n game.value = canceledGame;\n cancelingGameStatus.value = \"success\";\n }\n\n async function makeGamePlay(makeGamePlayDto: MakeGamePlayDto): Promise {\n makingGamePlayStatus.value = \"pending\";\n const playedGame = await makeGamePlayFromApi(game.value._id, makeGamePlayDto);\n if (!playedGame) {\n fetchingGameStatus.value = \"error\";\n\n return;\n }\n resetGameEventIndex();\n game.value = playedGame;\n makingGamePlayStatus.value = \"success\";\n }\n\n async function skipGamePlay(): Promise {\n return makeGamePlay({});\n }\n return {\n game,\n gameOptions,\n fetchingGameStatus,\n cancelingGameStatus,\n makingGamePlayStatus,\n resetGame,\n fetchAndSetGame,\n cancelGame,\n makeGamePlay,\n skipGamePlay,\n };\n});\n\nexport { useGameStore };" + }, + "app/stores/keyboard/useKeyboardStore.ts": { + "language": "typescript", + "mutants": [ { - "id": "4261", + "id": "4326", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.ts(58,5): error TS18048: 'makeGamePlayDto.value.votes' is possibly 'undefined'.\n", + "statusReason": "tests/unit/specs/stores/keyboard/useKeyboardStore.spec.ts(14,26): error TS2339: Property 'keyboard' does not exist on type 'Store'.\n", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "359" + "272", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "2047" ], "location": { "end": { - "column": 6, - "line": 59 + "column": 2, + "line": 21 }, "start": { - "column": 39, - "line": 57 + "column": 63, + "line": 5 } } }, { - "id": "4262", - "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", + "id": "4327", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "359" + "272", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "2047" ], "location": { "end": { - "column": 39, - "line": 58 + "column": 5, + "line": 18 }, "start": { - "column": 37, - "line": 58 + "column": 39, + "line": 13 } } }, { - "id": "4263", - "mutatorName": "BlockStatement", + "id": "4328", + "mutatorName": "ObjectLiteral", "replacement": "{}", - "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", - "status": "Killed", - "testsCompleted": 3, - "static": false, - "killedBy": [ - "363" - ], - "coveredBy": [ - "361", - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 4, - "line": 74 - }, - "start": { - "column": 62, - "line": 63 - } - } - }, - { - "id": "4264", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "361", - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 37, - "line": 64 - }, - "start": { - "column": 9, - "line": 64 - } - } - }, - { - "id": "4265", - "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "361", - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 37, - "line": 64 - }, - "start": { - "column": 9, - "line": 64 - } - } - }, - { - "id": "4266", - "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", + "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "361", - "362", - "363", - "364" + "272", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "2047" ], "location": { "end": { - "column": 37, - "line": 64 + "column": 4, + "line": 18 }, "start": { - "column": 9, - "line": 64 + "column": 46, + "line": 13 } } }, { - "id": "4267", - "mutatorName": "BlockStatement", + "id": "4329", + "mutatorName": "ObjectLiteral", "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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "361" - ], - "location": { - "end": { - "column": 6, - "line": 66 - }, - "start": { - "column": 39, - "line": 64 - } - } - }, - { - "id": "4268", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "363" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 95, - "line": 67 - }, - "start": { - "column": 61, - "line": 67 - } - } - }, - { - "id": "4269", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "362" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 95, - "line": 67 - }, - "start": { - "column": 69, - "line": 67 - } - } - }, - { - "id": "4270", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", - "status": "Killed", - "testsCompleted": 2, - "static": false, - "killedBy": [ - "363" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 95, - "line": 67 - }, - "start": { - "column": 69, - "line": 67 - } - } - }, - { - "id": "4271", - "mutatorName": "EqualityOperator", - "replacement": "vote.sourceId !== sourceId", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "362" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 95, - "line": 67 - }, - "start": { - "column": 69, - "line": 67 - } - } - }, - { - "id": "4272", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "362" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 25, - "line": 68 - }, - "start": { - "column": 9, - "line": 68 - } - } - }, - { - "id": "4273", - "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", + "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 25, - "line": 68 - }, - "start": { - "column": 9, - "line": 68 - } - } - }, - { - "id": "4274", - "mutatorName": "EqualityOperator", - "replacement": "voteIndex === -1", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "362" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 25, - "line": 68 - }, - "start": { - "column": 9, - "line": 68 - } - } - }, - { - "id": "4275", - "mutatorName": "UnaryOperator", - "replacement": "+1", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "362" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 25, - "line": 68 - }, - "start": { - "column": 23, - "line": 68 - } - } - }, - { - "id": "4276", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected [ _MakeGamePlayVoteDto{ …(2) }, …(2) ] to strictly equal [ _MakeGamePlayVoteDto{ …(2) }, …(1) ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "363" - ], - "coveredBy": [ - "363", - "364" - ], - "location": { - "end": { - "column": 6, - "line": 70 - }, - "start": { - "column": 27, - "line": 68 - } - } - }, - { - "id": "4277", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "362" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 49, - "line": 71 - }, - "start": { - "column": 9, - "line": 71 - } - } - }, - { - "id": "4278", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "expected [] to be undefined", - "status": "Killed", - "testsCompleted": 3, - "static": false, - "killedBy": [ - "364" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 49, - "line": 71 - }, - "start": { - "column": 9, - "line": 71 - } - } - }, - { - "id": "4279", - "mutatorName": "EqualityOperator", - "replacement": "makeGamePlayDto.value.votes.length !== 0", - "statusReason": "expected undefined to strictly equal [ _MakeGamePlayVoteDto{ …(2) } ]", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "362" - ], - "coveredBy": [ - "362", - "363", - "364" - ], - "location": { - "end": { - "column": 49, - "line": 71 - }, - "start": { - "column": 9, - "line": 71 - } - } - }, - { - "id": "4280", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected [] to be undefined", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "364" - ], - "coveredBy": [ - "364" - ], - "location": { - "end": { - "column": 6, - "line": 73 - }, - "start": { - "column": 51, - "line": 71 - } - } - }, - { - "id": "4281", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected undefined to be truthy", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "365" - ], - "coveredBy": [ - "365" + "272", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "2047" ], "location": { "end": { - "column": 4, - "line": 78 + "column": 38, + "line": 14 }, "start": { - "column": 99, - "line": 76 + "column": 12, + "line": 14 } } }, { - "id": "4282", - "mutatorName": "BlockStatement", + "id": "4330", + "mutatorName": "ObjectLiteral", "replacement": "{}", - "statusReason": "expected undefined to be 'cardId' // Object.is equality", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", + "status": "CompileError", "static": false, - "killedBy": [ - "366" - ], + "killedBy": [], "coveredBy": [ - "366" + "272", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "2047" ], "location": { "end": { - "column": 4, - "line": 82 + "column": 38, + "line": 15 }, "start": { - "column": 68, - "line": 80 + "column": 12, + "line": 15 } } }, { - "id": "4283", - "mutatorName": "BlockStatement", + "id": "4331", + "mutatorName": "ObjectLiteral", "replacement": "{}", - "statusReason": "expected undefined to be 'werewolves' // Object.is equality", - "status": "Killed", - "testsCompleted": 1, + "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", + "status": "CompileError", "static": false, - "killedBy": [ - "367" - ], + "killedBy": [], "coveredBy": [ - "367" + "272", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", + "549", + "550", + "551", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "2047" ], "location": { "end": { - "column": 4, - "line": 86 + "column": 48, + "line": 16 }, "start": { - "column": 66, - "line": 84 + "column": 17, + "line": 16 } } }, { - "id": "4284", + "id": "4332", "mutatorName": "ObjectLiteral", "replacement": "{}", - "statusReason": "tests/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", + "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", "status": "CompileError", "static": false, "killedBy": [], "coveredBy": [ - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "343", - "344", - "345", - "346", - "347", - "348", - "349", - "350", - "351", - "352", - "353", - "354", - "355", - "356", - "357", - "358", - "359", - "360", - "361", - "362", - "363", - "364", - "365", - "366", - "367", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "534", - "535", - "536", + "272", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", "537", "538", "539", @@ -213948,218 +210906,94 @@ "546", "547", "548", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "1267", - "1268", - "1269", - "1270", - "1271", - "1342", - "1343", - "1344", - "1345", - "1346", - "1347", - "1348", - "1349", - "1350", - "1370", - "1371", - "1372", - "1373", - "1374", - "1375", - "1376" + "549", + "550", + "551", + "705", + "726", + "739", + "760", + "761", + "804", + "889", + "899", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", + "916", + "917", + "918", + "956", + "1034", + "1052", + "1069", + "1075", + "1218", + "1234", + "1247", + "1276", + "1323", + "1452", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", + "1654", + "1659", + "1692", + "1703", + "1717", + "1726", + "1738", + "1776", + "1780", + "1815", + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "2047" ], "location": { "end": { - "column": 4, - "line": 100 + "column": 46, + "line": 17 }, "start": { - "column": 10, - "line": 87 + "column": 16, + "line": 17 } } - } - ], - "source": "import { defineStore } from \"pinia\";\n\nimport { MakeGamePlayTargetDto } from \"~/composables/api/game/dto/make-game-play/make-game-play-target/make-game-play-target.dto\";\nimport { MakeGamePlayVoteDto } from \"~/composables/api/game/dto/make-game-play/make-game-play-vote/make-game-play-vote.dto\";\nimport { MakeGamePlayDto } from \"~/composables/api/game/dto/make-game-play/make-game-play.dto\";\nimport type { WitchPotion } from \"~/composables/api/game/types/game-play/game-play.types\";\nimport type { RoleSide } from \"~/composables/api/role/types/role.types\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\n\nconst useMakeGamePlayDtoStore = defineStore(StoreIds.MAKE_GAME_PLAY_DTO, () => {\n const makeGamePlayDto = ref(MakeGamePlayDto.create({}));\n\n function setMakeGamePlayDto(makeGamePlayDtoValue: MakeGamePlayDto): void {\n makeGamePlayDto.value = MakeGamePlayDto.create(makeGamePlayDtoValue);\n }\n\n function resetMakeGamePlayDto(): void {\n makeGamePlayDto.value = MakeGamePlayDto.create({});\n }\n\n function addMakeGamePlayTargetDto(target: MakeGamePlayTargetDto): void {\n if (!makeGamePlayDto.value.targets) {\n makeGamePlayDto.value.targets = [];\n }\n makeGamePlayDto.value.targets.push(MakeGamePlayTargetDto.create(target));\n }\n\n function removeMakeGamePlayTargetDto(targetId: string): void {\n if (!makeGamePlayDto.value.targets) {\n return;\n }\n const targetIndex = makeGamePlayDto.value.targets.findIndex(target => target.playerId === targetId);\n if (targetIndex !== -1) {\n makeGamePlayDto.value.targets = makeGamePlayDto.value.targets.toSpliced(targetIndex, 1);\n }\n if (makeGamePlayDto.value.targets.length === 0) {\n makeGamePlayDto.value.targets = undefined;\n }\n }\n\n function removeFirstMakeGamePlayTargetDto(): void {\n if (!makeGamePlayDto.value.targets || makeGamePlayDto.value.targets.length === 0) {\n return;\n }\n const firstTarget = makeGamePlayDto.value.targets[0];\n removeMakeGamePlayTargetDto(firstTarget.playerId);\n }\n\n function removeFirstMakeGamePlayTargetDtoWithPotion(drankPotion: WitchPotion): void {\n const firstDrankPotionTarget = makeGamePlayDto.value.targets?.find(target => target.drankPotion === drankPotion);\n if (firstDrankPotionTarget) {\n removeMakeGamePlayTargetDto(firstDrankPotionTarget.playerId);\n }\n }\n\n function addMakeGamePlayVoteDto(vote: MakeGamePlayVoteDto): void {\n if (!makeGamePlayDto.value.votes) {\n makeGamePlayDto.value.votes = [];\n }\n makeGamePlayDto.value.votes.push(MakeGamePlayVoteDto.create(vote));\n }\n\n function removeMakeGamePlayVoteDto(sourceId: string): void {\n if (!makeGamePlayDto.value.votes) {\n return;\n }\n const voteIndex = makeGamePlayDto.value.votes.findIndex(vote => vote.sourceId === sourceId);\n if (voteIndex !== -1) {\n makeGamePlayDto.value.votes = makeGamePlayDto.value.votes.toSpliced(voteIndex, 1);\n }\n if (makeGamePlayDto.value.votes.length === 0) {\n makeGamePlayDto.value.votes = undefined;\n }\n }\n\n function setDoesJudgeRequestAnotherVote(doesJudgeRequestAnotherVote: boolean | undefined): void {\n makeGamePlayDto.value.doesJudgeRequestAnotherVote = doesJudgeRequestAnotherVote;\n }\n\n function setChosenCardId(chosenCardId: string | undefined): void {\n makeGamePlayDto.value.chosenCardId = chosenCardId;\n }\n\n function setChosenSide(chosenSide: RoleSide | undefined): void {\n makeGamePlayDto.value.chosenSide = chosenSide;\n }\n return {\n makeGamePlayDto,\n setMakeGamePlayDto,\n resetMakeGamePlayDto,\n addMakeGamePlayTargetDto,\n removeMakeGamePlayTargetDto,\n removeFirstMakeGamePlayTargetDto,\n removeFirstMakeGamePlayTargetDtoWithPotion,\n addMakeGamePlayVoteDto,\n removeMakeGamePlayVoteDto,\n setDoesJudgeRequestAnotherVote,\n setChosenCardId,\n setChosenSide,\n };\n});\n\nexport { useMakeGamePlayDtoStore };" - }, - "app/stores/game/useGameStore.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "4285", - "mutatorName": "BlockStatement", + "id": "4333", + "mutatorName": "ObjectLiteral", "replacement": "{}", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(12,72): error TS2339: Property 'game' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(15,105): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(16,66): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(26,75): error TS2339: Property 'game' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(30,83): error TS2339: Property 'game' does not exist on type 'Store'.\napp/stores/game/game-event/useGameEventsStore.ts(35,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(101,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(109,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(137,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(166,13): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(194,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts(198,24): error TS2339: Property 'cancelGame' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(97,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(200,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(321,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(49,15): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts(178,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/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/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/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/GameEventTextsManager.nuxt.spec.ts(82,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(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/stores/game/useGameStore.spec.ts(41,22): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(42,22): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(48,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(49,17): error TS2339: Property 'resetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(51,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(58,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(67,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(76,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(78,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(85,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(86,23): error TS2339: Property 'cancelGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(95,23): error TS2339: Property 'cancelGame' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(97,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(104,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(106,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(116,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(126,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(128,24): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(135,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(136,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(53,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(66,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(79,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(94,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(107,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(132,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(139,83): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(146,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(157,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(170,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(176,83): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(186,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(199,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(216,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(229,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(242,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(253,17): error TS2339: Property 'game' does not exist on type 'Store'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(262,83): error TS2339: Property 'game' does not exist on type 'Store'.\n", + "statusReason": "tests/unit/specs/stores/keyboard/useKeyboardStore.spec.ts(14,26): error TS2339: Property 'keyboard' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", "status": "CompileError", - "static": true, + "static": false, "killedBy": [], "coveredBy": [ - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", - "134", - "135", - "136", - "137", - "138", - "139", - "140", - "141", - "142", - "143", - "144", - "145", - "146", - "147", - "148", - "149", - "150", - "151", - "152", - "153", - "154", - "155", - "156", - "157", - "158", - "159", - "160", - "161", - "162", - "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", - "387", - "388", - "389", "390", "391", "392", @@ -214179,78 +211013,9 @@ "406", "407", "408", - "438", - "439", - "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", - "482", - "483", - "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "534", - "535", - "536", + "409", + "410", + "411", "537", "538", "539", @@ -214263,117 +211028,17 @@ "546", "547", "548", - "667", - "668", - "669", - "670", - "671", - "672", - "673", - "701", - "702", - "703", - "704", + "549", + "550", + "551", "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", "739", - "740", - "741", - "742", - "743", - "756", - "757", - "758", - "759", "760", "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", - "800", - "801", - "802", - "803", "804", - "805", - "806", - "807", - "808", - "826", - "827", - "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", "907", "908", "909", @@ -214383,330 +211048,736 @@ "913", "914", "915", - "953", - "972", - "973", - "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", - "1030", - "1031", - "1032", - "1033", + "916", + "917", + "918", + "956", "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", "1069", - "1070", - "1071", - "1072", - "1073", - "1074", "1075", - "1076", - "1169", - "1170", - "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1214", - "1215", - "1216", - "1217", "1218", - "1219", - "1230", - "1231", - "1232", - "1233", "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1267", - "1268", - "1269", - "1270", - "1271", - "1272", - "1273", - "1274", - "1275", + "1247", "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", "1323", - "1324", - "1351", - "1352", - "1353", - "1354", - "1355", - "1356", - "1357", - "1358", - "1359", - "1360", - "1361", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1448", - "1449", - "1450", - "1451", "1452", - "1453", - "1463", - "1464", - "1465", "1466", "1467", "1468", "1469", "1470", - "1479", - "1480", - "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", - "1501", - "1502", - "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1569", - "1570", - "1571", - "1572", - "1573", - "1574", - "1616", - "1617", - "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", + "1471", + "1472", + "1473", + "1495", + "1510", + "1532", + "1547", "1654", - "1655", - "1656", - "1657", - "1658", "1659", - "1670", - "1671", - "1672", - "1673", - "1688", - "1689", - "1690", - "1691", "1692", - "1699", - "1700", - "1701", - "1702", "1703", - "1713", - "1714", - "1715", - "1716", "1717", - "1722", - "1723", - "1724", - "1725", "1726", - "1734", - "1735", - "1736", - "1737", "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", + "1776", + "1780", "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" + "1847", + "1863", + "1867", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "2047" ], "location": { "end": { - "column": 2, - "line": 83 + "column": 22, + "line": 20 }, "start": { - "column": 55, - "line": 11 + "column": 10, + "line": 20 + } + } + } + ], + "source": "import { defineStore } from \"pinia\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport type { Keyboard } from \"~/stores/keyboard/types/keyboard.types\";\n\nconst useKeyboardStore = defineStore(StoreIds.KEYBOARD, () => {\n const {\n shift,\n arrowright,\n arrowleft,\n enter,\n } = useMagicKeys();\n\n const keyboard = computed(() => ({\n shift: { isPressed: shift.value },\n enter: { isPressed: enter.value },\n arrowRight: { isPressed: arrowright.value },\n arrowLeft: { isPressed: arrowleft.value },\n }));\n\n return { keyboard };\n});\n\nexport { useKeyboardStore };" + }, + "app/stores/role/useRolesStore.ts": { + "language": "typescript", + "mutants": [ + { + "id": "4336", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "1329" + ], + "coveredBy": [ + "1329", + "1330" + ], + "location": { + "end": { + "column": 4, + "line": 21 + }, + "start": { + "column": 52, + "line": 17 } } }, { - "id": "4286", + "id": "4337", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/role/useRolesStore.ts(18,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1329", + "1330" + ], + "location": { + "end": { + "column": 41, + "line": 18 + }, + "start": { + "column": 32, + "line": 18 + } + } + }, + { + "id": "4338", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "app/stores/role/useRolesStore.ts(20,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1329", + "1330" + ], + "location": { + "end": { + "column": 41, + "line": 20 + }, + "start": { + "column": 32, + "line": 20 + } + } + }, + { + "id": "4339", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "1331", + "1332", + "1336", + "1337" + ], + "location": { + "end": { + "column": 4, + "line": 25 + }, + "start": { + "column": 73, + "line": 23 + } + } + }, + { + "id": "4340", + "mutatorName": "OptionalChaining", + "replacement": "roles.value.find", + "statusReason": "app/stores/role/useRolesStore.ts(24,12): error TS18047: 'roles.value' is possibly 'null'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "1331", + "1332", + "1336", + "1337" + ], + "location": { + "end": { + "column": 29, + "line": 24 + }, + "start": { + "column": 12, + "line": 24 + } + } + }, + { + "id": "4341", "mutatorName": "ArrowFunction", "replacement": "() => undefined", - "statusReason": "app/stores/game/useGameStore.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 '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", + "statusReason": "expected false to be true // Object.is equality", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "66" + ], + "coveredBy": [ + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "1331", + "1332", + "1336", + "1337" + ], + "location": { + "end": { + "column": 60, + "line": 24 + }, + "start": { + "column": 30, + "line": 24 + } + } + }, + { + "id": "4342", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "expected true to be false // Object.is equality", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "67" + ], + "coveredBy": [ + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "1331", + "1332", + "1336", + "1337" + ], + "location": { + "end": { + "column": 60, + "line": 24 + }, + "start": { + "column": 38, + "line": 24 + } + } + }, + { + "id": "4343", + "mutatorName": "ConditionalExpression", + "replacement": "false", + "statusReason": "expected false to be true // Object.is equality", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "66" + ], + "coveredBy": [ + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "1331", + "1332", + "1336", + "1337" + ], + "location": { + "end": { + "column": 60, + "line": 24 + }, + "start": { + "column": 38, + "line": 24 + } + } + }, + { + "id": "4344", + "mutatorName": "EqualityOperator", + "replacement": "role.name !== roleName", + "statusReason": "expected false to be true // Object.is equality", + "status": "Killed", + "testsCompleted": 1, + "static": false, + "killedBy": [ + "66" + ], + "coveredBy": [ + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "1331", + "1332", + "1336", + "1337" + ], + "location": { + "end": { + "column": 60, + "line": 24 + }, + "start": { + "column": 38, + "line": 24 + } + } + }, + { + "id": "4345", + "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", "status": "CompileError", - "static": true, + "static": false, "killedBy": [], "coveredBy": [ - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "1333", + "1334", + "1335" + ], + "location": { + "end": { + "column": 4, + "line": 29 + }, + "start": { + "column": 105, + "line": 27 + } + } + }, + { + "id": "4346", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "1333", + "1334", + "1335" + ], + "location": { + "end": { + "column": 114, + "line": 28 + }, + "start": { + "column": 12, + "line": 28 + } + } + }, + { + "id": "4347", + "mutatorName": "MethodExpression", + "replacement": "roles.value", + "statusReason": "expected [ { …(3) }, …(4) ] to strictly equal [ { …(3) }, …(2) ]", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "528" + ], + "coveredBy": [ + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "1333", + "1334", + "1335" + ], + "location": { + "end": { + "column": 108, + "line": 28 + }, + "start": { + "column": 12, + "line": 28 + } + } + }, + { + "id": "4348", + "mutatorName": "OptionalChaining", + "replacement": "roles.value.filter", + "statusReason": "app/stores/role/useRolesStore.ts(28,12): error TS18047: 'roles.value' is possibly 'null'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "1333", + "1334", + "1335" + ], + "location": { + "end": { + "column": 31, + "line": 28 + }, + "start": { + "column": 12, + "line": 28 + } + } + }, + { + "id": "4349", + "mutatorName": "ArrowFunction", + "replacement": "() => undefined", + "statusReason": "expected [] to strictly equal [ { …(3) }, …(2) ]", + "status": "Killed", + "testsCompleted": 3, + "static": false, + "killedBy": [ + "528" + ], + "coveredBy": [ + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "1333", + "1334" + ], + "location": { + "end": { + "column": 107, + "line": 28 + }, + "start": { + "column": 32, + "line": 28 + } + } + }, + { + "id": "4350", + "mutatorName": "OptionalChaining", + "replacement": "role.additionalCardsEligibleRecipients.includes", + "statusReason": "app/stores/role/useRolesStore.ts(28,40): error TS18048: 'role.additionalCardsEligibleRecipients' is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "1333", + "1334" + ], + "location": { + "end": { + "column": 88, + "line": 28 + }, + "start": { + "column": 40, + "line": 28 + } + } + }, + { + "id": "4351", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1335" + ], + "location": { + "end": { + "column": 114, + "line": 28 + }, + "start": { + "column": 112, + "line": 28 + } + } + }, + { + "id": "4352", + "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", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1336", + "1337" + ], + "location": { + "end": { + "column": 4, + "line": 33 + }, + "start": { + "column": 77, + "line": 31 + } + } + }, + { + "id": "4353", + "mutatorName": "OptionalChaining", + "replacement": "getRoleWithNameInRoles(roleName).side", + "statusReason": "app/stores/role/useRolesStore.ts(32,12): error TS2532: Object is possibly 'undefined'.\n", + "status": "CompileError", + "static": false, + "killedBy": [], + "coveredBy": [ + "1336", + "1337" + ], + "location": { + "end": { + "column": 50, + "line": 32 + }, + "start": { + "column": 12, + "line": 32 + } + } + }, + { + "id": "4334", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(30,11): error TS2339: Property 'roles' does not exist on type 'StoreToRefs>'.\napp/composables/api/game/useCreateGameDtoValidation.ts(46,57): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(48,42): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(55,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(64,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(22,11): error TS2339: Property 'getRoleWithNameInRoles' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/app.nuxt.spec.ts(48,23): error TS2339: Property 'fetchAndSetRoles' does not exist on type 'Store'.\ntests/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/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(102,16): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(123,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(138,18): 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/composables/api/game/useCreateGameDtoValidation.spec.ts(23,16): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(231,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(275,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(326,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(432,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(508,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(565,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", + "status": "CompileError", + "static": false, + "coveredBy": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", "134", "135", "136", @@ -214737,651 +211808,622 @@ "161", "162", "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", "387", "388", "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", "438", "439", "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", "482", "483", "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", + "534", + "535", + "536", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", "667", "668", "669", - "670", - "671", - "672", - "673", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", "701", "702", "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", "800", "801", "802", - "803", - "804", - "805", - "806", - "807", - "808", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", "826", "827", "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", + "919", + "920", + "921", + "922", + "923", + "924", + "925", + "926", + "927", + "928", + "929", + "930", + "931", + "932", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", "972", "973", "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", + "1002", + "1003", + "1004", + "1005", + "1006", + "1007", + "1008", + "1009", + "1010", + "1011", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", "1030", "1031", "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", "1048", "1049", "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", "1169", "1170", "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1267", - "1268", - "1269", - "1270", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", "1271", "1272", "1273", "1274", - "1275", - "1276", - "1277", - "1278", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", "1319", "1320", "1321", - "1322", - "1323", - "1324", - "1351", - "1352", - "1353", - "1354", - "1355", - "1356", - "1357", - "1358", - "1359", - "1360", - "1361", + "1328", + "1329", + "1330", + "1331", + "1332", + "1333", + "1334", + "1335", + "1336", + "1337", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", "1479", "1480", "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", + "1499", + "1500", "1501", "1502", "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", "1543", "1544", "1545", - "1546", - "1547", - "1548", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", "1569", "1570", "1571", - "1572", - "1573", - "1574", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", "1616", "1617", "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1670", - "1671", - "1672", - "1673", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" + "1663", + "1664", + "1665", + "1666", + "1677", + "1678", + "1914", + "1915", + "1916", + "1917", + "1918", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { - "column": 69, - "line": 19 + "column": 2, + "line": 42 }, "start": { - "column": 45, - "line": 19 + "column": 57, + "line": 11 } } }, { - "id": "4287", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(20,58): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", + "id": "4354", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(30,11): error TS2339: Property 'roles' does not exist on type 'StoreToRefs>, Pick<{}, never>, Pick<{}, never>>>'.\napp/composables/api/game/useCreateGameDtoValidation.ts(46,57): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(48,42): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(55,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(64,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(22,11): error TS2339: Property 'getRoleWithNameInRoles' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/app.nuxt.spec.ts(48,23): error TS2339: Property 'fetchAndSetRoles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\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/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(102,16): error TS2339: Property 'roles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(123,18): error TS2339: Property 'roles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(138,18): 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/game/create-game-dto/useCreateGameDtoStore.spec.ts(432,18): error TS2339: Property 'roles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(508,18): error TS2339: Property 'roles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(565,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", "status": "CompileError", - "static": true, - "killedBy": [], + "static": false, "coveredBy": [ - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", "134", "135", "136", @@ -215412,651 +212454,622 @@ "161", "162", "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", "387", "388", "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", "438", "439", "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", "482", "483", "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", "534", "535", "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", "667", "668", "669", - "670", - "671", - "672", - "673", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", "701", "702", "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", "800", "801", "802", - "803", - "804", - "805", - "806", - "807", - "808", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", "826", "827", "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", + "919", + "920", + "921", + "922", + "923", + "924", + "925", + "926", + "927", + "928", + "929", + "930", + "931", + "932", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", "972", "973", "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", + "1002", + "1003", + "1004", + "1005", + "1006", + "1007", + "1008", + "1009", + "1010", + "1011", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", "1030", "1031", "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", "1048", "1049", "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", "1169", "1170", "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1267", - "1268", - "1269", - "1270", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", "1271", "1272", "1273", "1274", - "1275", - "1276", - "1277", - "1278", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", "1319", "1320", "1321", - "1322", - "1323", - "1324", - "1351", - "1352", - "1353", - "1354", - "1355", - "1356", - "1357", - "1358", - "1359", - "1360", - "1361", + "1328", + "1329", + "1330", + "1331", + "1332", + "1333", + "1334", + "1335", + "1336", + "1337", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", "1479", "1480", "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", + "1499", + "1500", "1501", "1502", "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", "1543", "1544", "1545", - "1546", - "1547", - "1548", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", "1569", "1570", "1571", - "1572", - "1573", - "1574", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", "1616", "1617", "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1670", - "1671", - "1672", - "1673", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" + "1663", + "1664", + "1665", + "1666", + "1677", + "1678", + "1914", + "1915", + "1916", + "1917", + "1918", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { - "column": 64, - "line": 20 + "column": 4, + "line": 41 }, "start": { - "column": 58, - "line": 20 + "column": 10, + "line": 34 } } }, { - "id": "4288", + "id": "4335", "mutatorName": "StringLiteral", "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(21,59): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", + "statusReason": "app/stores/role/useRolesStore.ts(14,58): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", "status": "CompileError", - "static": true, - "killedBy": [], + "static": false, "coveredBy": [ - "82", - "83", - "84", - "85", - "86", - "87", - "88", - "89", - "90", - "91", - "92", - "93", - "94", - "95", - "96", - "97", - "98", - "99", - "100", - "101", - "102", - "103", - "104", - "105", + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", "134", "135", "136", @@ -216087,627 +213100,632 @@ "161", "162", "163", - "164", - "165", - "166", - "167", - "168", - "169", - "170", - "171", - "172", - "173", - "174", - "175", - "176", - "177", - "178", - "179", - "180", - "181", - "182", - "183", - "184", - "185", - "186", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", - "240", - "241", - "242", - "243", - "244", - "245", - "246", - "247", - "248", - "249", - "250", - "251", - "252", - "253", - "254", - "255", - "256", - "257", - "258", - "259", - "260", - "261", - "262", - "263", - "264", - "265", - "266", - "267", - "268", - "269", - "270", - "271", - "272", - "273", - "274", - "275", - "276", - "277", - "278", - "279", - "280", - "281", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", "387", "388", "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", "438", "439", "440", - "441", - "442", - "443", - "444", - "445", - "446", - "447", - "448", - "449", - "450", - "451", - "452", - "453", - "454", - "455", - "456", - "457", - "458", - "459", - "460", - "461", - "462", - "463", - "464", - "465", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", "482", "483", "484", - "485", - "486", - "487", - "488", - "489", - "490", - "491", - "492", - "493", - "494", - "495", - "496", - "497", - "498", - "499", - "500", - "501", - "502", - "503", - "504", - "505", - "506", - "507", - "508", - "509", - "510", - "511", - "512", - "513", - "514", - "515", - "516", - "517", - "518", - "519", - "520", - "521", - "522", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", "534", "535", "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", "667", "668", "669", - "670", - "671", - "672", - "673", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", "701", "702", "703", - "704", - "705", - "706", - "707", - "708", - "709", - "710", - "722", - "723", - "724", - "725", - "726", - "727", - "728", - "729", - "730", - "731", - "732", - "733", - "734", - "735", - "736", - "737", - "738", - "739", - "740", - "741", - "742", - "743", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", "758", - "759", - "760", - "761", - "762", - "763", - "764", - "765", - "766", - "767", - "768", - "769", - "770", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", "800", "801", "802", - "803", - "804", - "805", - "806", - "807", - "808", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", "826", "827", "828", - "829", - "830", - "831", - "832", - "833", - "834", - "835", - "836", - "837", - "838", - "839", - "840", - "841", - "842", - "876", - "877", - "878", - "879", - "880", - "881", - "882", - "883", - "884", - "885", - "886", - "887", - "888", - "889", - "890", - "891", - "892", - "893", - "894", - "895", - "896", - "897", - "898", - "899", - "900", - "901", - "902", - "903", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", + "919", + "920", + "921", + "922", + "923", + "924", + "925", + "926", + "927", + "928", + "929", + "930", + "931", + "932", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", "972", "973", "974", - "975", - "976", - "977", - "978", - "979", - "980", - "981", - "982", - "983", - "984", - "985", - "986", - "987", - "988", - "989", - "990", + "1002", + "1003", + "1004", + "1005", + "1006", + "1007", + "1008", + "1009", + "1010", + "1011", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", "1030", "1031", "1032", - "1033", - "1034", - "1035", - "1036", - "1037", - "1038", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", "1048", "1049", "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", "1169", "1170", "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1267", - "1268", - "1269", - "1270", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", "1271", "1272", "1273", "1274", - "1275", - "1276", - "1277", - "1278", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", "1319", "1320", "1321", - "1322", - "1323", - "1324", - "1351", - "1352", - "1353", - "1354", - "1355", - "1356", - "1357", - "1358", - "1359", - "1360", - "1361", + "1328", + "1329", + "1330", + "1331", + "1332", + "1333", + "1334", + "1335", + "1336", + "1337", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", "1391", "1392", "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1474", + "1475", + "1476", + "1477", + "1478", "1479", "1480", "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", + "1499", + "1500", "1501", "1502", "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", "1543", "1544", "1545", - "1546", - "1547", - "1548", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", "1569", "1570", "1571", - "1572", - "1573", - "1574", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", "1616", "1617", "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1670", - "1671", - "1672", - "1673", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" + "1663", + "1664", + "1665", + "1666", + "1677", + "1678", + "1914", + "1915", + "1916", + "1917", + "1918", + "1930", + "1931", + "1932", + "1933" ], "location": { "end": { - "column": 65, - "line": 21 + "column": 64, + "line": 14 }, "start": { - "column": 59, - "line": 21 + "column": 58, + "line": 14 } } - }, + } + ], + "source": "import type { AsyncDataRequestStatus } from \"nuxt/app\";\nimport { defineStore } from \"pinia\";\nimport { ref } from \"vue\";\nimport type { GameAdditionalCardRecipientRoleName } from \"~/composables/api/game/types/game-additional-card/game-additional-card.types\";\n\nimport type { Role } from \"~/composables/api/role/types/role.class\";\nimport type { RoleName, RoleSide } from \"~/composables/api/role/types/role.types\";\nimport { useFetchRoles } from \"~/composables/api/role/useFetchRoles\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\n\nconst useRolesStore = defineStore(StoreIds.ROLES, () => {\n const { fetchRoles } = useFetchRoles();\n\n const fetchingRoleStatus = ref(\"idle\");\n const roles = ref(null);\n\n async function fetchAndSetRoles(): Promise {\n fetchingRoleStatus.value = \"pending\";\n roles.value = await fetchRoles();\n fetchingRoleStatus.value = \"success\";\n }\n\n function getRoleWithNameInRoles(roleName: RoleName): Role | undefined {\n return roles.value?.find(role => role.name === roleName);\n }\n\n function getRolesForRecipientRoleName(recipientRoleName: GameAdditionalCardRecipientRoleName): Role[] {\n return roles.value?.filter(role => role.additionalCardsEligibleRecipients?.includes(recipientRoleName)) ?? [];\n }\n\n function getRoleSideForRoleName(roleName: RoleName): RoleSide | undefined {\n return getRoleWithNameInRoles(roleName)?.side;\n }\n return {\n roles,\n fetchingRoleStatus,\n fetchAndSetRoles,\n getRoleWithNameInRoles,\n getRolesForRecipientRoleName,\n getRoleSideForRoleName,\n };\n});\n\nexport { useRolesStore };" + }, + "app/utils/url.utils.ts": { + "language": "typescript", + "mutants": [ { - "id": "4289", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(22,60): error TS2345: Argument of type '\"\"' is not assignable to parameter of type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", + "id": "4356", + "mutatorName": "Regex", + "replacement": "/\\/+/u", + "statusReason": "Snapshot `Role Image Component > should match snapshot when rendered. 1` mismatched", + "status": "Killed", + "testsCompleted": 663, "static": true, - "killedBy": [], + "killedBy": [ + "1630" + ], "coveredBy": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", "82", "83", "84", @@ -216785,6 +213803,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -216792,29 +213833,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -216857,6 +213875,59 @@ "279", "280", "281", + "282", + "283", + "284", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", "387", "388", "389", @@ -216879,6 +213950,20 @@ "406", "407", "408", + "409", + "410", + "411", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", "438", "439", "440", @@ -216907,6 +213992,22 @@ "463", "464", "465", + "466", + "467", + "468", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", "482", "483", "484", @@ -216948,6 +214049,17 @@ "520", "521", "522", + "523", + "524", + "525", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", "534", "535", "536", @@ -216963,6 +214075,68 @@ "546", "547", "548", + "549", + "550", + "551", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", "667", "668", "669", @@ -216970,6 +214144,33 @@ "671", "672", "673", + "674", + "675", + "676", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", "701", "702", "703", @@ -216980,9 +214181,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -217002,6 +214203,18 @@ "741", "742", "743", + "744", + "745", + "746", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", "758", @@ -217017,6 +214230,21 @@ "768", "769", "770", + "771", + "772", + "773", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", "800", "801", "802", @@ -217026,6 +214254,17 @@ "806", "807", "808", + "809", + "810", + "811", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", "826", "827", "828", @@ -217043,9 +214282,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -217083,7 +214322,41 @@ "913", "914", "915", - "953", + "916", + "917", + "918", + "919", + "920", + "921", + "922", + "923", + "924", + "925", + "926", + "927", + "928", + "929", + "930", + "931", + "932", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "956", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", "972", "973", "974", @@ -217103,907 +214376,628 @@ "988", "989", "990", + "991", + "992", + "993", + "1002", + "1003", + "1004", + "1005", + "1006", + "1007", + "1008", + "1009", + "1010", + "1011", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", "1030", "1031", "1032", "1033", "1034", - "1035", - "1036", - "1037", - "1038", - "1048", - "1049", - "1050", - "1051", - "1052", - "1053", - "1054", - "1055", - "1056", - "1057", - "1058", - "1059", - "1060", - "1065", - "1066", - "1067", - "1068", - "1069", - "1070", - "1071", - "1072", - "1073", - "1074", - "1075", - "1076", - "1169", - "1170", - "1171", - "1172", - "1173", - "1174", - "1175", - "1176", - "1177", - "1214", - "1215", - "1216", - "1217", - "1218", - "1219", - "1230", - "1231", - "1232", - "1233", - "1234", - "1235", - "1236", - "1237", - "1238", - "1239", - "1240", - "1241", - "1242", - "1244", - "1267", - "1268", - "1269", - "1270", - "1271", - "1272", - "1273", - "1274", - "1275", - "1276", - "1277", - "1278", - "1319", - "1320", - "1321", - "1322", - "1323", - "1324", - "1351", - "1352", - "1353", - "1354", - "1355", - "1356", - "1357", - "1358", - "1359", - "1360", - "1361", - "1391", - "1392", - "1393", - "1394", - "1395", - "1396", - "1397", - "1398", - "1399", - "1400", - "1401", - "1402", - "1403", - "1404", - "1405", - "1406", - "1407", - "1408", - "1409", - "1410", - "1411", - "1412", - "1432", - "1433", - "1434", - "1435", - "1436", - "1448", - "1449", - "1450", - "1451", - "1452", - "1453", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1479", - "1480", - "1481", - "1482", - "1483", - "1484", - "1485", - "1486", - "1487", - "1488", - "1489", - "1490", - "1491", - "1492", - "1493", - "1494", - "1495", - "1501", - "1502", - "1503", - "1504", - "1505", - "1506", - "1507", - "1508", - "1509", - "1510", - "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1569", - "1570", - "1571", - "1572", - "1573", - "1574", - "1616", - "1617", - "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1670", - "1671", - "1672", - "1673", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" - ], - "location": { - "end": { - "column": 66, - "line": 22 - }, - "start": { - "column": 60, - "line": 22 - } - } - }, - { - "id": "4290", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expected _Game{ …(14) } to strictly equal _Game{ _id: undefined, …(13) }", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1352" - ], - "coveredBy": [ - "1352" - ], - "location": { - "end": { - "column": 4, - "line": 28 - }, - "start": { - "column": 30, - "line": 26 - } - } - }, - { - "id": "4291", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1353" - ], - "coveredBy": [ - "1353", - "1354", - "1355" - ], - "location": { - "end": { - "column": 4, - "line": 41 - }, - "start": { - "column": 65, - "line": 30 - } - } - }, - { - "id": "4292", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(29,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1353", - "1354", - "1355" - ], - "location": { - "end": { - "column": 41, - "line": 31 - }, - "start": { - "column": 32, - "line": 31 - } - } - }, - { - "id": "4293", - "mutatorName": "BooleanLiteral", - "replacement": "fetchedGame", - "statusReason": "app/stores/game/useGameStore.ts(37,5): error TS2322: Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1353", - "1354", - "1355" - ], - "location": { - "end": { - "column": 21, - "line": 33 - }, - "start": { - "column": 9, - "line": 33 - } - } - }, - { - "id": "4294", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "app/stores/game/useGameStore.ts(37,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1353", - "1354", - "1355" - ], - "location": { - "end": { - "column": 21, - "line": 33 - }, - "start": { - "column": 9, - "line": 33 - } - } - }, - { - "id": "4295", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/stores/game/useGameStore.ts(37,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1353", - "1354", - "1355" - ], - "location": { - "end": { - "column": 21, - "line": 33 - }, - "start": { - "column": 9, - "line": 33 - } - } - }, - { - "id": "4296", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/useGameStore.ts(33,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1353" - ], - "location": { - "end": { - "column": 6, - "line": 37 - }, - "start": { - "column": 23, - "line": 33 - } - } - }, - { - "id": "4297", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(32,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1353" - ], - "location": { - "end": { - "column": 41, - "line": 34 - }, - "start": { - "column": 34, - "line": 34 - } - } - }, - { - "id": "4298", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(38,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1354", - "1355" - ], - "location": { - "end": { - "column": 41, - "line": 40 - }, - "start": { - "column": 32, - "line": 40 - } - } - }, - { - "id": "4299", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1356" - ], - "coveredBy": [ - "1356", - "1357" - ], - "location": { - "end": { - "column": 4, - "line": 53 - }, - "start": { - "column": 46, - "line": 43 - } - } - }, - { - "id": "4300", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(42,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1356", - "1357" - ], - "location": { - "end": { - "column": 42, - "line": 44 - }, - "start": { - "column": 33, - "line": 44 - } - } - }, - { - "id": "4301", - "mutatorName": "BooleanLiteral", - "replacement": "canceledGame", - "statusReason": "app/stores/game/useGameStore.ts(49,5): error TS2322: Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1356", - "1357" - ], - "location": { - "end": { - "column": 22, - "line": 46 - }, - "start": { - "column": 9, - "line": 46 - } - } - }, - { - "id": "4302", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "app/stores/game/useGameStore.ts(49,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1356", - "1357" - ], - "location": { - "end": { - "column": 22, - "line": 46 - }, - "start": { - "column": 9, - "line": 46 - } - } - }, - { - "id": "4303", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/stores/game/useGameStore.ts(49,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1356", - "1357" - ], - "location": { - "end": { - "column": 22, - "line": 46 - }, - "start": { - "column": 9, - "line": 46 - } - } - }, - { - "id": "4304", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/useGameStore.ts(45,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1356" - ], - "location": { - "end": { - "column": 6, - "line": 50 - }, - "start": { - "column": 24, - "line": 46 - } - } - }, - { - "id": "4305", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(45,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1356" - ], - "location": { - "end": { - "column": 41, - "line": 47 - }, - "start": { - "column": 34, - "line": 47 - } - } - }, - { - "id": "4306", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(50,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1357" - ], - "location": { - "end": { - "column": 42, - "line": 52 - }, - "start": { - "column": 33, - "line": 52 - } - } - }, - { - "id": "4307", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1358" - ], - "coveredBy": [ - "1358", - "1359", - "1360", - "1361" - ], - "location": { - "end": { - "column": 4, - "line": 66 - }, - "start": { - "column": 80, - "line": 55 - } - } - }, - { - "id": "4308", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(54,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1358", - "1359", - "1360", - "1361" - ], - "location": { - "end": { - "column": 43, - "line": 56 - }, - "start": { - "column": 34, - "line": 56 - } - } - }, - { - "id": "4309", - "mutatorName": "BooleanLiteral", - "replacement": "playedGame", - "statusReason": "app/stores/game/useGameStore.ts(62,5): error TS2322: Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1358", - "1359", - "1360", - "1361" - ], - "location": { - "end": { - "column": 20, - "line": 58 - }, - "start": { - "column": 9, - "line": 58 - } - } - }, - { - "id": "4310", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "app/stores/game/useGameStore.ts(62,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1358", - "1359", - "1360", - "1361" - ], - "location": { - "end": { - "column": 20, - "line": 58 - }, - "start": { - "column": 9, - "line": 58 - } - } - }, - { - "id": "4311", - "mutatorName": "ConditionalExpression", - "replacement": "false", - "statusReason": "app/stores/game/useGameStore.ts(62,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1358", - "1359", - "1360", - "1361" - ], - "location": { - "end": { - "column": 20, - "line": 58 - }, - "start": { - "column": 9, - "line": 58 - } - } - }, - { - "id": "4312", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/stores/game/useGameStore.ts(58,5): error TS2322: Type 'Game | null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n Type 'null' is not assignable to type '{ _id: string; turn: number; phase: { name: \"day\" | \"night\" | \"twilight\"; tick: number; }; tick: number; status: \"playing\" | \"over\" | \"canceled\"; players: { _id: string; name: string; role: { original: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; current: \"werewolf\" | ... 28 more ... | \"devoted-servant\"; isReve...'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1358", - "1361" + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", + "1048", + "1049", + "1050", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1270", + "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", + "1319", + "1320", + "1321", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", + "1391", + "1392", + "1393", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", + "1471", + "1472", + "1473", + "1474", + "1475", + "1476", + "1477", + "1478", + "1479", + "1480", + "1481", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1499", + "1500", + "1501", + "1502", + "1503", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1531", + "1532", + "1533", + "1534", + "1535", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", + "1543", + "1544", + "1545", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1619", + "1620", + "1621", + "1622", + "1629", + "1630", + "1631", + "1632", + "1633", + "1634", + "1635", + "1636", + "1637", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1663", + "1664", + "1665", + "1666", + "1673", + "1674", + "1675", + "1676", + "1677", + "1678", + "1688", + "1689", + "1690", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1914", + "1915", + "1916", + "1917", + "1918", + "1930", + "1931", + "1932", + "1933", + "2029", + "2061" ], "location": { "end": { - "column": 6, - "line": 62 + "column": 29, + "line": 2 }, "start": { "column": 22, - "line": 58 - } - } - }, - { - "id": "4313", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(57,7): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1358", - "1361" - ], - "location": { - "end": { - "column": 41, - "line": 59 - }, - "start": { - "column": 34, - "line": 59 - } - } - }, - { - "id": "4314", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/game/useGameStore.ts(63,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "1359", - "1360" - ], - "location": { - "end": { - "column": 43, - "line": 65 - }, - "start": { - "column": 34, - "line": 65 + "line": 2 } } }, { - "id": "4315", + "id": "4355", "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", - "status": "Killed", - "testsCompleted": 1, - "static": false, - "killedBy": [ - "1361" - ], - "coveredBy": [ - "1361" - ], - "location": { - "end": { - "column": 4, - "line": 70 - }, - "start": { - "column": 48, - "line": 68 - } - } - }, - { - "id": "4316", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/game/game-event/useGameEventsStore.ts(12,72): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(15,105): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(16,66): error TS2339: Property 'makingGamePlayStatus' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(26,75): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(30,83): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\napp/stores/game/game-event/useGameEventsStore.ts(35,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(101,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(109,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(137,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(166,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(194,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(198,24): error TS2339: Property 'cancelGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game/GameOver/GameOver.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/GameOver/GameOver.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/GameOver/GameOverVictoryText/GameOverVictoryText.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/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts(200,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(321,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/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/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/GameAccursedWolfFatherMayHaveInfectedEvent/GameAccursedWolfFatherMayHaveInfectedEvent.nuxt.spec.ts(51,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/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(136,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/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/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/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(49,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(178,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/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/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/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/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/GameEventTextsManager.nuxt.spec.ts(82,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(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/pages/game/game-page.nuxt.spec.ts(30,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(51,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(59,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(81,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(89,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(90,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(98,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(99,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(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(108,17): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(41,22): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(42,22): error TS2339: Property 'fetchingGameStatus' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(48,17): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(49,17): error TS2339: Property 'resetGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(51,24): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(58,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(67,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(76,23): error TS2339: Property 'fetchAndSetGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(78,24): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(85,17): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(86,23): error TS2339: Property 'cancelGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(95,23): error TS2339: Property 'cancelGame' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(97,24): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(104,17): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(106,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(116,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(126,23): error TS2339: Property 'makeGamePlay' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(128,24): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(135,17): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/useGameStore.spec.ts(136,23): error TS2339: Property 'skipGamePlay' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts(53,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(66,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(79,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(94,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(107,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(132,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(139,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(146,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(157,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(170,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(176,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(186,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(199,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(216,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(229,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(242,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(253,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(262,83): error TS2339: Property 'game' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", + "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", "status": "CompileError", "static": true, - "killedBy": [], "coveredBy": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", "82", "83", "84", @@ -218081,6 +215075,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -218088,29 +215105,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -218153,6 +215147,59 @@ "279", "280", "281", + "282", + "283", + "284", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", "387", "388", "389", @@ -218175,6 +215222,20 @@ "406", "407", "408", + "409", + "410", + "411", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", "438", "439", "440", @@ -218203,6 +215264,22 @@ "463", "464", "465", + "466", + "467", + "468", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", "482", "483", "484", @@ -218244,6 +215321,17 @@ "520", "521", "522", + "523", + "524", + "525", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", "534", "535", "536", @@ -218259,6 +215347,68 @@ "546", "547", "548", + "549", + "550", + "551", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", "667", "668", "669", @@ -218266,6 +215416,33 @@ "671", "672", "673", + "674", + "675", + "676", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", "701", "702", "703", @@ -218276,9 +215453,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -218298,6 +215475,18 @@ "741", "742", "743", + "744", + "745", + "746", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", "756", "757", "758", @@ -218313,6 +215502,21 @@ "768", "769", "770", + "771", + "772", + "773", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", "800", "801", "802", @@ -218322,6 +215526,17 @@ "806", "807", "808", + "809", + "810", + "811", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", "826", "827", "828", @@ -218339,9 +215554,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -218379,7 +215594,41 @@ "913", "914", "915", - "953", + "916", + "917", + "918", + "919", + "920", + "921", + "922", + "923", + "924", + "925", + "926", + "927", + "928", + "929", + "930", + "931", + "932", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "956", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", "972", "973", "974", @@ -218399,6 +215648,26 @@ "988", "989", "990", + "991", + "992", + "993", + "1002", + "1003", + "1004", + "1005", + "1006", + "1007", + "1008", + "1009", + "1010", + "1011", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", "1030", "1031", "1032", @@ -218408,6 +215677,15 @@ "1036", "1037", "1038", + "1039", + "1040", + "1041", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", "1048", "1049", "1050", @@ -218421,9 +215699,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -218433,6 +215711,54 @@ "1074", "1075", "1076", + "1077", + "1078", + "1079", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", "1169", "1170", "1171", @@ -218442,15 +215768,24 @@ "1175", "1176", "1177", - "1214", - "1215", - "1216", + "1178", + "1179", + "1180", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -218461,10 +215796,16 @@ "1240", "1241", "1242", + "1243", "1244", - "1267", - "1268", - "1269", + "1245", + "1247", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", "1270", "1271", "1272", @@ -218474,23 +215815,69 @@ "1276", "1277", "1278", + "1279", + "1280", + "1281", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", "1319", "1320", "1321", "1322", "1323", "1324", - "1351", - "1352", - "1353", - "1354", - "1355", - "1356", - "1357", - "1358", - "1359", - "1360", - "1361", + "1325", + "1326", + "1327", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", "1391", "1392", "1393", @@ -218513,25 +215900,39 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", - "1448", - "1449", - "1450", + "1437", + "1438", + "1439", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", "1469", "1470", + "1471", + "1472", + "1473", + "1474", + "1475", + "1476", + "1477", + "1478", "1479", "1480", "1481", @@ -218549,6 +215950,11 @@ "1493", "1494", "1495", + "1496", + "1497", + "1498", + "1499", + "1500", "1501", "1502", "1503", @@ -218560,986 +215966,511 @@ "1509", "1510", "1511", - "1528", - "1529", - "1530", - "1531", - "1532", - "1543", - "1544", - "1545", - "1546", - "1547", - "1548", - "1569", - "1570", - "1571", - "1572", - "1573", - "1574", - "1616", - "1617", - "1618", - "1619", - "1626", - "1650", - "1651", - "1652", - "1653", - "1654", - "1655", - "1656", - "1657", - "1658", - "1659", - "1670", - "1671", - "1672", - "1673", - "1688", - "1689", - "1690", - "1691", - "1692", - "1699", - "1700", - "1701", - "1702", - "1703", - "1713", - "1714", - "1715", - "1716", - "1717", - "1722", - "1723", - "1724", - "1725", - "1726", - "1734", - "1735", - "1736", - "1737", - "1738", - "1754", - "1755", - "1756", - "1757", - "1758", - "1766", - "1767", - "1768", - "1769", - "1770", - "1771", - "1773", - "1777", - "1811", - "1812", - "1813", - "1814", - "1815", - "1816", - "1817", - "1818", - "1843", - "1844", - "1845", - "1846", - "1860", - "1864", - "1873", - "1874", - "1875", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "1912" - ], - "location": { - "end": { - "column": 4, - "line": 82 - }, - "start": { - "column": 10, - "line": 71 - } - } - } - ], - "source": "import type { AsyncDataRequestStatus } from \"nuxt/app\";\nimport { defineStore } from \"pinia\";\n\nimport type { MakeGamePlayDto } from \"~/composables/api/game/dto/make-game-play/make-game-play.dto\";\nimport type { GameOptions } from \"~/composables/api/game/types/game-options/game-options.class\";\nimport { Game } from \"~/composables/api/game/types/game.class\";\nimport { useFetchGames } from \"~/composables/api/game/useFetchGames\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameEventsStore } from \"~/stores/game/game-event/useGameEventsStore\";\n\nconst useGameStore = defineStore(StoreIds.GAME, () => {\n const {\n getGame: fetchGameFromApi,\n cancelGame: cancelGameFromApi,\n makeGamePlay: makeGamePlayFromApi,\n } = useFetchGames();\n\n const game = ref(new Game());\n const gameOptions = computed(() => game.value.options);\n const fetchingGameStatus = ref(\"idle\");\n const cancelingGameStatus = ref(\"idle\");\n const makingGamePlayStatus = ref(\"idle\");\n\n const { resetGameEventIndex } = useGameEventsStore();\n\n function resetGame(): void {\n game.value = new Game();\n }\n\n async function fetchAndSetGame(gameId: string): Promise {\n fetchingGameStatus.value = \"pending\";\n const fetchedGame = await fetchGameFromApi(gameId);\n if (!fetchedGame) {\n fetchingGameStatus.value = \"error\";\n\n return;\n }\n resetGameEventIndex();\n game.value = fetchedGame;\n fetchingGameStatus.value = \"success\";\n }\n\n async function cancelGame(): Promise {\n cancelingGameStatus.value = \"pending\";\n const canceledGame = await cancelGameFromApi(game.value._id);\n if (!canceledGame) {\n fetchingGameStatus.value = \"error\";\n\n return;\n }\n game.value = canceledGame;\n cancelingGameStatus.value = \"success\";\n }\n\n async function makeGamePlay(makeGamePlayDto: MakeGamePlayDto): Promise {\n makingGamePlayStatus.value = \"pending\";\n const playedGame = await makeGamePlayFromApi(game.value._id, makeGamePlayDto);\n if (!playedGame) {\n fetchingGameStatus.value = \"error\";\n\n return;\n }\n resetGameEventIndex();\n game.value = playedGame;\n makingGamePlayStatus.value = \"success\";\n }\n\n async function skipGamePlay(): Promise {\n return makeGamePlay({});\n }\n return {\n game,\n gameOptions,\n fetchingGameStatus,\n cancelingGameStatus,\n makingGamePlayStatus,\n resetGame,\n fetchAndSetGame,\n cancelGame,\n makeGamePlay,\n skipGamePlay,\n };\n});\n\nexport { useGameStore };" - }, - "app/stores/keyboard/useKeyboardStore.ts": { - "language": "typescript", - "mutants": [ - { - "id": "4317", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "tests/unit/specs/stores/keyboard/useKeyboardStore.spec.ts(14,26): error TS2339: Property 'keyboard' does not exist on type 'Store'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "269", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "2044" - ], - "location": { - "end": { - "column": 2, - "line": 21 - }, - "start": { - "column": 63, - "line": 5 - } - } - }, - { - "id": "4318", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "269", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "2044" - ], - "location": { - "end": { - "column": 5, - "line": 18 - }, - "start": { - "column": 39, - "line": 13 - } - } - }, - { - "id": "4319", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "269", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "2044" - ], - "location": { - "end": { - "column": 4, - "line": 18 - }, - "start": { - "column": 46, - "line": 13 - } - } - }, - { - "id": "4320", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "269", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "2044" - ], - "location": { - "end": { - "column": 38, - "line": 14 - }, - "start": { - "column": 12, - "line": 14 - } - } - }, - { - "id": "4321", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "269", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "2044" - ], - "location": { - "end": { - "column": 38, - "line": 15 - }, - "start": { - "column": 12, - "line": 15 - } - } - }, - { - "id": "4322", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "269", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1492", - "1507", - "1529", - "1544", - "1651", - "1656", - "1689", - "1700", - "1714", - "1723", - "1735", - "1773", - "1777", - "1812", - "1844", - "1860", - "1864", - "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "2044" - ], - "location": { - "end": { - "column": 48, - "line": 16 - }, - "start": { - "column": 17, - "line": 16 - } - } - }, - { - "id": "4323", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "app/stores/keyboard/useKeyboardStore.ts(13,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", - "status": "CompileError", - "static": false, - "killedBy": [], - "coveredBy": [ - "269", - "387", - "388", - "389", - "390", - "391", - "392", - "393", - "394", - "395", - "396", - "397", - "398", - "399", - "400", - "401", - "402", - "403", - "404", - "405", - "406", - "407", - "408", - "534", - "535", - "536", - "537", - "538", - "539", - "540", - "541", - "542", - "543", - "544", - "545", - "546", - "547", - "548", - "702", - "723", - "736", - "757", - "758", - "801", - "886", - "896", - "904", - "905", - "906", - "907", - "908", - "909", - "910", - "911", - "912", - "913", - "914", - "915", - "953", - "1031", - "1049", - "1066", - "1072", - "1215", - "1231", - "1244", - "1273", - "1320", - "1449", - "1463", - "1464", - "1465", - "1466", - "1467", - "1468", - "1469", - "1470", - "1492", - "1507", - "1529", + "1512", + "1513", + "1514", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1531", + "1532", + "1533", + "1534", + "1535", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", + "1543", "1544", - "1651", + "1545", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1619", + "1620", + "1621", + "1622", + "1629", + "1630", + "1631", + "1632", + "1633", + "1634", + "1635", + "1636", + "1637", + "1653", + "1654", + "1655", "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1663", + "1664", + "1665", + "1666", + "1673", + "1674", + "1675", + "1676", + "1677", + "1678", + "1688", "1689", - "1700", - "1714", - "1723", - "1735", + "1690", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", "1773", - "1777", - "1812", - "1844", - "1860", - "1864", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "2044" + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1914", + "1915", + "1916", + "1917", + "1918", + "1930", + "1931", + "1932", + "1933", + "2029", + "2061" ], "location": { "end": { - "column": 46, - "line": 17 + "column": 2, + "line": 3 }, "start": { - "column": 16, - "line": 17 + "column": 53, + "line": 1 } } }, { - "id": "4324", - "mutatorName": "ObjectLiteral", - "replacement": "{}", - "statusReason": "tests/unit/specs/stores/keyboard/useKeyboardStore.spec.ts(14,26): error TS2339: Property 'keyboard' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\n", - "status": "CompileError", - "static": false, - "killedBy": [], + "id": "4357", + "mutatorName": "Regex", + "replacement": "/\\/$/u", + "status": "Timeout", + "static": true, "coveredBy": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", + "210", + "211", + "212", + "213", + "214", + "215", + "216", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", + "282", + "283", + "284", + "285", + "286", + "287", + "288", + "289", + "290", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "328", + "329", + "330", + "331", + "332", + "333", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "342", + "343", + "344", + "345", + "371", + "372", + "373", + "374", + "375", + "376", + "377", + "378", + "379", + "380", + "381", + "382", + "383", + "384", + "385", + "386", "387", "388", "389", @@ -219562,6 +216493,116 @@ "406", "407", "408", + "409", + "410", + "411", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", + "466", + "467", + "468", + "469", + "470", + "471", + "472", + "473", + "474", + "475", + "476", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", + "523", + "524", + "525", + "526", + "527", + "528", + "529", + "530", + "531", + "532", + "533", "534", "535", "536", @@ -219577,14 +216618,241 @@ "546", "547", "548", + "549", + "550", + "551", + "552", + "553", + "554", + "555", + "556", + "557", + "558", + "559", + "560", + "561", + "562", + "563", + "564", + "565", + "566", + "567", + "568", + "569", + "570", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", + "636", + "637", + "638", + "639", + "640", + "641", + "642", + "643", + "644", + "645", + "646", + "647", + "648", + "649", + "650", + "651", + "652", + "653", + "654", + "655", + "656", + "657", + "658", + "659", + "660", + "661", + "662", + "663", + "664", + "665", + "666", + "667", + "668", + "669", + "670", + "671", + "672", + "673", + "674", + "675", + "676", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "688", + "689", + "690", + "691", + "692", + "693", + "694", + "695", + "696", + "697", + "698", + "699", + "700", + "701", "702", - "723", + "703", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", + "744", + "745", + "746", + "747", + "748", + "749", + "750", + "751", + "752", + "753", + "754", + "755", + "756", "757", "758", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", + "788", + "789", + "790", + "791", + "792", + "793", + "794", + "795", + "796", + "797", + "798", + "799", + "800", "801", + "802", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", + "818", + "819", + "820", + "821", + "822", + "823", + "824", + "825", + "826", + "827", + "828", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", "904", "905", "906", @@ -219597,75 +216865,598 @@ "913", "914", "915", - "953", + "916", + "917", + "918", + "919", + "920", + "921", + "922", + "923", + "924", + "925", + "926", + "927", + "928", + "929", + "930", + "931", + "932", + "933", + "934", + "935", + "936", + "937", + "938", + "939", + "940", + "941", + "956", + "964", + "965", + "966", + "967", + "968", + "969", + "970", + "971", + "972", + "973", + "974", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", + "1002", + "1003", + "1004", + "1005", + "1006", + "1007", + "1008", + "1009", + "1010", + "1011", + "1023", + "1024", + "1025", + "1026", + "1027", + "1028", + "1029", + "1030", "1031", + "1032", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", + "1039", + "1040", + "1041", + "1042", + "1043", + "1044", + "1045", + "1046", + "1047", + "1048", "1049", - "1066", + "1050", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", "1072", - "1215", - "1231", + "1073", + "1074", + "1075", + "1076", + "1077", + "1078", + "1079", + "1080", + "1081", + "1082", + "1083", + "1084", + "1085", + "1086", + "1087", + "1088", + "1089", + "1108", + "1109", + "1110", + "1111", + "1112", + "1113", + "1114", + "1115", + "1116", + "1143", + "1144", + "1145", + "1146", + "1147", + "1148", + "1149", + "1150", + "1151", + "1152", + "1153", + "1154", + "1155", + "1156", + "1157", + "1158", + "1159", + "1160", + "1161", + "1162", + "1163", + "1164", + "1165", + "1166", + "1167", + "1168", + "1169", + "1170", + "1171", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", + "1199", + "1200", + "1201", + "1202", + "1203", + "1204", + "1205", + "1206", + "1207", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", "1244", + "1245", + "1247", + "1254", + "1255", + "1256", + "1257", + "1258", + "1259", + "1270", + "1271", + "1272", "1273", + "1274", + "1275", + "1276", + "1277", + "1278", + "1279", + "1280", + "1281", + "1282", + "1283", + "1284", + "1285", + "1286", + "1299", + "1300", + "1301", + "1302", + "1303", + "1304", + "1305", + "1306", + "1307", + "1308", + "1309", + "1310", + "1311", + "1312", + "1313", + "1314", + "1315", + "1316", + "1317", + "1318", + "1319", "1320", - "1449", - "1463", - "1464", - "1465", + "1321", + "1322", + "1323", + "1324", + "1325", + "1326", + "1327", + "1338", + "1339", + "1340", + "1341", + "1342", + "1343", + "1344", + "1365", + "1366", + "1367", + "1368", + "1369", + "1370", + "1371", + "1372", + "1380", + "1381", + "1382", + "1383", + "1384", + "1385", + "1386", + "1387", + "1388", + "1389", + "1390", + "1391", + "1392", + "1393", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", + "1437", + "1438", + "1439", + "1440", + "1441", + "1442", + "1443", + "1444", + "1445", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", "1466", "1467", "1468", "1469", "1470", + "1471", + "1472", + "1473", + "1474", + "1475", + "1476", + "1477", + "1478", + "1479", + "1480", + "1481", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", "1492", + "1493", + "1494", + "1495", + "1496", + "1497", + "1498", + "1499", + "1500", + "1501", + "1502", + "1503", + "1504", + "1505", + "1506", "1507", - "1529", + "1508", + "1509", + "1510", + "1511", + "1512", + "1513", + "1514", + "1515", + "1516", + "1517", + "1518", + "1519", + "1520", + "1521", + "1522", + "1523", + "1524", + "1525", + "1531", + "1532", + "1533", + "1534", + "1535", + "1536", + "1537", + "1538", + "1539", + "1540", + "1541", + "1542", + "1543", "1544", - "1651", + "1545", + "1546", + "1547", + "1548", + "1549", + "1550", + "1551", + "1552", + "1553", + "1554", + "1555", + "1556", + "1557", + "1558", + "1559", + "1560", + "1561", + "1562", + "1563", + "1564", + "1565", + "1566", + "1567", + "1568", + "1569", + "1570", + "1571", + "1572", + "1573", + "1574", + "1575", + "1576", + "1577", + "1578", + "1579", + "1580", + "1581", + "1582", + "1583", + "1584", + "1585", + "1586", + "1587", + "1588", + "1589", + "1590", + "1591", + "1592", + "1593", + "1594", + "1595", + "1596", + "1597", + "1598", + "1599", + "1600", + "1601", + "1602", + "1603", + "1604", + "1605", + "1614", + "1615", + "1616", + "1617", + "1618", + "1619", + "1620", + "1621", + "1622", + "1629", + "1630", + "1631", + "1632", + "1633", + "1634", + "1635", + "1636", + "1637", + "1653", + "1654", + "1655", "1656", + "1657", + "1658", + "1659", + "1660", + "1661", + "1662", + "1663", + "1664", + "1665", + "1666", + "1673", + "1674", + "1675", + "1676", + "1677", + "1678", + "1688", "1689", - "1700", - "1714", - "1723", - "1735", + "1690", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", "1773", - "1777", - "1812", - "1844", - "1860", - "1864", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", - "2044" + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", + "1911", + "1914", + "1915", + "1916", + "1917", + "1918", + "1930", + "1931", + "1932", + "1933", + "2029", + "2061" ], "location": { "end": { - "column": 22, - "line": 20 + "column": 29, + "line": 2 }, "start": { - "column": 10, - "line": 20 + "column": 22, + "line": 2 } } - } - ], - "source": "import { defineStore } from \"pinia\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport type { Keyboard } from \"~/stores/keyboard/types/keyboard.types\";\n\nconst useKeyboardStore = defineStore(StoreIds.KEYBOARD, () => {\n const {\n shift,\n arrowright,\n arrowleft,\n enter,\n } = useMagicKeys();\n\n const keyboard = computed(() => ({\n shift: { isPressed: shift.value },\n enter: { isPressed: enter.value },\n arrowRight: { isPressed: arrowright.value },\n arrowLeft: { isPressed: arrowleft.value },\n }));\n\n return { keyboard };\n});\n\nexport { useKeyboardStore };" - }, - "app/stores/role/useRolesStore.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "4325", - "mutatorName": "BlockStatement", - "replacement": "{}", - "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(30,11): error TS2339: Property 'roles' does not exist on type 'StoreToRefs>'.\napp/composables/api/game/useCreateGameDtoValidation.ts(46,57): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(48,42): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(55,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(64,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(22,11): error TS2339: Property 'getRoleWithNameInRoles' does not exist on type '_StoreWithState & _StoreWithGetters<{}> & PiniaCustomProperties & PiniaCustomStateProperties<...>'.\ntests/unit/specs/app.nuxt.spec.ts(48,23): error TS2339: Property 'fetchAndSetRoles' does not exist on type 'Store'.\ntests/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/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(102,16): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(123,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(138,18): 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/composables/api/game/useCreateGameDtoValidation.spec.ts(23,16): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(231,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(275,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/composables/api/game/useCreateGameDtoValidation.spec.ts(326,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(432,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(508,18): error TS2339: Property 'roles' does not exist on type 'Store'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(565,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", - "status": "CompileError", - "static": false, - "killedBy": [], + "id": "4358", + "mutatorName": "StringLiteral", + "replacement": "\"Stryker was here!\"", + "status": "Timeout", + "static": true, "coveredBy": [ "0", "1", @@ -219749,6 +217540,106 @@ "79", "80", "81", + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -219756,26 +217647,48 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", "282", "283", "284", @@ -219792,9 +217705,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -219810,9 +217723,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -219829,9 +217742,31 @@ "384", "385", "386", - "424", - "425", - "426", + "387", + "388", + "389", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", "427", "428", "429", @@ -219843,6 +217778,34 @@ "435", "436", "437", + "438", + "439", + "440", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", "466", "467", "468", @@ -219859,6 +217822,47 @@ "479", "480", "481", + "482", + "483", + "484", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", "523", "524", "525", @@ -219870,6 +217874,21 @@ "531", "532", "533", + "534", + "535", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", "549", "550", "551", @@ -219889,6 +217908,18 @@ "565", "566", "567", + "568", + "569", + "570", + "627", + "628", + "629", + "630", + "631", + "632", + "633", + "634", + "635", "636", "637", "638", @@ -219920,6 +217951,13 @@ "664", "665", "666", + "667", + "668", + "669", + "670", + "671", + "672", + "673", "674", "675", "676", @@ -219947,6 +217985,38 @@ "698", "699", "700", + "701", + "702", + "703", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", "744", "745", "746", @@ -219959,9 +218029,24 @@ "753", "754", "755", - "785", - "786", - "787", + "756", + "757", + "758", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", "788", "789", "790", @@ -219974,9 +218059,18 @@ "797", "798", "799", - "815", - "816", - "817", + "800", + "801", + "802", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", "818", "819", "820", @@ -219985,6 +218079,63 @@ "823", "824", "825", + "826", + "827", + "828", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", "916", "917", "918", @@ -220008,9 +218159,10 @@ "936", "937", "938", - "961", - "962", - "963", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -220019,9 +218171,28 @@ "969", "970", "971", - "999", - "1000", - "1001", + "972", + "973", + "974", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", "1002", "1003", "1004", @@ -220029,9 +218200,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -220039,6 +218210,15 @@ "1027", "1028", "1029", + "1030", + "1031", + "1032", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", "1039", "1040", "1041", @@ -220048,6 +218228,31 @@ "1045", "1046", "1047", + "1048", + "1049", + "1050", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", "1077", "1078", "1079", @@ -220058,18 +218263,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -220096,33 +218301,70 @@ "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", "1254", "1255", "1256", - "1268", - "1269", + "1257", + "1258", + "1259", "1270", "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -220143,34 +218385,30 @@ "1316", "1317", "1318", + "1319", + "1320", + "1321", + "1322", + "1323", + "1324", "1325", "1326", "1327", - "1328", - "1329", - "1330", - "1331", - "1332", - "1333", - "1334", - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -220182,12 +218420,53 @@ "1388", "1389", "1390", + "1391", + "1392", + "1393", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", "1437", "1438", "1439", "1440", "1441", "1442", + "1443", + "1444", + "1445", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", "1471", "1472", "1473", @@ -220196,11 +218475,39 @@ "1476", "1477", "1478", + "1479", + "1480", + "1481", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", "1496", "1497", "1498", "1499", "1500", + "1501", + "1502", + "1503", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", "1512", "1513", "1514", @@ -220212,6 +218519,11 @@ "1520", "1521", "1522", + "1523", + "1524", + "1525", + "1531", + "1532", "1533", "1534", "1535", @@ -220222,6 +218534,12 @@ "1540", "1541", "1542", + "1543", + "1544", + "1545", + "1546", + "1547", + "1548", "1549", "1550", "1551", @@ -220242,6 +218560,12 @@ "1566", "1567", "1568", + "1569", + "1570", + "1571", + "1572", + "1573", + "1574", "1575", "1576", "1577", @@ -220270,1266 +218594,2865 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", + "1616", + "1617", + "1618", + "1619", + "1620", + "1621", + "1622", + "1629", + "1630", + "1631", + "1632", + "1633", + "1634", + "1635", + "1636", + "1637", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", "1660", "1661", "1662", "1663", + "1664", + "1665", + "1666", + "1673", "1674", "1675", + "1676", + "1677", + "1678", + "1688", + "1689", + "1690", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", "1911", - "1912", - "1913", "1914", "1915", - "1927", - "1928", - "1929", - "1930" + "1916", + "1917", + "1918", + "1930", + "1931", + "1932", + "1933", + "2029", + "2061" + ], + "location": { + "end": { + "column": 33, + "line": 2 + }, + "start": { + "column": 31, + "line": 2 + } + } + } + ], + "source": "function removeTrailingSlashes(url: string): string {\n return url.replace(/\\/+$/u, \"\");\n}\n\nexport { removeTrailingSlashes };" + }, + "app/pages/game-lobby.vue": { + "language": "html", + "mutants": [ + { + "id": "3870", + "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}", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "135" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 80, + "line": 86 + }, + "start": { + "column": 9, + "line": 86 + } + } + }, + { + "id": "3871", + "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}", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "135" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 79, + "line": 86 + }, + "start": { + "column": 10, + "line": 86 + } + } + }, + { + "id": "3872", + "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}", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "135" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 31, + "line": 86 + }, + "start": { + "column": 18, + "line": 86 + } + } + }, + { + "id": "3873", + "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}", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "135" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 76, + "line": 86 + }, + "start": { + "column": 44, + "line": 86 + } + } + }, + { + "id": "3869", + "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}", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "135" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 39, + "line": 85 + }, + "start": { + "column": 12, + "line": 85 + } + } + }, + { + "id": "3868", + "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 {}", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "135" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 2, + "line": 87 + }, + "start": { + "column": 9, + "line": 84 + } + } + }, + { + "id": "3874", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "142" + ], + "coveredBy": [ + "142", + "143", + "144" + ], + "location": { + "end": { + "column": 2, + "line": 97 + }, + "start": { + "column": 91, + "line": 89 + } + } + }, + { + "id": "3875", + "mutatorName": "BooleanLiteral", + "replacement": "gameLobbyRolePicker.value", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "142" + ], + "coveredBy": [ + "142", + "143", + "144" + ], + "location": { + "end": { + "column": 33, + "line": 90 + }, + "start": { + "column": 7, + "line": 90 + } + } + }, + { + "id": "3876", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "142" + ], + "coveredBy": [ + "142", + "143", + "144" + ], + "location": { + "end": { + "column": 33, + "line": 90 + }, + "start": { + "column": 7, + "line": 90 + } + } + }, + { + "id": "3877", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 3, + "killedBy": [ + "144" + ], + "coveredBy": [ + "142", + "143", + "144" + ], + "location": { + "end": { + "column": 33, + "line": 90 + }, + "start": { + "column": 7, + "line": 90 + } + } + }, + { + "id": "3878", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "144" + ], + "coveredBy": [ + "144" + ], + "location": { + "end": { + "column": 4, + "line": 92 + }, + "start": { + "column": 35, + "line": 90 + } + } + }, + { + "id": "3879", + "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 \"\"", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "144" + ], + "coveredBy": [ + "144" + ], + "location": { + "end": { + "column": 62, + "line": 91 + }, + "start": { + "column": 23, + "line": 91 + } + } + }, + { + "id": "3880", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "142" + ], + "coveredBy": [ + "142", + "143" + ], + "location": { + "end": { + "column": 14, + "line": 93 + }, + "start": { + "column": 7, + "line": 93 + } + } + }, + { + "id": "3881", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "142" + ], + "coveredBy": [ + "142", + "143" + ], + "location": { + "end": { + "column": 14, + "line": 93 + }, + "start": { + "column": 7, + "line": 93 + } + } + }, + { + "id": "3882", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "143" + ], + "coveredBy": [ + "142", + "143" + ], + "location": { + "end": { + "column": 14, + "line": 93 + }, + "start": { + "column": 7, + "line": 93 + } + } + }, + { + "id": "3883", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "143" + ], + "coveredBy": [ + "143" + ], + "location": { + "end": { + "column": 4, + "line": 95 + }, + "start": { + "column": 16, + "line": 93 + } + } + }, + { + "id": "3884", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "145" + ], + "coveredBy": [ + "145", + "146", + "161" + ], + "location": { + "end": { + "column": 2, + "line": 104 + }, + "start": { + "column": 62, + "line": 99 + } + } + }, + { + "id": "3885", + "mutatorName": "BooleanLiteral", + "replacement": "gameLobbyOptionsHub.value", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "145" + ], + "coveredBy": [ + "145", + "146", + "161" + ], + "location": { + "end": { + "column": 33, + "line": 100 + }, + "start": { + "column": 7, + "line": 100 + } + } + }, + { + "id": "3886", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "145" + ], + "coveredBy": [ + "145", + "146", + "161" + ], + "location": { + "end": { + "column": 33, + "line": 100 + }, + "start": { + "column": 7, + "line": 100 + } + } + }, + { + "id": "3887", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "146" + ], + "coveredBy": [ + "145", + "146", + "161" + ], + "location": { + "end": { + "column": 33, + "line": 100 + }, + "start": { + "column": 7, + "line": 100 + } + } + }, + { + "id": "3888", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "146" + ], + "coveredBy": [ + "146" + ], + "location": { + "end": { + "column": 4, + "line": 102 + }, + "start": { + "column": 35, + "line": 100 + } + } + }, + { + "id": "3889", + "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 \"\"", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "146" + ], + "coveredBy": [ + "146" + ], + "location": { + "end": { + "column": 62, + "line": 101 + }, + "start": { + "column": 23, + "line": 101 + } + } + }, + { + "id": "3890", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "147" + ], + "coveredBy": [ + "147", + "148", + "153" + ], + "location": { + "end": { + "column": 2, + "line": 111 + }, + "start": { + "column": 70, + "line": 106 + } + } + }, + { + "id": "3891", + "mutatorName": "BooleanLiteral", + "replacement": "gameLobbyPositionCoordinator.value", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "147" + ], + "coveredBy": [ + "147", + "148", + "153" + ], + "location": { + "end": { + "column": 42, + "line": 107 + }, + "start": { + "column": 7, + "line": 107 + } + } + }, + { + "id": "3892", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "147" + ], + "coveredBy": [ + "147", + "148", + "153" + ], + "location": { + "end": { + "column": 42, + "line": 107 + }, + "start": { + "column": 7, + "line": 107 + } + } + }, + { + "id": "3893", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "148" + ], + "coveredBy": [ + "147", + "148", + "153" + ], + "location": { + "end": { + "column": 42, + "line": 107 + }, + "start": { + "column": 7, + "line": 107 + } + } + }, + { + "id": "3894", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "148" + ], + "coveredBy": [ + "148" + ], + "location": { + "end": { + "column": 4, + "line": 109 + }, + "start": { + "column": 44, + "line": 107 + } + } + }, + { + "id": "3895", + "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 \"\"", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "148" + ], + "coveredBy": [ + "148" + ], + "location": { + "end": { + "column": 71, + "line": 108 + }, + "start": { + "column": 23, + "line": 108 + } + } + }, + { + "id": "3896", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "149" + ], + "coveredBy": [ + "149", + "150", + "156", + "161" + ], + "location": { + "end": { + "column": 2, + "line": 118 + }, + "start": { + "column": 73, + "line": 113 + } + } + }, + { + "id": "3897", + "mutatorName": "BooleanLiteral", + "replacement": "gameLobbyAdditionalCardsManager.value", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "149" + ], + "coveredBy": [ + "149", + "150", + "156", + "161" + ], + "location": { + "end": { + "column": 45, + "line": 114 + }, + "start": { + "column": 7, + "line": 114 + } + } + }, + { + "id": "3898", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "149" + ], + "coveredBy": [ + "149", + "150", + "156", + "161" + ], + "location": { + "end": { + "column": 45, + "line": 114 + }, + "start": { + "column": 7, + "line": 114 + } + } + }, + { + "id": "3899", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "150" + ], + "coveredBy": [ + "149", + "150", + "156", + "161" + ], + "location": { + "end": { + "column": 45, + "line": 114 + }, + "start": { + "column": 7, + "line": 114 + } + } + }, + { + "id": "3900", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "150" + ], + "coveredBy": [ + "150" + ], + "location": { + "end": { + "column": 4, + "line": 116 + }, + "start": { + "column": 47, + "line": 114 + } + } + }, + { + "id": "3901", + "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 \"\"", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "150" + ], + "coveredBy": [ + "150" + ], + "location": { + "end": { + "column": 75, + "line": 115 + }, + "start": { + "column": 23, + "line": 115 + } + } + }, + { + "id": "3903", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "151" + ], + "coveredBy": [ + "151", + "152", + "153" + ], + "location": { + "end": { + "column": 29, + "line": 121 + }, + "start": { + "column": 7, + "line": 121 + } + } + }, + { + "id": "3902", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "151" + ], + "coveredBy": [ + "151", + "152", + "153" ], "location": { "end": { "column": 2, - "line": 42 + "line": 129 }, "start": { - "column": 57, - "line": 11 + "column": 65, + "line": 120 } } }, { - "id": "4326", + "id": "3904", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "152" + ], + "coveredBy": [ + "151", + "152", + "153" + ], + "location": { + "end": { + "column": 29, + "line": 121 + }, + "start": { + "column": 7, + "line": 121 + } + } + }, + { + "id": "3905", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "151" + ], + "coveredBy": [ + "151", + "152", + "153" + ], + "location": { + "end": { + "column": 29, + "line": 121 + }, + "start": { + "column": 7, + "line": 121 + } + } + }, + { + "id": "3906", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "151" + ], + "coveredBy": [ + "151" + ], + "location": { + "end": { + "column": 4, + "line": 123 + }, + "start": { + "column": 31, + "line": 121 + } + } + }, + { + "id": "3907", "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", - "status": "CompileError", + "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 \"\"", + "status": "Killed", "static": false, - "killedBy": [], + "testsCompleted": 1, + "killedBy": [ + "151" + ], "coveredBy": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25", - "26", - "27", - "28", - "29", - "30", - "31", - "32", - "33", - "34", - "35", - "36", - "37", - "38", - "39", - "40", - "41", - "42", - "43", - "44", - "45", - "46", - "47", - "48", - "49", - "50", - "51", - "52", - "53", - "54", - "55", - "56", - "57", - "58", - "59", - "60", - "61", - "62", - "63", - "64", - "65", - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "76", - "77", - "78", - "79", - "80", - "81", - "210", - "211", - "212", - "213", - "214", - "215", - "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "282", - "283", - "284", - "285", - "286", - "287", - "288", - "289", - "290", - "291", - "292", - "293", - "294", - "295", - "296", - "297", - "325", - "326", - "327", - "328", - "329", - "330", - "331", - "332", - "333", - "334", - "335", - "336", - "337", - "338", - "339", - "340", - "341", - "342", - "368", - "369", - "370", - "371", - "372", - "373", - "374", - "375", - "376", - "377", - "378", - "379", - "380", - "381", - "382", - "383", - "384", - "385", - "386", - "424", - "425", - "426", - "427", - "428", - "429", - "430", - "431", - "432", - "433", - "434", - "435", - "436", - "437", - "466", - "467", - "468", - "469", - "470", - "471", - "472", - "473", - "474", - "475", - "476", - "477", - "478", - "479", - "480", - "481", - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "549", - "550", - "551", - "552", - "553", - "554", - "555", - "556", - "557", - "558", - "559", - "560", - "561", - "562", - "563", - "564", - "565", - "566", - "567", - "636", - "637", - "638", - "639", - "640", - "641", - "642", - "643", - "644", - "645", - "646", - "647", - "648", - "649", - "650", - "651", - "652", - "653", - "654", - "655", - "656", - "657", - "658", - "659", - "660", - "661", - "662", - "663", - "664", - "665", - "666", - "674", - "675", - "676", - "677", - "678", - "679", - "680", - "681", - "682", - "683", - "684", - "685", - "686", - "687", - "688", - "689", - "690", - "691", - "692", - "693", - "694", - "695", - "696", - "697", - "698", - "699", - "700", - "744", - "745", - "746", - "747", - "748", - "749", - "750", - "751", - "752", - "753", - "754", - "755", - "785", - "786", - "787", - "788", - "789", - "790", - "791", - "792", - "793", - "794", - "795", - "796", - "797", - "798", - "799", - "815", - "816", - "817", - "818", - "819", - "820", - "821", - "822", - "823", - "824", - "825", - "916", - "917", - "918", - "919", - "920", - "921", - "922", - "923", - "924", - "925", - "926", - "927", - "928", - "929", - "930", - "931", - "932", - "933", - "934", - "935", - "936", - "937", - "938", - "961", - "962", - "963", - "964", - "965", - "966", - "967", - "968", - "969", - "970", - "971", - "999", - "1000", - "1001", - "1002", - "1003", - "1004", - "1005", - "1006", - "1007", - "1008", - "1020", - "1021", - "1022", - "1023", - "1024", - "1025", - "1026", - "1027", - "1028", - "1029", - "1039", - "1040", - "1041", - "1042", - "1043", - "1044", - "1045", - "1046", - "1047", - "1077", - "1078", - "1079", - "1080", - "1081", - "1082", - "1083", - "1084", - "1085", - "1086", - "1105", - "1106", - "1107", - "1108", - "1109", - "1110", - "1111", - "1112", - "1113", - "1140", - "1141", - "1142", - "1143", - "1144", - "1145", - "1146", - "1147", - "1148", - "1149", - "1150", - "1151", - "1152", - "1153", - "1154", - "1155", - "1156", - "1157", - "1158", - "1159", - "1160", - "1161", - "1162", - "1163", - "1164", - "1165", - "1166", - "1167", - "1168", - "1196", - "1197", - "1198", - "1199", - "1200", - "1201", - "1202", - "1203", - "1204", - "1251", - "1252", - "1253", - "1254", - "1255", - "1256", - "1268", - "1269", - "1270", - "1271", - "1279", - "1280", - "1281", - "1282", - "1283", - "1296", - "1297", - "1298", - "1299", - "1300", - "1301", - "1302", - "1303", - "1304", - "1305", - "1306", - "1307", - "1308", - "1309", - "1310", - "1311", - "1312", - "1313", - "1314", - "1315", - "1316", - "1317", - "1318", - "1325", - "1326", - "1327", - "1328", - "1329", - "1330", - "1331", - "1332", - "1333", - "1334", - "1335", - "1336", - "1337", - "1338", - "1339", - "1340", - "1341", - "1362", - "1363", - "1364", - "1365", - "1366", - "1367", - "1368", - "1369", - "1377", - "1378", - "1379", - "1380", - "1381", - "1382", - "1383", - "1384", - "1385", - "1386", - "1387", - "1388", - "1389", - "1390", - "1437", - "1438", - "1439", - "1440", - "1441", - "1442", - "1471", - "1472", - "1473", - "1474", - "1475", - "1476", - "1477", - "1478", - "1496", - "1497", - "1498", - "1499", - "1500", - "1512", - "1513", - "1514", - "1515", - "1516", - "1517", - "1518", - "1519", - "1520", - "1521", - "1522", - "1533", - "1534", - "1535", - "1536", - "1537", - "1538", - "1539", - "1540", - "1541", - "1542", - "1549", - "1550", - "1551", - "1552", - "1553", - "1554", - "1555", - "1556", - "1557", - "1558", - "1559", - "1560", - "1561", - "1562", - "1563", - "1564", - "1565", - "1566", - "1567", - "1568", - "1575", - "1576", - "1577", - "1578", - "1579", - "1580", - "1581", - "1582", - "1583", - "1584", - "1585", - "1586", - "1587", - "1588", - "1589", - "1590", - "1591", - "1592", - "1593", - "1594", - "1595", - "1596", - "1597", - "1598", - "1599", - "1600", - "1601", - "1602", - "1611", - "1612", - "1613", - "1614", - "1615", - "1660", - "1661", - "1662", - "1663", - "1674", - "1675", - "1911", - "1912", - "1913", - "1914", - "1915", - "1927", - "1928", - "1929", - "1930" + "151" + ], + "location": { + "end": { + "column": 57, + "line": 122 + }, + "start": { + "column": 23, + "line": 122 + } + } + }, + { + "id": "3908", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "153" + ], + "coveredBy": [ + "153" + ], + "location": { + "end": { + "column": 4, + "line": 128 + }, + "start": { + "column": 20, + "line": 126 + } + } + }, + { + "id": "3909", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "154" + ], + "coveredBy": [ + "154", + "155", + "156", + "157", + "158" + ], + "location": { + "end": { + "column": 2, + "line": 140 + }, + "start": { + "column": 64, + "line": 131 + } + } + }, + { + "id": "3910", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "154" + ], + "coveredBy": [ + "154", + "155", + "156", + "157", + "158" + ], + "location": { + "end": { + "column": 29, + "line": 132 + }, + "start": { + "column": 7, + "line": 132 + } + } + }, + { + "id": "3911", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "155" + ], + "coveredBy": [ + "154", + "155", + "156", + "157", + "158" + ], + "location": { + "end": { + "column": 29, + "line": 132 + }, + "start": { + "column": 7, + "line": 132 + } + } + }, + { + "id": "3912", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "154" + ], + "coveredBy": [ + "154", + "155", + "156", + "157", + "158" + ], + "location": { + "end": { + "column": 29, + "line": 132 + }, + "start": { + "column": 7, + "line": 132 + } + } + }, + { + "id": "3913", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "154" + ], + "coveredBy": [ + "154", + "157" + ], + "location": { + "end": { + "column": 4, + "line": 134 + }, + "start": { + "column": 31, + "line": 132 + } + } + }, + { + "id": "3914", + "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 \"\"", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "154" + ], + "coveredBy": [ + "154", + "157" ], "location": { "end": { - "column": 64, - "line": 14 + "column": 57, + "line": 133 }, "start": { - "column": 58, - "line": 14 + "column": 23, + "line": 133 } } }, { - "id": "4327", + "id": "3915", "mutatorName": "BlockStatement", "replacement": "{}", "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", - "testsCompleted": 1, "static": false, + "testsCompleted": 1, "killedBy": [ - "1326" + "156" ], "coveredBy": [ - "1326", - "1327" + "156", + "161" ], "location": { "end": { "column": 4, - "line": 21 + "line": 139 }, "start": { - "column": 52, - "line": 17 + "column": 20, + "line": 137 } } }, { - "id": "4328", - "mutatorName": "StringLiteral", - "replacement": "\"\"", - "statusReason": "app/stores/role/useRolesStore.ts(18,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", + "id": "3916", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", "static": false, - "killedBy": [], + "testsCompleted": 1, + "killedBy": [ + "159" + ], "coveredBy": [ - "1326", - "1327" + "159", + "160", + "161" ], "location": { "end": { - "column": 41, - "line": 18 + "column": 2, + "line": 151 }, "start": { - "column": 32, - "line": 18 + "column": 49, + "line": 142 } } }, { - "id": "4329", + "id": "3918", + "mutatorName": "ConditionalExpression", + "replacement": "true", + "statusReason": "Mocked error", + "status": "Killed", + "static": false, + "testsCompleted": 2, + "killedBy": [ + "160" + ], + "coveredBy": [ + "159", + "160", + "161" + ], + "location": { + "end": { + "column": 29, + "line": 143 + }, + "start": { + "column": 7, + "line": 143 + } + } + }, + { + "id": "3917", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "159" + ], + "coveredBy": [ + "159", + "160", + "161" + ], + "location": { + "end": { + "column": 29, + "line": 143 + }, + "start": { + "column": 7, + "line": 143 + } + } + }, + { + "id": "3919", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "159" + ], + "coveredBy": [ + "159", + "160", + "161" + ], + "location": { + "end": { + "column": 29, + "line": 143 + }, + "start": { + "column": 7, + "line": 143 + } + } + }, + { + "id": "3921", "mutatorName": "StringLiteral", "replacement": "\"\"", - "statusReason": "app/stores/role/useRolesStore.ts(20,5): error TS2322: Type '\"\"' is not assignable to type 'AsyncDataRequestStatus'.\n", - "status": "CompileError", + "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 \"\"", + "status": "Killed", "static": false, - "killedBy": [], + "testsCompleted": 1, + "killedBy": [ + "159" + ], "coveredBy": [ - "1326", - "1327" + "159" ], "location": { "end": { - "column": 41, - "line": 20 + "column": 57, + "line": 144 }, "start": { - "column": 32, - "line": 20 + "column": 23, + "line": 144 } } }, { - "id": "4330", + "id": "3920", "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", - "status": "CompileError", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", "static": false, - "killedBy": [], + "testsCompleted": 1, + "killedBy": [ + "159" + ], "coveredBy": [ - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "1328", - "1329", - "1333", - "1334" + "159" ], "location": { "end": { "column": 4, - "line": 25 + "line": 145 }, "start": { - "column": 73, - "line": 23 + "column": 31, + "line": 143 } } }, { - "id": "4331", - "mutatorName": "OptionalChaining", - "replacement": "roles.value.find", - "statusReason": "app/stores/role/useRolesStore.ts(24,12): error TS18047: 'roles.value' is possibly 'null'.\n", - "status": "CompileError", + "id": "3922", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", "static": false, - "killedBy": [], + "testsCompleted": 1, + "killedBy": [ + "161" + ], "coveredBy": [ - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "1328", - "1329", - "1333", - "1334" + "161" + ], + "location": { + "end": { + "column": 4, + "line": 150 + }, + "start": { + "column": 20, + "line": 148 + } + } + }, + { + "id": "3923", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 29, + "killedBy": [ + "162" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 2, + "line": 164 + }, + "start": { + "column": 45, + "line": 153 + } + } + }, + { + "id": "3925", + "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", + "status": "Killed", + "static": false, + "testsCompleted": 29, + "killedBy": [ + "162" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 43, + "line": 155 + }, + "start": { + "column": 7, + "line": 155 + } + } + }, + { + "id": "3927", + "mutatorName": "StringLiteral", + "replacement": "\"\"", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", + "static": false, + "testsCompleted": 29, + "killedBy": [ + "162" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" ], "location": { "end": { + "column": 42, + "line": 155 + }, + "start": { "column": 29, - "line": 24 + "line": 155 + } + } + }, + { + "id": "3930", + "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]", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "162" + ], + "coveredBy": [ + "162" + ], + "location": { + "end": { + "column": 4, + "line": 163 }, "start": { - "column": 12, - "line": 24 + "column": 92, + "line": 159 } } }, { - "id": "4332", + "id": "3929", "mutatorName": "ArrowFunction", "replacement": "() => undefined", - "statusReason": "expected false to be true // Object.is equality", + "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]", "status": "Killed", + "static": false, "testsCompleted": 1, + "killedBy": [ + "162" + ], + "coveredBy": [ + "162" + ], + "location": { + "end": { + "column": 5, + "line": 163 + }, + "start": { + "column": 73, + "line": 159 + } + } + }, + { + "id": "3933", + "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}", + "status": "Killed", "static": false, + "testsCompleted": 1, "killedBy": [ - "66" + "136" ], "coveredBy": [ - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "1328", - "1329", - "1333", - "1334" + "136", + "153" ], "location": { "end": { - "column": 60, - "line": 24 + "column": 53, + "line": 168 }, "start": { - "column": 30, - "line": 24 + "column": 16, + "line": 168 } } }, { - "id": "4333", - "mutatorName": "ConditionalExpression", - "replacement": "true", - "statusReason": "expected true to be false // Object.is equality", + "id": "3934", + "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}", "status": "Killed", - "testsCompleted": 3, "static": false, + "testsCompleted": 1, "killedBy": [ - "67" + "136" ], "coveredBy": [ - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "1328", - "1329", - "1333", - "1334" + "136", + "153" ], "location": { "end": { - "column": 60, - "line": 24 + "column": 51, + "line": 169 }, "start": { - "column": 38, - "line": 24 + "column": 15, + "line": 169 } } }, { - "id": "4334", + "id": "3924", + "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\".", + "status": "Killed", + "static": false, + "testsCompleted": 1, + "killedBy": [ + "134" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 43, + "line": 155 + }, + "start": { + "column": 7, + "line": 155 + } + } + }, + { + "id": "3926", "mutatorName": "ConditionalExpression", "replacement": "false", - "statusReason": "expected false to be true // Object.is equality", + "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\".", "status": "Killed", + "static": false, "testsCompleted": 1, + "killedBy": [ + "134" + ], + "coveredBy": [ + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" + ], + "location": { + "end": { + "column": 43, + "line": 155 + }, + "start": { + "column": 7, + "line": 155 + } + } + }, + { + "id": "3937", + "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", + "status": "Killed", "static": false, + "testsCompleted": 3, "killedBy": [ - "66" + "136" ], "coveredBy": [ - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "1328", - "1329", - "1333", - "1334" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" ], "location": { "end": { - "column": 60, - "line": 24 + "column": 28, + "line": 180 }, "start": { - "column": 38, - "line": 24 + "column": 7, + "line": 180 } } }, { - "id": "4335", - "mutatorName": "EqualityOperator", - "replacement": "role.name !== roleName", - "statusReason": "expected false to be true // Object.is equality", + "id": "3936", + "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", "status": "Killed", - "testsCompleted": 1, "static": false, + "testsCompleted": 3, "killedBy": [ - "66" + "136" ], "coveredBy": [ - "66", - "67", - "68", - "69", - "70", - "71", - "72", - "73", - "74", - "75", - "1328", - "1329", - "1333", - "1334" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" ], "location": { "end": { - "column": 60, - "line": 24 + "column": 28, + "line": 180 }, "start": { - "column": 38, - "line": 24 + "column": 7, + "line": 180 } } }, { - "id": "4336", + "id": "3935", "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", - "status": "CompileError", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", "static": false, - "killedBy": [], + "testsCompleted": 3, + "killedBy": [ + "136" + ], "coveredBy": [ - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "1330", - "1331", - "1332" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" ], "location": { "end": { - "column": 4, - "line": 29 + "column": 2, + "line": 186 }, "start": { - "column": 105, - "line": 27 + "column": 17, + "line": 179 } } }, { - "id": "4337", - "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", - "status": "CompileError", + "id": "3938", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", "static": false, - "killedBy": [], + "testsCompleted": 1, + "killedBy": [ + "136" + ], "coveredBy": [ - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "1330", - "1331", - "1332" + "136", + "138" ], "location": { "end": { - "column": 114, - "line": 28 + "column": 4, + "line": 185 }, "start": { - "column": 12, - "line": 28 + "column": 30, + "line": 180 } } }, { - "id": "4338", - "mutatorName": "MethodExpression", - "replacement": "roles.value", - "statusReason": "expected [ { …(3) }, …(4) ] to strictly equal [ { …(3) }, …(2) ]", + "id": "3939", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", "status": "Killed", - "testsCompleted": 3, "static": false, + "testsCompleted": 1, "killedBy": [ - "525" + "136" ], "coveredBy": [ - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "1330", - "1331", - "1332" + "136", + "153" ], "location": { "end": { - "column": 108, - "line": 28 + "column": 6, + "line": 184 }, "start": { - "column": 12, - "line": 28 + "column": 22, + "line": 182 } } }, { - "id": "4339", - "mutatorName": "OptionalChaining", - "replacement": "roles.value.filter", - "statusReason": "app/stores/role/useRolesStore.ts(28,12): error TS18047: 'roles.value' is possibly 'null'.\n", - "status": "CompileError", + "id": "3928", + "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\".", + "status": "Killed", "static": false, - "killedBy": [], + "testsCompleted": 1, + "killedBy": [ + "134" + ], "coveredBy": [ - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "1330", - "1331", - "1332" + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163" ], "location": { "end": { - "column": 31, - "line": 28 + "column": 4, + "line": 157 }, "start": { - "column": 12, - "line": 28 + "column": 45, + "line": 155 } } }, { - "id": "4340", - "mutatorName": "ArrowFunction", - "replacement": "() => undefined", - "statusReason": "expected [] to strictly equal [ { …(3) }, …(2) ]", + "id": "3932", + "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 {}", "status": "Killed", - "testsCompleted": 3, "static": false, + "testsCompleted": 1, "killedBy": [ - "525" + "136" ], "coveredBy": [ - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "1330", - "1331" + "136", + "153" ], "location": { "end": { - "column": 107, - "line": 28 + "column": 4, + "line": 171 }, "start": { - "column": 32, - "line": 28 + "column": 16, + "line": 167 } } }, { - "id": "4341", - "mutatorName": "OptionalChaining", - "replacement": "role.additionalCardsEligibleRecipients.includes", - "statusReason": "app/stores/role/useRolesStore.ts(28,40): error TS18048: 'role.additionalCardsEligibleRecipients' is possibly 'undefined'.\n", - "status": "CompileError", + "id": "3931", + "mutatorName": "BlockStatement", + "replacement": "{}", + "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times", + "status": "Killed", "static": false, - "killedBy": [], + "testsCompleted": 1, + "killedBy": [ + "136" + ], "coveredBy": [ - "523", - "524", - "525", - "526", - "527", - "528", - "529", - "530", - "531", - "532", - "533", - "1330", - "1331" + "136", + "153" ], "location": { "end": { - "column": 88, - "line": 28 + "column": 2, + "line": 172 }, "start": { - "column": 40, - "line": 28 + "column": 43, + "line": 166 } } - }, + } + ], + "source": "\n\n" + }, + "app/composables/api/game/dto/create-game/create-game-player/create-game-player-side.dto.ts": { + "language": "typescript", + "mutants": [ { - "id": "4342", - "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", + "id": "3128", + "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", "status": "CompileError", - "static": false, - "killedBy": [], + "static": true, "coveredBy": [ - "1332" + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "54", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "142", + "144", + "162", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "373", + "374", + "375", + "376", + "380", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "471", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "560", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "751", + "755", + "790", + "791", + "792", + "794", + "795", + "796", + "797", + "799", + "800", + "938", + "941", + "1370", + "1518", + "1519", + "1520", + "1581", + "1685", + "1937", + "1938", + "1968" ], "location": { "end": { - "column": 114, - "line": 28 + "column": 4, + "line": 15 }, "start": { - "column": 112, - "line": 28 + "column": 99, + "line": 13 } } - }, + } + ], + "source": "import { Expose, plainToInstance } from \"class-transformer\";\n\nimport type { RoleSide } from \"~/composables/api/role/types/role.types\";\nimport { DEFAULT_PLAIN_TO_INSTANCE_OPTIONS } from \"~/utils/constants/class-transformer.constants\";\n\nclass CreateGamePlayerSideDto {\n @Expose()\n public original?: RoleSide;\n\n @Expose()\n public current?: RoleSide;\n\n public static create(createGamePlayerSideDto: CreateGamePlayerSideDto): CreateGamePlayerSideDto {\n return plainToInstance(CreateGamePlayerSideDto, createGamePlayerSideDto, DEFAULT_PLAIN_TO_INSTANCE_OPTIONS);\n }\n}\n\nexport { CreateGamePlayerSideDto };" + }, + "app/composables/api/game/dto/create-game/create-game-player/create-game-player-role.dto.ts": { + "language": "typescript", + "mutants": [ { - "id": "4343", + "id": "3127", "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", + "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", "status": "CompileError", - "static": false, - "killedBy": [], + "static": true, "coveredBy": [ - "1333", - "1334" + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "54", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "142", + "144", + "162", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "373", + "374", + "375", + "376", + "380", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "471", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "560", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "751", + "755", + "790", + "791", + "792", + "794", + "795", + "796", + "797", + "799", + "800", + "938", + "941", + "1370", + "1518", + "1519", + "1520", + "1581", + "1685", + "1937", + "1938", + "1968" ], "location": { "end": { "column": 4, - "line": 33 + "line": 12 }, "start": { - "column": 77, - "line": 31 + "column": 99, + "line": 10 } } - }, + } + ], + "source": "import { Expose, plainToInstance } from \"class-transformer\";\n\nimport type { RoleName } from \"~/composables/api/role/types/role.types\";\nimport { DEFAULT_PLAIN_TO_INSTANCE_OPTIONS } from \"~/utils/constants/class-transformer.constants\";\n\nclass CreateGamePlayerRoleDto {\n @Expose()\n public name?: RoleName;\n\n public static create(createGamePlayerRoleDto: CreateGamePlayerRoleDto): CreateGamePlayerRoleDto {\n return plainToInstance(CreateGamePlayerRoleDto, createGamePlayerRoleDto, DEFAULT_PLAIN_TO_INSTANCE_OPTIONS);\n }\n}\n\nexport { CreateGamePlayerRoleDto };" + }, + "app/composables/api/game/dto/create-game/create-game-player/create-game-player.dto.ts": { + "language": "typescript", + "mutants": [ { - "id": "4344", - "mutatorName": "OptionalChaining", - "replacement": "getRoleWithNameInRoles(roleName).side", - "statusReason": "app/stores/role/useRolesStore.ts(32,12): error TS2532: Object is possibly 'undefined'.\n", + "id": "3129", + "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", "status": "CompileError", - "static": false, - "killedBy": [], + "static": true, "coveredBy": [ - "1333", - "1334" + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "54", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "142", + "144", + "162", + "291", + "292", + "293", + "294", + "295", + "296", + "297", + "298", + "299", + "300", + "334", + "335", + "336", + "337", + "338", + "339", + "340", + "341", + "373", + "374", + "375", + "376", + "380", + "427", + "428", + "429", + "430", + "431", + "432", + "433", + "434", + "435", + "436", + "437", + "438", + "439", + "440", + "471", + "477", + "478", + "479", + "480", + "481", + "482", + "483", + "484", + "560", + "561", + "677", + "678", + "679", + "680", + "681", + "682", + "683", + "684", + "685", + "686", + "687", + "751", + "755", + "779", + "780", + "781", + "782", + "783", + "784", + "785", + "786", + "787", + "790", + "791", + "792", + "794", + "795", + "796", + "797", + "799", + "800", + "938", + "941", + "1370", + "1518", + "1519", + "1520", + "1581", + "1685", + "1937", + "1938", + "1968" ], "location": { "end": { - "column": 50, - "line": 32 + "column": 4, + "line": 24 }, "start": { - "column": 12, - "line": 32 + "column": 87, + "line": 22 } } - }, + } + ], + "source": "import { Expose, plainToInstance, Type } from \"class-transformer\";\n\nimport { CreateGamePlayerRoleDto } from \"~/composables/api/game/dto/create-game/create-game-player/create-game-player-role.dto\";\nimport { CreateGamePlayerSideDto } from \"~/composables/api/game/dto/create-game/create-game-player/create-game-player-side.dto\";\nimport { DEFAULT_PLAIN_TO_INSTANCE_OPTIONS } from \"~/utils/constants/class-transformer.constants\";\n\nclass CreateGamePlayerDto {\n @Expose()\n public name: string;\n\n @Type(() => CreateGamePlayerRoleDto)\n @Expose()\n public role: CreateGamePlayerRoleDto;\n\n @Type(() => CreateGamePlayerSideDto)\n @Expose()\n public side: CreateGamePlayerSideDto;\n\n @Expose()\n public group?: string;\n\n public static create(createGamePlayerDto: CreateGamePlayerDto): CreateGamePlayerDto {\n return plainToInstance(CreateGamePlayerDto, createGamePlayerDto, DEFAULT_PLAIN_TO_INSTANCE_OPTIONS);\n }\n}\n\nexport { CreateGamePlayerDto };" + }, + "app/composables/api/useWerewolvesAssistantApi.ts": { + "language": "typescript", + "mutants": [ { - "id": "4345", - "mutatorName": "ObjectLiteral", + "id": "3776", + "mutatorName": "BlockStatement", "replacement": "{}", - "statusReason": "app/composables/api/game/useCreateGameDtoValidation.ts(30,11): error TS2339: Property 'roles' does not exist on type 'StoreToRefs>, Pick<{}, never>, Pick<{}, never>>>'.\napp/composables/api/game/useCreateGameDtoValidation.ts(46,57): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(48,42): error TS7006: Parameter 'role' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(55,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\napp/composables/api/game/useCreateGameDtoValidation.ts(64,38): error TS7031: Binding element 'name' implicitly has an 'any' type.\napp/stores/game/create-game-dto/useCreateGameDtoStore.ts(22,11): error TS2339: Property 'getRoleWithNameInRoles' does not exist on type '_StoreWithState>, Pick<{}, never>, Pick<{}, never>> & _UnwrapAll> & _StoreWithGetters<...> & PiniaCustomProperties<...> & PiniaCustomStateProperties<...>'.\ntests/unit/specs/app.nuxt.spec.ts(48,23): error TS2339: Property 'fetchAndSetRoles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\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/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts(102,16): error TS2339: Property 'roles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(123,18): error TS2339: Property 'roles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts(138,18): 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/game/create-game-dto/useCreateGameDtoStore.spec.ts(432,18): error TS2339: Property 'roles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(508,18): error TS2339: Property 'roles' does not exist on type 'Store>, Pick<{}, never>, Pick<{}, never>>'.\ntests/unit/specs/stores/game/create-game-dto/useCreateGameDtoStore.spec.ts(565,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", + "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", "status": "CompileError", - "static": false, - "killedBy": [], + "static": true, "coveredBy": [ "0", "1", @@ -221613,6 +221536,106 @@ "79", "80", "81", + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167", + "168", + "169", + "170", + "171", + "172", + "173", + "174", + "175", + "176", + "177", + "178", + "179", + "180", + "181", + "182", + "183", + "184", + "185", + "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -221620,26 +221643,48 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", + "240", + "241", + "242", + "243", + "244", + "245", + "246", + "247", + "248", + "249", + "250", + "251", + "252", + "253", + "254", + "255", + "256", + "257", + "258", + "259", + "260", + "261", + "262", + "263", + "264", + "265", + "266", + "267", + "268", + "269", + "270", + "271", + "272", + "273", + "274", + "275", + "276", + "277", + "278", + "279", + "280", + "281", "282", "283", "284", @@ -221656,9 +221701,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -221674,9 +221719,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -221693,9 +221738,31 @@ "384", "385", "386", - "424", - "425", - "426", + "387", + "388", + "389", + "390", + "391", + "392", + "393", + "394", + "395", + "396", + "397", + "398", + "399", + "400", + "401", + "402", + "403", + "404", + "405", + "406", + "407", + "408", + "409", + "410", + "411", "427", "428", "429", @@ -221707,6 +221774,34 @@ "435", "436", "437", + "438", + "439", + "440", + "441", + "442", + "443", + "444", + "445", + "446", + "447", + "448", + "449", + "450", + "451", + "452", + "453", + "454", + "455", + "456", + "457", + "458", + "459", + "460", + "461", + "462", + "463", + "464", + "465", "466", "467", "468", @@ -221723,6 +221818,47 @@ "479", "480", "481", + "482", + "483", + "484", + "485", + "486", + "487", + "488", + "489", + "490", + "491", + "492", + "493", + "494", + "495", + "496", + "497", + "498", + "499", + "500", + "501", + "502", + "503", + "504", + "505", + "506", + "507", + "508", + "509", + "510", + "511", + "512", + "513", + "514", + "515", + "516", + "517", + "518", + "519", + "520", + "521", + "522", "523", "524", "525", @@ -221734,6 +221870,21 @@ "531", "532", "533", + "534", + "535", + "536", + "537", + "538", + "539", + "540", + "541", + "542", + "543", + "544", + "545", + "546", + "547", + "548", "549", "550", "551", @@ -221753,9 +221904,9 @@ "565", "566", "567", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -221784,6 +221935,13 @@ "664", "665", "666", + "667", + "668", + "669", + "670", + "671", + "672", + "673", "674", "675", "676", @@ -221811,6 +221969,38 @@ "698", "699", "700", + "701", + "702", + "703", + "704", + "705", + "706", + "707", + "708", + "709", + "710", + "711", + "712", + "713", + "725", + "726", + "727", + "728", + "729", + "730", + "731", + "732", + "733", + "734", + "735", + "736", + "737", + "738", + "739", + "740", + "741", + "742", + "743", "744", "745", "746", @@ -221823,9 +222013,24 @@ "753", "754", "755", - "785", - "786", - "787", + "756", + "757", + "758", + "759", + "760", + "761", + "762", + "763", + "764", + "765", + "766", + "767", + "768", + "769", + "770", + "771", + "772", + "773", "788", "789", "790", @@ -221838,9 +222043,18 @@ "797", "798", "799", - "815", - "816", - "817", + "800", + "801", + "802", + "803", + "804", + "805", + "806", + "807", + "808", + "809", + "810", + "811", "818", "819", "820", @@ -221849,6 +222063,63 @@ "823", "824", "825", + "826", + "827", + "828", + "829", + "830", + "831", + "832", + "833", + "834", + "835", + "836", + "837", + "838", + "839", + "840", + "841", + "842", + "843", + "844", + "845", + "879", + "880", + "881", + "882", + "883", + "884", + "885", + "886", + "887", + "888", + "889", + "890", + "891", + "892", + "893", + "894", + "895", + "896", + "897", + "898", + "899", + "900", + "901", + "902", + "903", + "904", + "905", + "906", + "907", + "908", + "909", + "910", + "911", + "912", + "913", + "914", + "915", "916", "917", "918", @@ -221872,9 +222143,10 @@ "936", "937", "938", - "961", - "962", - "963", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -221883,9 +222155,28 @@ "969", "970", "971", - "999", - "1000", - "1001", + "972", + "973", + "974", + "975", + "976", + "977", + "978", + "979", + "980", + "981", + "982", + "983", + "984", + "985", + "986", + "987", + "988", + "989", + "990", + "991", + "992", + "993", "1002", "1003", "1004", @@ -221893,9 +222184,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -221903,6 +222194,15 @@ "1027", "1028", "1029", + "1030", + "1031", + "1032", + "1033", + "1034", + "1035", + "1036", + "1037", + "1038", "1039", "1040", "1041", @@ -221912,6 +222212,31 @@ "1045", "1046", "1047", + "1048", + "1049", + "1050", + "1051", + "1052", + "1053", + "1054", + "1055", + "1056", + "1057", + "1058", + "1059", + "1060", + "1061", + "1062", + "1063", + "1068", + "1069", + "1070", + "1071", + "1072", + "1073", + "1074", + "1075", + "1076", "1077", "1078", "1079", @@ -221922,18 +222247,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -221960,33 +222285,70 @@ "1166", "1167", "1168", - "1196", - "1197", - "1198", + "1169", + "1170", + "1171", + "1172", + "1173", + "1174", + "1175", + "1176", + "1177", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", - "1251", - "1252", - "1253", + "1205", + "1206", + "1207", + "1217", + "1218", + "1219", + "1220", + "1221", + "1222", + "1233", + "1234", + "1235", + "1236", + "1237", + "1238", + "1239", + "1240", + "1241", + "1242", + "1243", + "1244", + "1245", + "1247", "1254", "1255", "1256", - "1268", - "1269", + "1257", + "1258", + "1259", "1270", "1271", + "1272", + "1273", + "1274", + "1275", + "1276", + "1277", + "1278", "1279", "1280", "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -222007,34 +222369,30 @@ "1316", "1317", "1318", + "1319", + "1320", + "1321", + "1322", + "1323", + "1324", "1325", "1326", "1327", - "1328", - "1329", - "1330", - "1331", - "1332", - "1333", - "1334", - "1335", - "1336", - "1337", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -222046,12 +222404,53 @@ "1388", "1389", "1390", + "1391", + "1392", + "1393", + "1394", + "1395", + "1396", + "1397", + "1398", + "1399", + "1400", + "1401", + "1402", + "1403", + "1404", + "1405", + "1406", + "1407", + "1408", + "1409", + "1410", + "1411", + "1412", + "1413", + "1414", + "1415", + "1435", + "1436", "1437", "1438", "1439", "1440", "1441", "1442", + "1443", + "1444", + "1445", + "1451", + "1452", + "1453", + "1454", + "1455", + "1456", + "1466", + "1467", + "1468", + "1469", + "1470", "1471", "1472", "1473", @@ -222060,11 +222459,39 @@ "1476", "1477", "1478", + "1479", + "1480", + "1481", + "1482", + "1483", + "1484", + "1485", + "1486", + "1487", + "1488", + "1489", + "1490", + "1491", + "1492", + "1493", + "1494", + "1495", "1496", "1497", "1498", "1499", "1500", + "1501", + "1502", + "1503", + "1504", + "1505", + "1506", + "1507", + "1508", + "1509", + "1510", + "1511", "1512", "1513", "1514", @@ -222076,6 +222503,11 @@ "1520", "1521", "1522", + "1523", + "1524", + "1525", + "1531", + "1532", "1533", "1534", "1535", @@ -222086,6 +222518,12 @@ "1540", "1541", "1542", + "1543", + "1544", + "1545", + "1546", + "1547", + "1548", "1549", "1550", "1551", @@ -222106,6 +222544,12 @@ "1566", "1567", "1568", + "1569", + "1570", + "1571", + "1572", + "1573", + "1574", "1575", "1576", "1577", @@ -222134,52 +222578,132 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", + "1616", + "1617", + "1618", + "1619", + "1620", + "1621", + "1622", + "1629", + "1653", + "1654", + "1655", + "1656", + "1657", + "1658", + "1659", "1660", "1661", "1662", "1663", + "1664", + "1665", + "1666", + "1673", "1674", "1675", + "1676", + "1677", + "1678", + "1688", + "1689", + "1690", + "1691", + "1692", + "1693", + "1694", + "1695", + "1702", + "1703", + "1704", + "1705", + "1706", + "1716", + "1717", + "1718", + "1719", + "1720", + "1725", + "1726", + "1727", + "1728", + "1729", + "1737", + "1738", + "1739", + "1740", + "1741", + "1757", + "1758", + "1759", + "1760", + "1761", + "1769", + "1770", + "1771", + "1772", + "1773", + "1774", + "1776", + "1780", + "1814", + "1815", + "1816", + "1817", + "1818", + "1819", + "1820", + "1821", + "1846", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", + "1877", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", "1911", - "1912", - "1913", "1914", "1915", - "1927", - "1928", - "1929", - "1930" + "1916", + "1917", + "1918", + "1930", + "1931", + "1932", + "1933", + "2029" ], "location": { "end": { - "column": 4, - "line": 41 + "column": 2, + "line": 22 }, "start": { - "column": 10, - "line": 34 + "column": 65, + "line": 10 } } - } - ], - "source": "import type { AsyncDataRequestStatus } from \"nuxt/app\";\nimport { defineStore } from \"pinia\";\nimport { ref } from \"vue\";\nimport type { GameAdditionalCardRecipientRoleName } from \"~/composables/api/game/types/game-additional-card/game-additional-card.types\";\n\nimport type { Role } from \"~/composables/api/role/types/role.class\";\nimport type { RoleName, RoleSide } from \"~/composables/api/role/types/role.types\";\nimport { useFetchRoles } from \"~/composables/api/role/useFetchRoles\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\n\nconst useRolesStore = defineStore(StoreIds.ROLES, () => {\n const { fetchRoles } = useFetchRoles();\n\n const fetchingRoleStatus = ref(\"idle\");\n const roles = ref(null);\n\n async function fetchAndSetRoles(): Promise {\n fetchingRoleStatus.value = \"pending\";\n roles.value = await fetchRoles();\n fetchingRoleStatus.value = \"success\";\n }\n\n function getRoleWithNameInRoles(roleName: RoleName): Role | undefined {\n return roles.value?.find(role => role.name === roleName);\n }\n\n function getRolesForRecipientRoleName(recipientRoleName: GameAdditionalCardRecipientRoleName): Role[] {\n return roles.value?.filter(role => role.additionalCardsEligibleRecipients?.includes(recipientRoleName)) ?? [];\n }\n\n function getRoleSideForRoleName(roleName: RoleName): RoleSide | undefined {\n return getRoleWithNameInRoles(roleName)?.side;\n }\n return {\n roles,\n fetchingRoleStatus,\n fetchAndSetRoles,\n getRoleWithNameInRoles,\n getRolesForRecipientRoleName,\n getRoleSideForRoleName,\n };\n});\n\nexport { useRolesStore };" - }, - "app/utils/url.utils.ts": { - "language": "typescript", - "mutants": [ + }, { - "id": "4346", - "mutatorName": "BlockStatement", + "id": "3780", + "mutatorName": "ObjectLiteral", "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", + "statusReason": "app/composables/api/useWerewolvesAssistantApi.ts(21,3): error TS2741: Property 'fetchWerewolvesAssistantApi' is missing in type '{}' but required in type 'UseWerewolvesAssistantApi'.\n", "status": "CompileError", "static": true, - "killedBy": [], "coveredBy": [ "0", "1", @@ -222340,6 +222864,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -222347,29 +222894,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -222428,9 +222952,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -222446,9 +222970,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -222487,9 +223011,9 @@ "406", "407", "408", - "424", - "425", - "426", + "409", + "410", + "411", "427", "428", "429", @@ -222631,21 +223155,9 @@ "565", "566", "567", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -222718,9 +223230,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -222767,9 +223279,9 @@ "768", "769", "770", - "785", - "786", - "787", + "771", + "772", + "773", "788", "789", "790", @@ -222791,9 +223303,9 @@ "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -222819,9 +223331,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -222882,10 +223394,10 @@ "936", "937", "938", - "953", - "961", - "962", - "963", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -222913,9 +223425,9 @@ "988", "989", "990", - "999", - "1000", - "1001", + "991", + "992", + "993", "1002", "1003", "1004", @@ -222923,9 +223435,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -222964,9 +223476,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -222986,18 +223498,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -223033,24 +223545,24 @@ "1175", "1176", "1177", - "1196", - "1197", - "1198", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", + "1205", + "1206", + "1207", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -223061,16 +223573,16 @@ "1240", "1241", "1242", + "1243", "1244", - "1251", - "1252", - "1253", + "1245", + "1247", "1254", "1255", "1256", - "1267", - "1268", - "1269", + "1257", + "1258", + "1259", "1270", "1271", "1272", @@ -223085,9 +223597,9 @@ "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -223114,24 +223626,24 @@ "1322", "1323", "1324", - "1335", - "1336", - "1337", + "1325", + "1326", + "1327", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -223165,9 +223677,9 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", "1437", @@ -223176,15 +223688,15 @@ "1440", "1441", "1442", - "1448", - "1449", - "1450", + "1443", + "1444", + "1445", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", @@ -223242,9 +223754,9 @@ "1520", "1521", "1522", - "1528", - "1529", - "1530", + "1523", + "1524", + "1525", "1531", "1532", "1533", @@ -223317,27 +223829,19 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", "1619", - "1626", - "1627", - "1628", + "1620", + "1621", + "1622", "1629", - "1630", - "1631", - "1632", - "1633", - "1634", - "1650", - "1651", - "1652", "1653", "1654", "1655", @@ -223349,110 +223853,107 @@ "1661", "1662", "1663", - "1670", - "1671", - "1672", + "1664", + "1665", + "1666", "1673", "1674", "1675", - "1685", - "1686", - "1687", + "1676", + "1677", + "1678", "1688", "1689", "1690", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", "1911", - "1912", - "1913", "1914", "1915", - "1927", - "1928", - "1929", + "1916", + "1917", + "1918", "1930", - "2026", - "2058" + "1931", + "1932", + "1933", + "2029" ], "location": { "end": { - "column": 2, - "line": 3 + "column": 41, + "line": 21 }, "start": { - "column": 53, - "line": 1 + "column": 10, + "line": 21 } } }, { - "id": "4347", - "mutatorName": "Regex", - "replacement": "/\\/+/u", - "statusReason": "Snapshot `Role Image Component > should match snapshot when rendered. 1` mismatched", - "status": "Killed", - "testsCompleted": 663, + "id": "3777", + "mutatorName": "ObjectLiteral", + "replacement": "{}", + "status": "Timeout", "static": true, - "killedBy": [ - "1627" - ], "coveredBy": [ "0", "1", @@ -223613,6 +224114,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -223620,29 +224144,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -223701,9 +224202,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -223719,9 +224220,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -223760,9 +224261,9 @@ "406", "407", "408", - "424", - "425", - "426", + "409", + "410", + "411", "427", "428", "429", @@ -223904,21 +224405,9 @@ "565", "566", "567", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -223991,9 +224480,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -224040,9 +224529,9 @@ "768", "769", "770", - "785", - "786", - "787", + "771", + "772", + "773", "788", "789", "790", @@ -224064,9 +224553,9 @@ "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -224092,9 +224581,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -224155,10 +224644,10 @@ "936", "937", "938", - "953", - "961", - "962", - "963", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -224186,9 +224675,9 @@ "988", "989", "990", - "999", - "1000", - "1001", + "991", + "992", + "993", "1002", "1003", "1004", @@ -224196,9 +224685,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -224237,9 +224726,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -224259,18 +224748,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -224306,24 +224795,24 @@ "1175", "1176", "1177", - "1196", - "1197", - "1198", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", + "1205", + "1206", + "1207", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -224334,16 +224823,16 @@ "1240", "1241", "1242", + "1243", "1244", - "1251", - "1252", - "1253", + "1245", + "1247", "1254", "1255", "1256", - "1267", - "1268", - "1269", + "1257", + "1258", + "1259", "1270", "1271", "1272", @@ -224358,9 +224847,9 @@ "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -224387,24 +224876,24 @@ "1322", "1323", "1324", - "1335", - "1336", - "1337", + "1325", + "1326", + "1327", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -224438,9 +224927,9 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", "1437", @@ -224449,15 +224938,15 @@ "1440", "1441", "1442", - "1448", - "1449", - "1450", + "1443", + "1444", + "1445", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", @@ -224515,9 +225004,9 @@ "1520", "1521", "1522", - "1528", - "1529", - "1530", + "1523", + "1524", + "1525", "1531", "1532", "1533", @@ -224590,27 +225079,19 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", "1619", - "1626", - "1627", - "1628", + "1620", + "1621", + "1622", "1629", - "1630", - "1631", - "1632", - "1633", - "1634", - "1650", - "1651", - "1652", "1653", "1654", "1655", @@ -224622,106 +225103,107 @@ "1661", "1662", "1663", - "1670", - "1671", - "1672", + "1664", + "1665", + "1666", "1673", "1674", "1675", - "1685", - "1686", - "1687", + "1676", + "1677", + "1678", "1688", "1689", "1690", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", "1911", - "1912", - "1913", "1914", "1915", - "1927", - "1928", - "1929", + "1916", + "1917", + "1918", "1930", - "2026", - "2058" + "1931", + "1932", + "1933", + "2029" ], "location": { "end": { - "column": 29, - "line": 2 + "column": 4, + "line": 19 }, "start": { - "column": 22, - "line": 2 + "column": 60, + "line": 15 } } }, { - "id": "4348", - "mutatorName": "Regex", - "replacement": "/\\/$/u", + "id": "3778", + "mutatorName": "ObjectLiteral", + "replacement": "{}", "status": "Timeout", "static": true, - "killedBy": [], "coveredBy": [ "0", "1", @@ -224882,6 +225364,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -224889,29 +225394,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -224970,9 +225452,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -224988,9 +225470,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -225029,9 +225511,9 @@ "406", "407", "408", - "424", - "425", - "426", + "409", + "410", + "411", "427", "428", "429", @@ -225173,21 +225655,9 @@ "565", "566", "567", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -225260,9 +225730,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -225309,9 +225779,9 @@ "768", "769", "770", - "785", - "786", - "787", + "771", + "772", + "773", "788", "789", "790", @@ -225333,9 +225803,9 @@ "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -225361,9 +225831,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -225424,10 +225894,10 @@ "936", "937", "938", - "953", - "961", - "962", - "963", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -225455,9 +225925,9 @@ "988", "989", "990", - "999", - "1000", - "1001", + "991", + "992", + "993", "1002", "1003", "1004", @@ -225465,9 +225935,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -225506,9 +225976,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -225528,18 +225998,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -225575,24 +226045,24 @@ "1175", "1176", "1177", - "1196", - "1197", - "1198", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", + "1205", + "1206", + "1207", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -225603,16 +226073,16 @@ "1240", "1241", "1242", + "1243", "1244", - "1251", - "1252", - "1253", + "1245", + "1247", "1254", "1255", "1256", - "1267", - "1268", - "1269", + "1257", + "1258", + "1259", "1270", "1271", "1272", @@ -225627,9 +226097,9 @@ "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -225656,24 +226126,24 @@ "1322", "1323", "1324", - "1335", - "1336", - "1337", + "1325", + "1326", + "1327", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -225707,9 +226177,9 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", "1437", @@ -225718,15 +226188,15 @@ "1440", "1441", "1442", - "1448", - "1449", - "1450", + "1443", + "1444", + "1445", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", @@ -225784,9 +226254,9 @@ "1520", "1521", "1522", - "1528", - "1529", - "1530", + "1523", + "1524", + "1525", "1531", "1532", "1533", @@ -225859,27 +226329,19 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", "1619", - "1626", - "1627", - "1628", + "1620", + "1621", + "1622", "1629", - "1630", - "1631", - "1632", - "1633", - "1634", - "1650", - "1651", - "1652", "1653", "1654", "1655", @@ -225891,106 +226353,107 @@ "1661", "1662", "1663", - "1670", - "1671", - "1672", + "1664", + "1665", + "1666", "1673", "1674", "1675", - "1685", - "1686", - "1687", + "1676", + "1677", + "1678", "1688", "1689", "1690", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", "1911", - "1912", - "1913", "1914", "1915", - "1927", - "1928", - "1929", + "1916", + "1917", + "1918", "1930", - "2026", - "2058" + "1931", + "1932", + "1933", + "2029" ], "location": { "end": { - "column": 29, - "line": 2 + "column": 52, + "line": 17 }, "start": { - "column": 22, - "line": 2 + "column": 14, + "line": 17 } } }, { - "id": "4349", + "id": "3779", "mutatorName": "StringLiteral", - "replacement": "\"Stryker was here!\"", + "replacement": "\"\"", "status": "Timeout", "static": true, - "killedBy": [], "coveredBy": [ "0", "1", @@ -226151,6 +226614,29 @@ "184", "185", "186", + "187", + "188", + "189", + "190", + "191", + "192", + "193", + "194", + "195", + "196", + "197", + "198", + "199", + "200", + "201", + "202", + "203", + "204", + "205", + "206", + "207", + "208", + "209", "210", "211", "212", @@ -226158,29 +226644,6 @@ "214", "215", "216", - "217", - "218", - "219", - "220", - "221", - "222", - "223", - "224", - "225", - "226", - "227", - "228", - "229", - "230", - "231", - "232", - "233", - "234", - "235", - "236", - "237", - "238", - "239", "240", "241", "242", @@ -226239,9 +226702,9 @@ "295", "296", "297", - "325", - "326", - "327", + "298", + "299", + "300", "328", "329", "330", @@ -226257,9 +226720,9 @@ "340", "341", "342", - "368", - "369", - "370", + "343", + "344", + "345", "371", "372", "373", @@ -226298,9 +226761,9 @@ "406", "407", "408", - "424", - "425", - "426", + "409", + "410", + "411", "427", "428", "429", @@ -226442,21 +226905,9 @@ "565", "566", "567", - "624", - "625", - "626", - "627", - "628", - "629", - "630", - "631", - "632", - "633", - "634", - "635", - "636", - "637", - "638", + "568", + "569", + "570", "639", "640", "641", @@ -226529,9 +226980,9 @@ "708", "709", "710", - "722", - "723", - "724", + "711", + "712", + "713", "725", "726", "727", @@ -226578,9 +227029,9 @@ "768", "769", "770", - "785", - "786", - "787", + "771", + "772", + "773", "788", "789", "790", @@ -226602,9 +227053,9 @@ "806", "807", "808", - "815", - "816", - "817", + "809", + "810", + "811", "818", "819", "820", @@ -226630,9 +227081,9 @@ "840", "841", "842", - "876", - "877", - "878", + "843", + "844", + "845", "879", "880", "881", @@ -226693,10 +227144,10 @@ "936", "937", "938", - "953", - "961", - "962", - "963", + "939", + "940", + "941", + "956", "964", "965", "966", @@ -226724,9 +227175,9 @@ "988", "989", "990", - "999", - "1000", - "1001", + "991", + "992", + "993", "1002", "1003", "1004", @@ -226734,9 +227185,9 @@ "1006", "1007", "1008", - "1020", - "1021", - "1022", + "1009", + "1010", + "1011", "1023", "1024", "1025", @@ -226775,9 +227226,9 @@ "1058", "1059", "1060", - "1065", - "1066", - "1067", + "1061", + "1062", + "1063", "1068", "1069", "1070", @@ -226797,18 +227248,18 @@ "1084", "1085", "1086", - "1105", - "1106", - "1107", + "1087", + "1088", + "1089", "1108", "1109", "1110", "1111", "1112", "1113", - "1140", - "1141", - "1142", + "1114", + "1115", + "1116", "1143", "1144", "1145", @@ -226844,24 +227295,24 @@ "1175", "1176", "1177", - "1196", - "1197", - "1198", + "1178", + "1179", + "1180", "1199", "1200", "1201", "1202", "1203", "1204", - "1214", - "1215", - "1216", + "1205", + "1206", + "1207", "1217", "1218", "1219", - "1230", - "1231", - "1232", + "1220", + "1221", + "1222", "1233", "1234", "1235", @@ -226872,16 +227323,16 @@ "1240", "1241", "1242", + "1243", "1244", - "1251", - "1252", - "1253", + "1245", + "1247", "1254", "1255", "1256", - "1267", - "1268", - "1269", + "1257", + "1258", + "1259", "1270", "1271", "1272", @@ -226896,9 +227347,9 @@ "1281", "1282", "1283", - "1296", - "1297", - "1298", + "1284", + "1285", + "1286", "1299", "1300", "1301", @@ -226925,24 +227376,24 @@ "1322", "1323", "1324", - "1335", - "1336", - "1337", + "1325", + "1326", + "1327", "1338", "1339", "1340", "1341", - "1362", - "1363", - "1364", + "1342", + "1343", + "1344", "1365", "1366", "1367", "1368", "1369", - "1377", - "1378", - "1379", + "1370", + "1371", + "1372", "1380", "1381", "1382", @@ -226976,9 +227427,9 @@ "1410", "1411", "1412", - "1432", - "1433", - "1434", + "1413", + "1414", + "1415", "1435", "1436", "1437", @@ -226987,15 +227438,15 @@ "1440", "1441", "1442", - "1448", - "1449", - "1450", + "1443", + "1444", + "1445", "1451", "1452", "1453", - "1463", - "1464", - "1465", + "1454", + "1455", + "1456", "1466", "1467", "1468", @@ -227053,9 +227504,9 @@ "1520", "1521", "1522", - "1528", - "1529", - "1530", + "1523", + "1524", + "1525", "1531", "1532", "1533", @@ -227128,27 +227579,19 @@ "1600", "1601", "1602", - "1611", - "1612", - "1613", + "1603", + "1604", + "1605", "1614", "1615", "1616", "1617", "1618", "1619", - "1626", - "1627", - "1628", + "1620", + "1621", + "1622", "1629", - "1630", - "1631", - "1632", - "1633", - "1634", - "1650", - "1651", - "1652", "1653", "1654", "1655", @@ -227160,101 +227603,103 @@ "1661", "1662", "1663", - "1670", - "1671", - "1672", + "1664", + "1665", + "1666", "1673", "1674", "1675", - "1685", - "1686", - "1687", + "1676", + "1677", + "1678", "1688", "1689", "1690", "1691", "1692", - "1699", - "1700", - "1701", + "1693", + "1694", + "1695", "1702", "1703", - "1713", - "1714", - "1715", + "1704", + "1705", + "1706", "1716", "1717", - "1722", - "1723", - "1724", + "1718", + "1719", + "1720", "1725", "1726", - "1734", - "1735", - "1736", + "1727", + "1728", + "1729", "1737", "1738", - "1754", - "1755", - "1756", + "1739", + "1740", + "1741", "1757", "1758", - "1766", - "1767", - "1768", + "1759", + "1760", + "1761", "1769", "1770", "1771", + "1772", "1773", - "1777", - "1811", - "1812", - "1813", + "1774", + "1776", + "1780", "1814", "1815", "1816", "1817", "1818", - "1843", - "1844", - "1845", + "1819", + "1820", + "1821", "1846", - "1860", - "1864", - "1873", - "1874", - "1875", + "1847", + "1848", + "1849", + "1863", + "1867", + "1876", "1877", - "1881", - "1887", - "1891", - "1904", - "1908", + "1878", + "1880", + "1884", + "1890", + "1894", + "1907", "1911", - "1912", - "1913", "1914", "1915", - "1927", - "1928", - "1929", + "1916", + "1917", + "1918", "1930", - "2026", - "2058" + "1931", + "1932", + "1933", + "2029" ], "location": { "end": { - "column": 33, - "line": 2 + "column": 50, + "line": 17 }, "start": { - "column": 31, - "line": 2 + "column": 32, + "line": 17 } } } ], - "source": "function removeTrailingSlashes(url: string): string {\n return url.replace(/\\/+$/u, \"\");\n}\n\nexport { removeTrailingSlashes };" + "source": "import { createFetch } from \"ofetch\";\n\nimport { useWerewolvesAssistantApiError } from \"~/composables/api/error/useWerewolvesAssistantApiError\";\nimport { removeTrailingSlashes } from \"~/utils/url.utils\";\n\ntype UseWerewolvesAssistantApi = {\n fetchWerewolvesAssistantApi: typeof $fetch;\n};\n\nfunction useWerewolvesAssistantApi(): UseWerewolvesAssistantApi {\n const config = useRuntimeConfig();\n const { baseUrl } = config.public.werewolvesAssistantApi;\n const { handleWerewolvesAssistantApiError } = useWerewolvesAssistantApiError();\n\n const fetchWerewolvesAssistantApi = createFetch().create({\n baseURL: removeTrailingSlashes(baseUrl),\n headers: { \"Content-Type\": \"application/json\" },\n onResponseError: handleWerewolvesAssistantApiError,\n });\n\n return { fetchWerewolvesAssistantApi };\n}\n\nexport { useWerewolvesAssistantApi };" } }, "schemaVersion": "1.0", @@ -227820,567 +228265,579 @@ ], "source": "import type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\nimport type { GameOverHistoryRecordActionProps } from \"~/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordAction/game-over-history-record-action.types\";\nimport GameOverHistoryRecordAction from \"~/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordAction/GameOverHistoryRecordAction.vue\";\nimport type { GameHistoryRecord } from \"~/composables/api/game/types/game-history-record/game-history-record.class\";\nimport { createFakeGameHistoryRecordPlaySource } from \"@tests/unit/utils/factories/composables/api/game/game-history-record/game-history-record-play/game-history-record-play-source/game-history-record-play-source.factory\";\nimport { createFakeGameHistoryRecordPlayTarget } from \"@tests/unit/utils/factories/composables/api/game/game-history-record/game-history-record-play/game-history-record-play-target/game-history-record-play-target.factory\";\nimport { createFakeGameHistoryRecordPlay } from \"@tests/unit/utils/factories/composables/api/game/game-history-record/game-history-record-play/game-history-record-play.factory\";\nimport { createFakeGameHistoryRecord } from \"@tests/unit/utils/factories/composables/api/game/game-history-record/game-history-record.factory\";\n\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Over History Record Action Component\", () => {\n let wrapper: ReturnType>;\n const defaultGameOverHistoryRecord = createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n action: \"vote\",\n type: \"vote\",\n }),\n });\n const defaultProps: GameOverHistoryRecordActionProps = { gameHistoryRecord: defaultGameOverHistoryRecord };\n\n async function mountGameOverHistoryRecordActionComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameOverHistoryRecordAction, {\n props: defaultProps,\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameOverHistoryRecordActionComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Action Text\", () => {\n it.each<{\n gameHistoryRecord: GameHistoryRecord;\n expectedText: string;\n test: string;\n }>([\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"survivors\" }),\n action: \"vote\",\n type: \"vote\",\n votes: undefined,\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.skippedTurn\",\n test: \"should have skipped text when game history record action is skipped.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"accursed-wolf-father\" }),\n action: \"infect\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.infected\",\n test: \"should have infected text when game history record action is infected.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"actor\" }),\n action: \"choose-card\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.choseCard\",\n test: \"should have chose card text when game history record action is chose card.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"big-bad-wolf\" }),\n action: \"eat\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.ate\",\n test: \"should have ate text when game history record action is ate.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"charmed\" }),\n action: \"meet-each-other\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.metEachOther\",\n test: \"should have met each other text when game history record action is met each other.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"cupid\" }),\n action: \"charm\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.madeFallInLove\",\n test: \"should have made fall in love text when game history record action is made fall in love.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"defender\" }),\n action: \"protect\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.protected\",\n test: \"should have protected text when game history record action is protected.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"fox\" }),\n action: \"sniff\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.sniffed\",\n test: \"should have sniffed text when game history record action is sniffed.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"hunter\" }),\n action: \"shoot\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.shot\",\n test: \"should have shot text when game history record action is shot.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"lovers\" }),\n action: \"meet-each-other\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.metEachOther\",\n test: \"should have met each other text when game history record action is met each other.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"pied-piper\" }),\n action: \"charm\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.charmed\",\n test: \"should have charmed text when game history record action is charmed.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"scandalmonger\" }),\n action: \"mark\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.markedWithFeather\",\n test: \"should have marked with feather text when game history record action is marked with feather.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"scapegoat\" }),\n action: \"ban-voting\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.bannedFromVotes\",\n test: \"should have banned from votes text when game history record action is banned from votes.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"seer\" }),\n action: \"look\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.seen\",\n test: \"should have seen text when game history record action is seen.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"sheriff\" }),\n action: \"delegate\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.delegated\",\n test: \"should have delegated text when game history record action is delegated.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"sheriff\" }),\n action: \"settle-votes\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.settledVotes\",\n test: \"should have settled votes text when game history record action is settled votes.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"stuttering-judge\" }),\n action: \"request-another-vote\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.requestedAnotherVote\",\n test: \"should have requested another vote text when game history record action is requested another vote.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"survivors\" }),\n action: \"vote\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.voted\",\n test: \"should have voted text when game history record action is voted.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"survivors\" }),\n action: \"bury-dead-bodies\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.buriedDeadBodies\",\n test: \"should have buried dead bodies text when game history record action is buried dead bodies.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"survivors\" }),\n action: \"elect-sheriff\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.electedAsSheriff\",\n test: \"should have elected as sheriff text when game history record action is elected as sheriff.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"survivors\" }),\n action: \"vote\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.voted\",\n test: \"should have voted text when game history record action is voted.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"thief\" }),\n action: \"choose-card\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.choseCard\",\n test: \"should have chose card text when game history record action is chose card.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"three-brothers\" }),\n action: \"meet-each-other\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.metEachOther\",\n test: \"should have met each other text when game history record action is met each other.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"two-sisters\" }),\n action: \"meet-each-other\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.metEachOther\",\n test: \"should have met each other text when game history record action is met each other.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"werewolves\" }),\n action: \"eat\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.ate\",\n test: \"should have ate text when game history record action is ate.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"white-werewolf\" }),\n action: \"eat\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.ate\",\n test: \"should have ate text when game history record action is ate.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"wild-child\" }),\n action: \"choose-model\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.choseAsModel\",\n test: \"should have chose as model text when game history record action is chose as model.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"witch\" }),\n action: \"use-potions\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.usedPotions\",\n test: \"should have used potions text when game history record action is used potions.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"wolf-hound\" }),\n action: \"choose-side\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.choseSide\",\n test: \"should have chose side text when game history record action is chose side.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"witch\" }),\n action: \"eat\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedText: \"components.GameOverHistoryRecordAction.unknownGamePlay\",\n test: \"should have unknown play text when game history record action is unknown.\",\n },\n ])(\"$test\", async({ gameHistoryRecord, expectedText }) => {\n wrapper = await mountGameOverHistoryRecordActionComponent({ props: { gameHistoryRecord } });\n\n const actionText = wrapper.find(\"#game-over-history-record-action-text\");\n\n expect(actionText.text()).toBe(expectedText);\n });\n });\n\n describe(\"Action Icon\", () => {\n it.each<{\n gameHistoryRecord: GameHistoryRecord;\n expectedIconSrc: string;\n test: string;\n }>([\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"survivors\" }),\n action: \"vote\",\n type: \"vote\",\n votes: undefined,\n }),\n }),\n expectedIconSrc: \"/svg/game/player/player-attribute/powerless.svg\",\n test: \"should have skipped icon when game history record action is skipped.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"stuttering-judge\" }),\n action: \"request-another-vote\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedIconSrc: \"/svg/misc/exclamation-mark.svg\",\n test: \"should have exclamation mark icon when game history record action is requested another vote.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"survivors\" }),\n action: \"meet-each-other\",\n type: \"no-action\",\n }),\n }),\n expectedIconSrc: \"/svg/misc/people.svg\",\n test: \"should have people icon when game history record action is met each other.\",\n },\n {\n gameHistoryRecord: createFakeGameHistoryRecord({\n play: createFakeGameHistoryRecordPlay({\n source: createFakeGameHistoryRecordPlaySource({ name: \"werewolves\" }),\n action: \"eat\",\n type: \"target\",\n targets: [createFakeGameHistoryRecordPlayTarget()],\n }),\n }),\n expectedIconSrc: \"/svg/misc/arrow-right.svg\",\n test: \"should have arrow right icon when game history record action is ate.\",\n },\n ])(\"$test\", async({ gameHistoryRecord, expectedIconSrc }) => {\n wrapper = await mountGameOverHistoryRecordActionComponent({ props: { gameHistoryRecord } });\n\n const actionIcon = wrapper.find(\"[alt='Action icon']\");\n\n expect(actionIcon.attributes(\"src\")).toBe(expectedIconSrc);\n });\n });\n});" }, - "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts": { + "tests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts": { "tests": [ { "id": "134", - "name": "Game Turn Start Event Component should match snapshot when rendered." + "name": "Game Lobby Page should match snapshot when rendered." }, { "id": "135", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Accursed Wolf Father game turn starts event when the current play source is Accursed Wolf Father." + "name": "Game Lobby Page should set head title and meta tags when rendered." }, { "id": "136", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Actor game turn starts event when the current play source is Actor." + "name": "Game Lobby Page Small Screen Toast should add info toast for small screen after 200ms when screen is smaller than md." }, { "id": "137", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Big Bad Wolf game turn starts event when the current play source is Big Bad Wolf." + "name": "Game Lobby Page Small Screen Toast should not add info toast for small screen after 200ms when screen is not smaller than md." }, { "id": "138", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Charmed game turn starts event when the current play source is Charmed." + "name": "Game Lobby Page Small Screen Toast should not add info toast for small screen when screen is smaller than md but 200ms have not passed." }, { "id": "139", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Cupid game turn starts event when the current play source is Cupid." + "name": "Game Lobby Page Game Lobby Players Party should reset create game dto when rendered." }, { "id": "140", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Defender game turn starts event when the current play source is Defender." + "name": "Game Lobby Page Game Lobby Players Party should reset game when rendered." }, { "id": "141", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Fox game turn starts event when the current play source is Fox." + "name": "Game Lobby Page Game Lobby Players Party should load all audios when rendered." }, { "id": "142", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Hunter game turn starts event when the current play source is Hunter." + "name": "Game Lobby Page Game Lobby Role Picker should open role picker modal when game lobby players party emits pick role for player event." }, { "id": "143", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Lovers game turn starts event when the current play source is Lovers." + "name": "Game Lobby Page Game Lobby Role Picker should not open role picker modal when game lobby players party emits pick role for player event with no player." }, { "id": "144", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Pied Piper game turn starts event when the current play source is Pied Piper." + "name": "Game Lobby Page Game Lobby Role Picker should throw error when game lobby players party emits pick role for player event but the role picker is not found in refs." }, { "id": "145", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Scandalmonger game turn starts event when the current play source is Scandalmonger." + "name": "Game Lobby Page Game Lobby Options Hub should open game lobby options hub when game lobby players party emits open options hub event." }, { "id": "146", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Scapegoat game turn starts event when the current play source is Scapegoat." + "name": "Game Lobby Page Game Lobby Options Hub should throw error when game lobby header emits game options button click event but the options hub is not found in refs." }, { "id": "147", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Seer game turn starts event when the current play source is Seer." + "name": "Game Lobby Page Game Lobby Position Coordinator should open game lobby position coordinator when game lobby players party emits position coordinator button click event." }, { "id": "148", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Sheriff game turn starts event when the current play source is Sheriff." + "name": "Game Lobby Page Game Lobby Position Coordinator should throw error when game lobby header emits position coordinator button click event but the position coordinator is not found in refs." }, { "id": "149", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Stuttering Judge game turn starts event when the current play source is Stuttering Judge." + "name": "Game Lobby Page Game Lobby Additional Cards Manager should open game lobby additional cards manager when game lobby players party emits additional cards button click event." }, { "id": "150", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Survivors game turn starts event when the current play source is Survivors." + "name": "Game Lobby Page Game Lobby Additional Cards Manager should throw error when game lobby header emits additional cards button click event but the additional cards manager is not found in refs." }, { "id": "151", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Thief game turn starts event when the current play source is Thief." + "name": "Game Lobby Page Reject Players Position Step should throw error when reject players position step event is emitted by footer but header is not defined in refs." }, { "id": "152", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Three Brothers game turn starts event when the current play source is Three Brothers." + "name": "Game Lobby Page Reject Players Position Step should highlight position coordinator button when reject players position step event is emitted by footer." }, { "id": "153", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Two Sisters game turn starts event when the current play source is Two Sisters." + "name": "Game Lobby Page Reject Players Position Step should open position coordinator after timeout when reject players position step event is emitted by footer." }, { "id": "154", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Werewolves game turn starts event when the current play source is Werewolves." + "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should throw error when reject thief additional cards placed step event is emitted by footer but header is not defined in refs." }, { "id": "155", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render White Werewolf game turn starts event when the current play source is White Werewolf." + "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should highlight additional cards manager button when reject thief additional cards placed step event is emitted by footer." }, { "id": "156", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Wild Child game turn starts event when the current play source is Wild Child." + "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should open additional cards manager after timeout when reject thief additional cards placed step event is emitted by footer." }, { "id": "157", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Witch game turn starts event when the current play source is Witch." + "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should throw error when reject actor additional cards placed step event is emitted by footer but header is not defined in refs." }, { "id": "158", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Wolf Hound game turn starts event when the current play source is Wolf Hound." + "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should highlight additional cards manager button when reject actor additional cards placed step event is emitted by footer." }, { "id": "159", - "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render unknown game starts event text when the current play is null." - } - ], - "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\nimport GameAccursedWolfFatherTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent.vue\";\nimport GameActorTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameActorTurnStartsEvent/GameActorTurnStartsEvent.vue\";\nimport GameBigBadWolfTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameBigBadWolfTurnStartsEvent/GameBigBadWolfTurnStartsEvent.vue\";\nimport GameCharmedTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameCharmedTurnStartsEvent/GameCharmedTurnStartsEvent.vue\";\nimport GameCupidTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameCupidTurnStartsEvent/GameCupidTurnStartsEvent.vue\";\nimport GameDefenderTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameDefenderTurnStartsEvent/GameDefenderTurnStartsEvent.vue\";\nimport GameFoxTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameFoxTurnStartsEvent/GameFoxTurnStartsEvent.vue\";\nimport GameHunterTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameHunterTurnStartsEvent/GameHunterTurnStartsEvent.vue\";\nimport GameLoversTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameLoversTurnStartsEvent/GameLoversTurnStartsEvent.vue\";\nimport GamePiedPiperTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GamePiedPiperTurnStartsEvent/GamePiedPiperTurnStartsEvent.vue\";\nimport GameScandalmongerTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScandalmongerTurnStartsEvent/GameScandalmongerTurnStartsEvent.vue\";\nimport GameScapegoatTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScapegoatTurnStartsEvent/GameScapegoatTurnStartsEvent.vue\";\nimport GameSeerTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSeerTurnStartsEvent/GameSeerTurnStartsEvent.vue\";\nimport GameSheriffTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSheriffTurnStartsEvent/GameSheriffTurnStartsEvent.vue\";\nimport GameStutteringJudgeTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameStutteringJudgeTurnStartsEvent/GameStutteringJudgeTurnStartsEvent.vue\";\nimport GameSurvivorsTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSurvivorsTurnStartsEvent/GameSurvivorsTurnStartsEvent.vue\";\nimport GameThiefTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThiefTurnStartsEvent/GameThiefTurnStartsEvent.vue\";\nimport GameThreeBrothersTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThreeBrothersTurnStartsEvent/GameThreeBrothersTurnStartsEvent.vue\";\nimport GameTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.vue\";\nimport GameTwoSistersTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTwoSistersTurnStartsEvent/GameTwoSistersTurnStartsEvent.vue\";\nimport GameWerewolvesTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.vue\";\nimport GameWhiteWerewolfTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent.vue\";\nimport GameWildChildTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWildChildTurnStartsEvent/GameWildChildTurnStartsEvent.vue\";\nimport GameWitchTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWitchTurnStartsEvent/GameWitchTurnStartsEvent.vue\";\nimport GameWolfHoundTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWolfHoundTurnStartsEvent/GameWolfHoundTurnStartsEvent.vue\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\nimport { createFakeGamePlayAccursedWolfFatherInfects, createFakeGamePlayActorChoosesCard, createFakeGamePlayBigBadWolfEats, createFakeGamePlayCharmedMeetEachOther, createFakeGamePlayCupidCharms, createFakeGamePlaySurvivorsVote, createFakeGamePlayDefenderProtects, createFakeGamePlayHunterShoots, createFakeGamePlayLoversMeetEachOther, createFakeGamePlayPiedPiperCharms, createFakeGamePlayFoxSniffs, createFakeGamePlaySeerLooks, createFakeGamePlaySheriffSettlesVotes, createFakeGamePlayWerewolvesEat, createFakeGamePlayThiefChoosesCard, createFakeGamePlayStutteringJudgeRequestsAnotherVote, createFakeGamePlayTwoSistersMeetEachOther, createFakeGamePlayWhiteWerewolfEats, createFakeGamePlayThreeBrothersMeetEachOther, createFakeGamePlayWildChildChoosesModel, createFakeGamePlayWitchUsesPotions, createFakeGamePlayWolfHoundChoosesSide, createFakeGamePlayScapegoatBansVoting, createFakeGamePlayScandalmongerMarks } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play.factory\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\n\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Turn Start Event Component\", () => {\n let wrapper: ReturnType>;\n const testingPinia = { initialState: { [StoreIds.GAME]: { game: createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote() }) } } };\n\n async function mountGameTurnStartsEventComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameTurnStartsEvent, {\n global: { plugins: [createTestingPinia(testingPinia)] },\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameTurnStartsEventComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Game Turn Starts Event Component type\", () => {\n it(\"should render Accursed Wolf Father game turn starts event when the current play source is Accursed Wolf Father.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayAccursedWolfFatherInfects() });\n await nextTick();\n const component = wrapper.findComponent(GameAccursedWolfFatherTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Actor game turn starts event when the current play source is Actor.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayActorChoosesCard() });\n await nextTick();\n const component = wrapper.findComponent(GameActorTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Big Bad Wolf game turn starts event when the current play source is Big Bad Wolf.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayBigBadWolfEats() });\n await nextTick();\n const component = wrapper.findComponent(GameBigBadWolfTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Charmed game turn starts event when the current play source is Charmed.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayCharmedMeetEachOther() });\n await nextTick();\n const component = wrapper.findComponent(GameCharmedTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Cupid game turn starts event when the current play source is Cupid.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayCupidCharms() });\n await nextTick();\n const component = wrapper.findComponent(GameCupidTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Defender game turn starts event when the current play source is Defender.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayDefenderProtects() });\n await nextTick();\n const component = wrapper.findComponent(GameDefenderTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Fox game turn starts event when the current play source is Fox.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayFoxSniffs() });\n await nextTick();\n const component = wrapper.findComponent(GameFoxTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Hunter game turn starts event when the current play source is Hunter.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayHunterShoots() });\n await nextTick();\n const component = wrapper.findComponent(GameHunterTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Lovers game turn starts event when the current play source is Lovers.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayLoversMeetEachOther() });\n await nextTick();\n const component = wrapper.findComponent(GameLoversTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Pied Piper game turn starts event when the current play source is Pied Piper.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayPiedPiperCharms() });\n await nextTick();\n const component = wrapper.findComponent(GamePiedPiperTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Scandalmonger game turn starts event when the current play source is Scandalmonger.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayScandalmongerMarks() });\n await nextTick();\n const component = wrapper.findComponent(GameScandalmongerTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Scapegoat game turn starts event when the current play source is Scapegoat.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayScapegoatBansVoting() });\n await nextTick();\n const component = wrapper.findComponent(GameScapegoatTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Seer game turn starts event when the current play source is Seer.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlaySeerLooks() });\n await nextTick();\n const component = wrapper.findComponent(GameSeerTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Sheriff game turn starts event when the current play source is Sheriff.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlaySheriffSettlesVotes() });\n await nextTick();\n const component = wrapper.findComponent(GameSheriffTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Stuttering Judge game turn starts event when the current play source is Stuttering Judge.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayStutteringJudgeRequestsAnotherVote() });\n await nextTick();\n const component = wrapper.findComponent(GameStutteringJudgeTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Survivors game turn starts event when the current play source is Survivors.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote() });\n await nextTick();\n const component = wrapper.findComponent(GameSurvivorsTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Thief game turn starts event when the current play source is Thief.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayThiefChoosesCard() });\n await nextTick();\n const component = wrapper.findComponent(GameThiefTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Three Brothers game turn starts event when the current play source is Three Brothers.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayThreeBrothersMeetEachOther() });\n await nextTick();\n const component = wrapper.findComponent(GameThreeBrothersTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Two Sisters game turn starts event when the current play source is Two Sisters.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayTwoSistersMeetEachOther() });\n await nextTick();\n const component = wrapper.findComponent(GameTwoSistersTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Werewolves game turn starts event when the current play source is Werewolves.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWerewolvesEat() });\n await nextTick();\n const component = wrapper.findComponent(GameWerewolvesTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render White Werewolf game turn starts event when the current play source is White Werewolf.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWhiteWerewolfEats() });\n await nextTick();\n const component = wrapper.findComponent(GameWhiteWerewolfTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Wild Child game turn starts event when the current play source is Wild Child.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWildChildChoosesModel() });\n await nextTick();\n const component = wrapper.findComponent(GameWildChildTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Witch game turn starts event when the current play source is Witch.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWitchUsesPotions() });\n await nextTick();\n const component = wrapper.findComponent(GameWitchTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Wolf Hound game turn starts event when the current play source is Wolf Hound.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide() });\n await nextTick();\n const component = wrapper.findComponent(GameWolfHoundTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n expect(component.attributes(\"is\")).toBeUndefined();\n });\n\n it(\"should render unknown game starts event text when the current play is null.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: null });\n await nextTick();\n const component = wrapper.find(\"#unknown-game-turn-starts-event\");\n\n expect(component.text()).toBe(\"Unknown game turn starts event\");\n });\n });\n});" - }, - "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts": { - "tests": [ + "name": "Game Lobby Page Reject Game Options Changed Step should throw error when reject game options changed step event is emitted by footer but header is not defined in refs." + }, { "id": "160", - "name": "Game Events Monitor Current Event Component should match snapshot when rendered." + "name": "Game Lobby Page Reject Game Options Changed Step should highlight game options button when reject game options changed step event is emitted by footer." }, { "id": "161", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render game starts event component when current game event is game starts type." + "name": "Game Lobby Page Reject Game Options Changed Step should open game options hub after timeout when reject game options changed step event is emitted by footer." }, { "id": "162", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render game turn starts event component when current game event is game turn starts type." + "name": "Game Lobby Page Inject player from query should set players to create game dto when query is fulfilled with player names." }, { "id": "163", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render game phase starts event component when current game event is game phase starts type." - }, + "name": "Game Lobby Page Inject player from query should not set players to create game dto when query is not fulfilled with player names." + } + ], + "source": "import { mockNuxtImport } from \"@nuxt/test-utils/runtime\";\nimport { createFakeUseRoute } from \"@tests/unit/utils/factories/composables/nuxt/useRoute.factory\";\nimport type { mount } from \"@vue/test-utils\";\nimport type Radash from \"radash\";\nimport type { UseHeadInput } from \"unhead\";\nimport type { Mock } from \"vitest\";\nimport { expect } from \"vitest\";\nimport type { Ref } from \"vue\";\nimport type GameLobbyFooter from \"~/components/pages/game-lobby/GameLobbyFooter/GameLobbyFooter.vue\";\nimport type GameLobbyHeader from \"~/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.vue\";\n\nimport type GameLobbyPlayersParty from \"~/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.vue\";\nimport GameLobby from \"~/pages/game-lobby.vue\";\nimport { useAudioStore } from \"~/stores/audio/useAudioStore\";\nimport { useCreateGameDtoStore } from \"~/stores/game/create-game-dto/useCreateGameDtoStore\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\nimport { createFakeCreateGamePlayerDto } from \"@tests/unit/utils/factories/composables/api/game/dto/create-game/create-game-player/create-game-player.dto.factory\";\nimport { getError } from \"@tests/unit/utils/helpers/exception.helpers\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\nimport type { VueVm } from \"@tests/unit/utils/types/vue-test-utils.types\";\n\nconst hoistedMocks = vi.hoisted(() => ({\n useBreakpoints: {\n smaller: vi.fn(),\n },\n useRoute: {} as unknown as ReturnType,\n usePrimeVueToasts: {\n addInfoToast: vi.fn(),\n },\n}));\n\nmockNuxtImport(\"useRoute\", () => vi.fn(() => hoistedMocks.useRoute));\n\nvi.mock(\"@vueuse/core\", async importOriginal => ({\n ...await importOriginal(),\n useBreakpoints: (): typeof hoistedMocks.useBreakpoints => hoistedMocks.useBreakpoints,\n}));\n\nvi.mock(\"~/composables/prime-vue/usePrimeVueToasts\", () => ({\n usePrimeVueToasts: (): typeof hoistedMocks.usePrimeVueToasts => hoistedMocks.usePrimeVueToasts,\n}));\n\ndescribe(\"Game Lobby Page\", () => {\n let wrapper: ReturnType>;\n let mocks: {\n components: {\n gameLobbyHeader: {\n highlightGameOptionsButton: Mock;\n highlightPositionCoordinatorButton: Mock;\n highlightAdditionalCardsManagerButton: Mock;\n };\n gameLobbyRolePicker: {\n openToPickRoleForPlayer: Mock;\n };\n gameLobbyOptionsHub: {\n open: Mock;\n };\n gameLobbyPositionCoordinator: {\n open: Mock;\n };\n gameLobbyAdditionalCardsManager: {\n open: Mock;\n };\n };\n };\n\n async function mountGameLobbyPageComponent(): Promise>> {\n mocks = {\n components: {\n gameLobbyHeader: {\n highlightGameOptionsButton: vi.fn(),\n highlightPositionCoordinatorButton: vi.fn(),\n highlightAdditionalCardsManagerButton: vi.fn(),\n },\n gameLobbyRolePicker: { openToPickRoleForPlayer: vi.fn() },\n gameLobbyOptionsHub: { open: vi.fn() },\n gameLobbyPositionCoordinator: { open: vi.fn() },\n gameLobbyAdditionalCardsManager: { open: vi.fn() },\n },\n };\n\n return mountSuspendedComponent(GameLobby, {\n global: {\n stubs: {\n GameLobbyHeader: {\n template: \"
\",\n methods: mocks.components.gameLobbyHeader,\n },\n GameLobbyRolePicker: {\n template: \"
\",\n methods: mocks.components.gameLobbyRolePicker,\n },\n GameLobbyOptionsHub: {\n template: \"
\",\n methods: mocks.components.gameLobbyOptionsHub,\n },\n GameLobbyPositionCoordinator: {\n template: \"
\",\n methods: mocks.components.gameLobbyPositionCoordinator,\n },\n GameLobbyAdditionalCardsManager: {\n template: \"
\",\n methods: mocks.components.gameLobbyAdditionalCardsManager,\n },\n },\n },\n });\n }\n\n beforeEach(async() => {\n hoistedMocks.useRoute = createFakeUseRoute();\n hoistedMocks.useBreakpoints.smaller.mockReturnValue(ref(false));\n wrapper = await mountGameLobbyPageComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n it(\"should set head title and meta tags when rendered.\", () => {\n const expectedUseHeadInput: UseHeadInput = {\n title: \"pages.gameLobby.startGame\",\n meta: [{ name: \"description\", content: \"pages.gameLobby.seoDescription\" }],\n };\n\n expect(useHead).toHaveBeenCalledExactlyOnceWith(expectedUseHeadInput);\n });\n\n describe(\"Small Screen Toast\", () => {\n it(\"should add info toast for small screen after 200ms when screen is smaller than md.\", async() => {\n hoistedMocks.useBreakpoints.smaller.mockReturnValue(ref(true));\n wrapper = await mountGameLobbyPageComponent();\n vi.advanceTimersByTime(200);\n\n expect(hoistedMocks.usePrimeVueToasts.addInfoToast).toHaveBeenCalledExactlyOnceWith({\n detail: \"pages.gameLobby.smallScreenWarning\",\n life: 7500,\n summary: \"pages.gameLobby.smallScreenDetected\",\n });\n });\n\n it(\"should not add info toast for small screen after 200ms when screen is not smaller than md.\", () => {\n vi.advanceTimersByTime(200);\n\n expect(hoistedMocks.usePrimeVueToasts.addInfoToast).not.toHaveBeenCalled();\n });\n\n it(\"should not add info toast for small screen when screen is smaller than md but 200ms have not passed.\", async() => {\n hoistedMocks.useBreakpoints.smaller.mockReturnValue(ref(true));\n wrapper = await mountGameLobbyPageComponent();\n\n expect(hoistedMocks.usePrimeVueToasts.addInfoToast).not.toHaveBeenCalled();\n });\n });\n\n describe(\"Game Lobby Players Party\", () => {\n it(\"should reset create game dto when rendered.\", () => {\n const createGameDtoStore = useCreateGameDtoStore();\n\n expect(createGameDtoStore.resetCreateGameDto).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should reset game when rendered.\", () => {\n const gameStore = useGameStore();\n\n expect(gameStore.resetGame).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should load all audios when rendered.\", () => {\n const audioStore = useAudioStore();\n\n expect(audioStore.loadAllAudios).toHaveBeenCalledExactlyOnceWith();\n });\n });\n\n describe(\"Game Lobby Role Picker\", () => {\n it(\"should open role picker modal when game lobby players party emits pick role for player event.\", async() => {\n const emittedPlayer = createFakeCreateGamePlayerDto();\n const gameLobbyPlayersParty = wrapper.findComponent(\"#game-lobby-players-party\");\n (gameLobbyPlayersParty.vm as VueVm).$emit(\"pick-role-for-player\", emittedPlayer);\n await nextTick();\n\n expect(mocks.components.gameLobbyRolePicker.openToPickRoleForPlayer).toHaveBeenCalledExactlyOnceWith(emittedPlayer);\n });\n\n it(\"should not open role picker modal when game lobby players party emits pick role for player event with no player.\", async() => {\n const gameLobbyPlayersParty = wrapper.findComponent(\"#game-lobby-players-party\");\n (gameLobbyPlayersParty.vm as VueVm).$emit(\"pick-role-for-player\", undefined);\n await nextTick();\n\n expect(mocks.components.gameLobbyRolePicker.openToPickRoleForPlayer).not.toHaveBeenCalled();\n });\n\n it(\"should throw error when game lobby players party emits pick role for player event but the role picker is not found in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyRolePicker: Ref }).gameLobbyRolePicker.value = null;\n const gameLobbyPlayersParty = wrapper.findComponent(\"#game-lobby-players-party\");\n await getError(() => (gameLobbyPlayersParty.vm as VueVm).$emit(\"pick-role-for-player\", createFakeCreateGamePlayerDto()));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Role Picker is not defined\");\n });\n });\n\n describe(\"Game Lobby Options Hub\", () => {\n it(\"should open game lobby options hub when game lobby players party emits open options hub event.\", async() => {\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n (gameLobbyHeader.vm as VueVm).$emit(\"game-options-button-click\");\n await nextTick();\n\n expect(mocks.components.gameLobbyOptionsHub.open).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should throw error when game lobby header emits game options button click event but the options hub is not found in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyOptionsHub: Ref }).gameLobbyOptionsHub.value = null;\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n await getError(() => (gameLobbyHeader.vm as VueVm).$emit(\"game-options-button-click\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Options Hub is not defined\");\n });\n });\n\n describe(\"Game Lobby Position Coordinator\", () => {\n it(\"should open game lobby position coordinator when game lobby players party emits position coordinator button click event.\", async() => {\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n (gameLobbyHeader.vm as VueVm).$emit(\"position-coordinator-button-click\");\n await nextTick();\n\n expect(mocks.components.gameLobbyPositionCoordinator.open).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should throw error when game lobby header emits position coordinator button click event but the position coordinator is not found in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyPositionCoordinator: Ref }).gameLobbyPositionCoordinator.value = null;\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n await getError(() => (gameLobbyHeader.vm as VueVm).$emit(\"position-coordinator-button-click\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Position Coordinator is not defined\");\n });\n });\n\n describe(\"Game Lobby Additional Cards Manager\", () => {\n it(\"should open game lobby additional cards manager when game lobby players party emits additional cards button click event.\", async() => {\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n (gameLobbyHeader.vm as VueVm).$emit(\"additional-cards-manager-button-click\");\n await nextTick();\n\n expect(mocks.components.gameLobbyAdditionalCardsManager.open).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should throw error when game lobby header emits additional cards button click event but the additional cards manager is not found in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyAdditionalCardsManager: Ref }).gameLobbyAdditionalCardsManager.value = null;\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n await getError(() => (gameLobbyHeader.vm as VueVm).$emit(\"additional-cards-manager-button-click\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Additional Cards Manager is not defined\");\n });\n });\n\n describe(\"Reject Players Position Step\", () => {\n it(\"should throw error when reject players position step event is emitted by footer but header is not defined in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyHeader: Ref }).gameLobbyHeader.value = null;\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n await getError(() => (gameLobbyFooter.vm as VueVm).$emit(\"reject-players-position-step\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Header is not defined\");\n });\n\n it(\"should highlight position coordinator button when reject players position step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-players-position-step\");\n await nextTick();\n\n expect(mocks.components.gameLobbyHeader.highlightPositionCoordinatorButton).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should open position coordinator after timeout when reject players position step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-players-position-step\");\n vi.advanceTimersByTime(1000);\n await nextTick();\n\n expect(mocks.components.gameLobbyPositionCoordinator.open).toHaveBeenCalledExactlyOnceWith();\n });\n });\n\n describe(\"Reject Thief or Actor Additional Cards Placed Step\", () => {\n it(\"should throw error when reject thief additional cards placed step event is emitted by footer but header is not defined in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyHeader: Ref }).gameLobbyHeader.value = null;\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n await getError(() => (gameLobbyFooter.vm as VueVm).$emit(\"reject-thief-additional-cards-placed-step\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Header is not defined\");\n });\n\n it(\"should highlight additional cards manager button when reject thief additional cards placed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-thief-additional-cards-placed-step\");\n await nextTick();\n\n expect(mocks.components.gameLobbyHeader.highlightAdditionalCardsManagerButton).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should open additional cards manager after timeout when reject thief additional cards placed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-thief-additional-cards-placed-step\");\n vi.advanceTimersByTime(1000);\n await nextTick();\n\n expect(mocks.components.gameLobbyAdditionalCardsManager.open).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should throw error when reject actor additional cards placed step event is emitted by footer but header is not defined in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyHeader: Ref }).gameLobbyHeader.value = null;\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n await getError(() => (gameLobbyFooter.vm as VueVm).$emit(\"reject-actor-additional-cards-placed-step\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Header is not defined\");\n });\n\n it(\"should highlight additional cards manager button when reject actor additional cards placed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-actor-additional-cards-placed-step\");\n await nextTick();\n\n expect(mocks.components.gameLobbyHeader.highlightAdditionalCardsManagerButton).toHaveBeenCalledExactlyOnceWith();\n });\n });\n\n describe(\"Reject Game Options Changed Step\", () => {\n it(\"should throw error when reject game options changed step event is emitted by footer but header is not defined in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyHeader: Ref }).gameLobbyHeader.value = null;\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n await getError(() => (gameLobbyFooter.vm as VueVm).$emit(\"reject-game-options-changed-step\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Header is not defined\");\n });\n\n it(\"should highlight game options button when reject game options changed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-game-options-changed-step\");\n await nextTick();\n\n expect(mocks.components.gameLobbyHeader.highlightGameOptionsButton).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should open game options hub after timeout when reject game options changed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-game-options-changed-step\");\n vi.advanceTimersByTime(1000);\n await nextTick();\n\n expect(mocks.components.gameLobbyOptionsHub.open).toHaveBeenCalledExactlyOnceWith();\n });\n });\n\n describe(\"Inject player from query\", () => {\n it(\"should set players to create game dto when query is fulfilled with player names.\", async() => {\n hoistedMocks.useRoute.query = { playerNames: [\"Antoine\", \"Benoit\", \"Corentin\"] };\n wrapper = await mountGameLobbyPageComponent();\n const createGameDtoStore = useCreateGameDtoStore();\n\n expect(createGameDtoStore.setPlayersToCreateGameDto).toHaveBeenCalledExactlyOnceWith([\n createFakeCreateGamePlayerDto({ name: \"Antoine\" }),\n createFakeCreateGamePlayerDto({ name: \"Benoit\" }),\n createFakeCreateGamePlayerDto({ name: \"Corentin\" }),\n ]);\n });\n\n it(\"should not set players to create game dto when query is not fulfilled with player names.\", async() => {\n hoistedMocks.useRoute.query = { toto: \"tata\" };\n wrapper = await mountGameLobbyPageComponent();\n const createGameDtoStore = useCreateGameDtoStore();\n\n expect(createGameDtoStore.setPlayersToCreateGameDto).not.toHaveBeenCalled();\n });\n });\n});" + }, + "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.nuxt.spec.ts": { + "tests": [ { "id": "164", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render player dies event component when current game event is player dies type." + "name": "Game Turn Start Event Component should match snapshot when rendered." }, { "id": "165", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render seer has seen event component when current game event is seer has seen type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Accursed Wolf Father game turn starts event when the current play source is Accursed Wolf Father." }, { "id": "166", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render sheriff has been elected event component when current game event is sheriff has been elected type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Actor game turn starts event when the current play source is Actor." }, { "id": "167", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render scandalmonger has marked event component when current game event is scandalmonger has marked type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Big Bad Wolf game turn starts event when the current play source is Big Bad Wolf." }, { "id": "168", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render accursed wolf father may have infected event component when current game event is accursed wolf father may have infected type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Charmed game turn starts event when the current play source is Charmed." }, { "id": "169", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render villager villager introduction event component when current game event is villager villager introduction type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Cupid game turn starts event when the current play source is Cupid." }, { "id": "170", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render pied piper has charmed event component when current game event is pied piper has charmed type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Defender game turn starts event when the current play source is Defender." }, { "id": "171", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render cupid has charmed event component when current game event is cupid has charmed type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Fox game turn starts event when the current play source is Fox." }, { "id": "172", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render wolf hound has chosen side event component when current game event is wolf hound has chosen side type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Hunter game turn starts event when the current play source is Hunter." }, { "id": "173", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render idiot is spared event component when current game event is idiot is spared type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Lovers game turn starts event when the current play source is Lovers." }, { "id": "174", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render elder has taken revenge event component when current game event is elder has taken revenge type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Pied Piper game turn starts event when the current play source is Pied Piper." }, { "id": "175", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render bear growls or sleeps event component when current game event is bear growls type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Scandalmonger game turn starts event when the current play source is Scandalmonger." }, { "id": "176", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render bear growls or sleeps event component when current game event is bear sleeps type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Scapegoat game turn starts event when the current play source is Scapegoat." }, { "id": "177", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render fox may have sniffed event component when current game event is fox may have sniffed type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Seer game turn starts event when the current play source is Seer." }, { "id": "178", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render thief may have chosen card event component when current game event is thief may have chosen card type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Sheriff game turn starts event when the current play source is Sheriff." }, { "id": "179", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render wild child has transformed event component when current game event is wild child has transformed type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Stuttering Judge game turn starts event when the current play source is Stuttering Judge." }, { "id": "180", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render actor may have chosen card event component when current game event is actor may have chosen card type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Survivors game turn starts event when the current play source is Survivors." }, { "id": "181", - "name": "Game Events Monitor Current Event Component Current Game Event Component should render scandalmonger mark is active event component when current game event is scandalmonger mark is active type." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Thief game turn starts event when the current play source is Thief." }, { "id": "182", - "name": "Game Events Monitor Current Event Component Current Game Event Component should not render any game event component when there is no current game event." - } - ], - "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport { createFakeGameEvent } from \"@tests/unit/utils/factories/composables/api/game/game-event/game-event.factory\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\nimport GameAccursedWolfFatherMayHaveInfectedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameAccursedWolfFatherMayHaveInfectedEvent/GameAccursedWolfFatherMayHaveInfectedEvent.vue\";\nimport GameActorMayHaveChosenCardEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameActorMayHaveChosenCardEvent/GameActorMayHaveChosenCardEvent.vue\";\nimport GameBearGrowlsOrSleepsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameBearGrowlsOrSleepsEvent/GameBearGrowlsOrSleepsEvent.vue\";\nimport GameCupidHasCharmedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameCupidHasCharmedEvent/GameCupidHasCharmedEvent.vue\";\nimport GameElderHasTakenRevengeEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameElderHasTakenRevengeEvent/GameElderHasTakenRevengeEvent.vue\";\nimport GameEventsMonitorCurrentEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.vue\";\nimport GameFoxMayHaveSniffedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameFoxMayHaveSniffedEvent/GameFoxMayHaveSniffedEvent.vue\";\nimport GameIdiotIsSparedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameIdiotIsSparedEvent/GameIdiotIsSparedEvent.vue\";\nimport GamePhaseStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePhaseStartsEvent/GamePhaseStartsEvent.vue\";\nimport GamePiedPiperHasCharmedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePiedPiperHasCharmedEvent/GamePiedPiperHasCharmedEvent.vue\";\nimport GamePlayerDiesEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameDeathEvent/GameDeathEvent.vue\";\nimport GameScandalmongerMarkIsActiveEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMarkIsActiveEvent/GameScandalmongerMarkIsActiveEvent.vue\";\nimport GameScandalmongerMayHaveMarkedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMayHaveMarkedEvent/GameScandalmongerMayHaveMarkedEvent.vue\";\nimport GameSeerHasSeenEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSeerHasSeenEvent/GameSeerHasSeenEvent.vue\";\nimport GameSheriffHasBeenElectedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSheriffPromotionEvent/GameSheriffPromotionEvent.vue\";\nimport GameStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.vue\";\nimport GameThiefMayHaveChosenCardEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.vue\";\nimport GameTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.vue\";\nimport GameVillagerVillagerIntroductionEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameVillagerVillagerIntroductionEvent/GameVillagerVillagerIntroductionEvent.vue\";\nimport GameWildChildHasTransformedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWildChildHasTransformedEvent/GameWildChildHasTransformedEvent.vue\";\nimport GameWolfHoundHasChosenSide from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWolfHoundHasChosenSideEvent/GameWolfHoundHasChosenSideEvent.vue\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\n\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\nimport { useGameEventsStore } from \"~/stores/game/game-event/useGameEventsStore\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\n\ndescribe(\"Game Events Monitor Current Event Component\", () => {\n let wrapper: ReturnType>;\n const defaultGame = createFakeGame({\n events: [\n createFakeGameEvent({ type: \"game-starts\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ],\n });\n const testingPinia = {\n initialState: {\n [StoreIds.GAME]: {\n game: defaultGame,\n },\n },\n };\n\n async function mountGameEventsMonitorCurrentEventComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameEventsMonitorCurrentEvent, {\n global: { plugins: [createTestingPinia(testingPinia)] },\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameEventsMonitorCurrentEventComponent();\n const gameStore = useGameStore();\n gameStore.game = createFakeGame(defaultGame);\n const gameEventsStore = useGameEventsStore();\n gameEventsStore.currentGameEventIndex = 0;\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Current Game Event Component\", () => {\n it(\"should render game starts event component when current game event is game starts type.\", () => {\n const gameStartsEvent = wrapper.findComponent(GameStartsEvent);\n\n expect(gameStartsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render game turn starts event component when current game event is game turn starts type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n createFakeGameEvent({ type: \"game-phase-starts\" }),\n ];\n await nextTick();\n const gameTurnStartsEvent = wrapper.findComponent(GameTurnStartsEvent);\n\n expect(gameTurnStartsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render game phase starts event component when current game event is game phase starts type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"game-phase-starts\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gamePhaseStartsEvent = wrapper.findComponent(GamePhaseStartsEvent);\n\n expect(gamePhaseStartsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render player dies event component when current game event is player dies type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"death\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const playerDiesEvent = wrapper.findComponent(GamePlayerDiesEvent);\n\n expect(playerDiesEvent.exists()).toBeTruthy();\n });\n\n it(\"should render seer has seen event component when current game event is seer has seen type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"seer-has-seen\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameSeerHasSeenEvent = wrapper.findComponent(GameSeerHasSeenEvent);\n\n expect(gameSeerHasSeenEvent.exists()).toBeTruthy();\n });\n\n it(\"should render sheriff has been elected event component when current game event is sheriff has been elected type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"sheriff-promotion\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameSheriffHasBeenElectedEvent = wrapper.findComponent(GameSheriffHasBeenElectedEvent);\n\n expect(gameSheriffHasBeenElectedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render scandalmonger has marked event component when current game event is scandalmonger has marked type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"scandalmonger-may-have-marked\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameScandalmongerHasMarkedEvent = wrapper.findComponent(GameScandalmongerMayHaveMarkedEvent);\n\n expect(gameScandalmongerHasMarkedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render accursed wolf father may have infected event component when current game event is accursed wolf father may have infected type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"accursed-wolf-father-may-have-infected\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameAccursedWolfFatherMayHaveInfectedEvent = wrapper.findComponent(GameAccursedWolfFatherMayHaveInfectedEvent);\n\n expect(gameAccursedWolfFatherMayHaveInfectedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render villager villager introduction event component when current game event is villager villager introduction type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"villager-villager-introduction\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameVillagerVillagerIntroductionEvent = wrapper.findComponent(GameVillagerVillagerIntroductionEvent);\n\n expect(gameVillagerVillagerIntroductionEvent.exists()).toBeTruthy();\n });\n\n it(\"should render pied piper has charmed event component when current game event is pied piper has charmed type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"pied-piper-has-charmed\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gamePiedPiperHasCharmedEvent = wrapper.findComponent(GamePiedPiperHasCharmedEvent);\n\n expect(gamePiedPiperHasCharmedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render cupid has charmed event component when current game event is cupid has charmed type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"cupid-has-charmed\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gamePiedPiperHasCharmedEvent = wrapper.findComponent(GameCupidHasCharmedEvent);\n\n expect(gamePiedPiperHasCharmedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render wolf hound has chosen side event component when current game event is wolf hound has chosen side type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"wolf-hound-has-chosen-side\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameWolfHoundHasChosenSideEvent = wrapper.findComponent(GameWolfHoundHasChosenSide);\n\n expect(gameWolfHoundHasChosenSideEvent.exists()).toBeTruthy();\n });\n\n it(\"should render idiot is spared event component when current game event is idiot is spared type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"idiot-is-spared\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameIdiotIsSparedEvent = wrapper.findComponent(GameIdiotIsSparedEvent);\n\n expect(gameIdiotIsSparedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render elder has taken revenge event component when current game event is elder has taken revenge type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"elder-has-taken-revenge\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameElderHasTakenRevengeEvent = wrapper.findComponent(GameElderHasTakenRevengeEvent);\n\n expect(gameElderHasTakenRevengeEvent.exists()).toBeTruthy();\n });\n\n it(\"should render bear growls or sleeps event component when current game event is bear growls type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"bear-growls\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameBearGrowlsEvent = wrapper.findComponent(GameBearGrowlsOrSleepsEvent);\n\n expect(gameBearGrowlsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render bear growls or sleeps event component when current game event is bear sleeps type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"bear-sleeps\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameBearSleepsEvent = wrapper.findComponent(GameBearGrowlsOrSleepsEvent);\n\n expect(gameBearSleepsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render fox may have sniffed event component when current game event is fox may have sniffed type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"fox-may-have-sniffed\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const foxEvent = wrapper.findComponent(GameFoxMayHaveSniffedEvent);\n\n expect(foxEvent.exists()).toBeTruthy();\n });\n\n it(\"should render thief may have chosen card event component when current game event is thief may have chosen card type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"thief-may-have-chosen-card\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const thiefEvent = wrapper.findComponent(GameThiefMayHaveChosenCardEvent);\n\n expect(thiefEvent.exists()).toBeTruthy();\n });\n\n it(\"should render wild child has transformed event component when current game event is wild child has transformed type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"wild-child-has-transformed\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const wildChildEvent = wrapper.findComponent(GameWildChildHasTransformedEvent);\n\n expect(wildChildEvent.exists()).toBeTruthy();\n });\n\n it(\"should render actor may have chosen card event component when current game event is actor may have chosen card type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"actor-may-have-chosen-card\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const actorEvent = wrapper.findComponent(GameActorMayHaveChosenCardEvent);\n\n expect(actorEvent.exists()).toBeTruthy();\n });\n\n it(\"should render scandalmonger mark is active event component when current game event is scandalmonger mark is active type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"scandalmonger-mark-is-active\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const scandalmongerEvent = wrapper.findComponent(GameScandalmongerMarkIsActiveEvent);\n\n expect(scandalmongerEvent.exists()).toBeTruthy();\n });\n\n it(\"should not render any game event component when there is no current game event.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [];\n await nextTick();\n const gameStartsEvent = wrapper.findComponent(GameStartsEvent);\n const gameTurnStartsEvent = wrapper.findComponent(GameTurnStartsEvent);\n const gamePhaseStartsEvent = wrapper.findComponent(GamePhaseStartsEvent);\n\n expect(gameStartsEvent.exists()).toBeFalsy();\n expect(gameTurnStartsEvent.exists()).toBeFalsy();\n expect(gamePhaseStartsEvent.exists()).toBeFalsy();\n });\n });\n});" - }, - "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.nuxt.spec.ts": { - "tests": [ + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Three Brothers game turn starts event when the current play source is Three Brothers." + }, { "id": "183", - "name": "Game Playground Header Current Play Component should match snapshot when rendered." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Two Sisters game turn starts event when the current play source is Two Sisters." }, { "id": "184", - "name": "Game Playground Header Current Play Component Current play SVG icon should not render the current play SVG icon when the current play is unknown." + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Werewolves game turn starts event when the current play source is Werewolves." }, { "id": "185", - "name": "Game Playground Header Current Play Component Current play SVG icon 'should render the current play SVG ic…'" + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render White Werewolf game turn starts event when the current play source is White Werewolf." }, { "id": "186", - "name": "Game Playground Header Current Play Component Current play text 'should render the current play text f…'" - } - ], - "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport type { mount } from \"@vue/test-utils\";\n\nimport GamePlaygroundHeaderCurrentPlay from \"~/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.vue\";\nimport type { GamePlay } from \"~/composables/api/game/types/game-play/game-play.class\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\nimport { createFakeGamePlaySource } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play-source/game-play-source.factory\";\nimport { createFakeGamePlay, createFakeGamePlayAccursedWolfFatherInfects, createFakeGamePlayActorChoosesCard, createFakeGamePlayBigBadWolfEats, createFakeGamePlayCharmedMeetEachOther, createFakeGamePlayCupidCharms, createFakeGamePlayDefenderProtects, createFakeGamePlayFoxSniffs, createFakeGamePlayHunterShoots, createFakeGamePlayLoversMeetEachOther, createFakeGamePlayPiedPiperCharms, createFakeGamePlayScandalmongerMarks, createFakeGamePlayScapegoatBansVoting, createFakeGamePlaySeerLooks, createFakeGamePlaySheriffDelegates, createFakeGamePlaySheriffSettlesVotes, createFakeGamePlayStutteringJudgeRequestsAnotherVote, createFakeGamePlaySurvivorsBuryDeadBodies, createFakeGamePlaySurvivorsElectSheriff, createFakeGamePlaySurvivorsVote, createFakeGamePlayThiefChoosesCard, createFakeGamePlayThreeBrothersMeetEachOther, createFakeGamePlayTwoSistersMeetEachOther, createFakeGamePlayWerewolvesEat, createFakeGamePlayWhiteWerewolfEats, createFakeGamePlayWildChildChoosesModel, createFakeGamePlayWitchUsesPotions, createFakeGamePlayWolfHoundChoosesSide } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play.factory\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Playground Header Current Play Component\", () => {\n let wrapper: ReturnType>;\n const testingPinia = {\n initialState: {\n [StoreIds.GAME]: {\n game: createFakeGame({\n currentPlay: createFakeGamePlay({\n source: createFakeGamePlaySource({ name: \"sheriff\" }),\n action: \"delegate\",\n }),\n }),\n },\n },\n };\n\n async function mountGamePlaygroundHeaderCurrentPlayComponent(): Promise>> {\n return mountSuspendedComponent(GamePlaygroundHeaderCurrentPlay, { global: { plugins: [createTestingPinia(testingPinia)] } });\n }\n\n beforeEach(async() => {\n wrapper = await mountGamePlaygroundHeaderCurrentPlayComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Current play SVG icon\", () => {\n it(\"should not render the current play SVG icon when the current play is unknown.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.currentPlay = createFakeGamePlay({\n source: createFakeGamePlaySource({ name: \"hunter\" }),\n action: \"delegate\",\n });\n await nextTick();\n const currentPlayIcon = wrapper.find(\"[alt='Current play icon']\");\n\n expect(currentPlayIcon.exists()).toBeFalsy();\n });\n\n it.each<{\n currentGamePlay: GamePlay;\n expectedIconPath: string;\n test: string;\n }>([\n {\n currentGamePlay: createFakeGamePlayAccursedWolfFatherInfects(),\n expectedIconPath: \"/svg/role/accursed-wolf-father.svg\",\n test: \"should render the current play SVG icon for the accursed wolf father infects.\",\n },\n {\n currentGamePlay: createFakeGamePlayActorChoosesCard(),\n expectedIconPath: \"/svg/role/actor.svg\",\n test: \"should render the current play SVG icon for the actor chooses card.\",\n },\n {\n currentGamePlay: createFakeGamePlayBigBadWolfEats(),\n expectedIconPath: \"/svg/role/big-bad-wolf.svg\",\n test: \"should render the current play SVG icon for the big bad wolf eats.\",\n },\n {\n currentGamePlay: createFakeGamePlayCharmedMeetEachOther(),\n expectedIconPath: \"/svg/role/pied-piper.svg\",\n test: \"should render the current play SVG icon for the charmed meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayCupidCharms(),\n expectedIconPath: \"/svg/role/cupid.svg\",\n test: \"should render the current play SVG icon for the cupid charms.\",\n },\n {\n currentGamePlay: createFakeGamePlayDefenderProtects(),\n expectedIconPath: \"/svg/role/defender.svg\",\n test: \"should render the current play SVG icon for the defender protects.\",\n },\n {\n currentGamePlay: createFakeGamePlayFoxSniffs(),\n expectedIconPath: \"/svg/role/fox.svg\",\n test: \"should render the current play SVG icon for the fox sniffs.\",\n },\n {\n currentGamePlay: createFakeGamePlayHunterShoots(),\n expectedIconPath: \"/svg/role/hunter.svg\",\n test: \"should render the current play SVG icon for the hunter shoots.\",\n },\n {\n currentGamePlay: createFakeGamePlayLoversMeetEachOther(),\n expectedIconPath: \"/svg/role/lovers.svg\",\n test: \"should render the current play SVG icon for the lovers meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayPiedPiperCharms(),\n expectedIconPath: \"/svg/role/pied-piper.svg\",\n test: \"should render the current play SVG icon for the pied piper charms.\",\n },\n {\n currentGamePlay: createFakeGamePlayScandalmongerMarks(),\n expectedIconPath: \"/svg/role/scandalmonger.svg\",\n test: \"should render the current play SVG icon for the scandalmonger marks.\",\n },\n {\n currentGamePlay: createFakeGamePlayScapegoatBansVoting(),\n expectedIconPath: \"/svg/role/scapegoat.svg\",\n test: \"should render the current play SVG icon for the scapegoat bans voting.\",\n },\n {\n currentGamePlay: createFakeGamePlaySeerLooks(),\n expectedIconPath: \"/svg/role/seer.svg\",\n test: \"should render the current play SVG icon for the seer looks.\",\n },\n {\n currentGamePlay: createFakeGamePlaySheriffDelegates(),\n expectedIconPath: \"/svg/game/player/player-attribute/sheriff.svg\",\n test: \"should render the current play SVG icon for the sheriff delegates.\",\n },\n {\n currentGamePlay: createFakeGamePlaySheriffSettlesVotes(),\n expectedIconPath: \"/svg/game/game-play/game-play-action/settle-votes.svg\",\n test: \"should render the current play SVG icon for the sheriff settles votes.\",\n },\n {\n currentGamePlay: createFakeGamePlayStutteringJudgeRequestsAnotherVote(),\n expectedIconPath: \"/svg/role/stuttering-judge.svg\",\n test: \"should render the current play SVG icon for the stuttering judge requests another vote.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsBuryDeadBodies(),\n expectedIconPath: \"/svg/game/player/dead.svg\",\n test: \"should render the current play SVG icon for the survivors bury dead bodies.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsElectSheriff(),\n expectedIconPath: \"/svg/game/player/player-attribute/sheriff.svg\",\n test: \"should render the current play SVG icon for the survivors elect sheriff.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsVote(),\n expectedIconPath: \"/svg/game/game-play/game-play-action/vote.svg\",\n test: \"should render the current play SVG icon for the survivors vote.\",\n },\n {\n currentGamePlay: createFakeGamePlayThiefChoosesCard(),\n expectedIconPath: \"/svg/role/thief.svg\",\n test: \"should render the current play SVG icon for the thief chooses card.\",\n },\n {\n currentGamePlay: createFakeGamePlayThreeBrothersMeetEachOther(),\n expectedIconPath: \"/svg/role/three-brothers.svg\",\n test: \"should render the current play SVG icon for the three brothers meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayTwoSistersMeetEachOther(),\n expectedIconPath: \"/svg/role/two-sisters.svg\",\n test: \"should render the current play SVG icon for the two sisters meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayWerewolvesEat(),\n expectedIconPath: \"/svg/role/werewolf.svg\",\n test: \"should render the current play SVG icon for the werewolves eat.\",\n },\n {\n currentGamePlay: createFakeGamePlayWhiteWerewolfEats(),\n expectedIconPath: \"/svg/role/white-werewolf.svg\",\n test: \"should render the current play SVG icon for the white werewolf eats.\",\n },\n {\n currentGamePlay: createFakeGamePlayWildChildChoosesModel(),\n expectedIconPath: \"/svg/role/wild-child.svg\",\n test: \"should render the current play SVG icon for the wild child chooses model.\",\n },\n {\n currentGamePlay: createFakeGamePlayWitchUsesPotions(),\n expectedIconPath: \"/svg/role/witch.svg\",\n test: \"should render the current play SVG icon for the witch uses potions.\",\n },\n {\n currentGamePlay: createFakeGamePlayWolfHoundChoosesSide(),\n expectedIconPath: \"/svg/role/wolf-hound.svg\",\n test: \"should render the current play SVG icon for the wolf hound chooses side.\",\n },\n ])(\"$test\", async({ currentGamePlay, expectedIconPath }) => {\n const gameStore = useGameStore();\n gameStore.game.currentPlay = currentGamePlay;\n await nextTick();\n const currentPlayIcon = wrapper.find(\"[alt='Current play icon']\");\n\n expect(currentPlayIcon.attributes(\"src\")).toBe(expectedIconPath);\n });\n });\n\n describe(\"Current play text\", () => {\n it.each<{\n currentGamePlay: GamePlay | null;\n expectedText: string;\n test: string;\n }>([\n {\n currentGamePlay: null,\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.unknownGamePlay\",\n test: \"should render the current play text for an unknown game play when game current play is null.\",\n },\n {\n currentGamePlay: createFakeGamePlay({\n source: createFakeGamePlaySource({ name: \"hunter\" }),\n action: \"delegate\",\n }),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.unknownGamePlay\",\n test: \"should render the current play text for an unknown game play.\",\n },\n {\n currentGamePlay: createFakeGamePlayAccursedWolfFatherInfects(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.accursedWolfFatherInfects\",\n test: \"should render the current play text for the accursed wolf father infects.\",\n },\n {\n currentGamePlay: createFakeGamePlayActorChoosesCard(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.actorChoosesCard\",\n test: \"should render the current play text for the actor chooses card.\",\n },\n {\n currentGamePlay: createFakeGamePlayBigBadWolfEats(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.bigBadWolfEats\",\n test: \"should render the current play text for the big bad wolf eats.\",\n },\n {\n currentGamePlay: createFakeGamePlayCharmedMeetEachOther(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.charmedPeopleMeetEachOther\",\n test: \"should render the current play text for the charmed meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayCupidCharms(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.cupidCharms\",\n test: \"should render the current play text for the cupid charms.\",\n },\n {\n currentGamePlay: createFakeGamePlayDefenderProtects(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.defenderProtects\",\n test: \"should render the current play text for the defender protects.\",\n },\n {\n currentGamePlay: createFakeGamePlayFoxSniffs(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.foxSniffs\",\n test: \"should render the current play text for the fox sniffs.\",\n },\n {\n currentGamePlay: createFakeGamePlayHunterShoots(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.hunterShoots\",\n test: \"should render the current play text for the hunter shoots.\",\n },\n {\n currentGamePlay: createFakeGamePlayLoversMeetEachOther(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.loversMeetEachOther\",\n test: \"should render the current play text for the lovers meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayPiedPiperCharms(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.piedPiperCharms\",\n test: \"should render the current play text for the pied piper charms.\",\n },\n {\n currentGamePlay: createFakeGamePlayScandalmongerMarks(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.scandalmongerMarks\",\n test: \"should render the current play text for the scandalmonger marks.\",\n },\n {\n currentGamePlay: createFakeGamePlayScapegoatBansVoting(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.scapegoatBansVoting\",\n test: \"should render the current play text for the scapegoat bans voting.\",\n },\n {\n currentGamePlay: createFakeGamePlaySeerLooks(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.seerLooks\",\n test: \"should render the current play text for the seer looks.\",\n },\n {\n currentGamePlay: createFakeGamePlaySheriffDelegates(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.sheriffDelegates\",\n test: \"should render the current play text for the sheriff delegates.\",\n },\n {\n currentGamePlay: createFakeGamePlaySheriffSettlesVotes(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.sheriffSettlesVotes\",\n test: \"should render the current play text for the sheriff settles votes.\",\n },\n {\n currentGamePlay: createFakeGamePlayStutteringJudgeRequestsAnotherVote(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.stutteringJudgeRequestsAnotherVote\",\n test: \"should render the current play text for the stuttering judge requests another vote.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsBuryDeadBodies(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.survivorsBuryDeadBodies\",\n test: \"should render the current play text for the survivors bury dead bodies.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsElectSheriff(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.survivorsElectSheriff\",\n test: \"should render the current play text for the survivors elect sheriff.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsVote(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.survivorsVote\",\n test: \"should render the current play text for the survivors vote.\",\n },\n {\n currentGamePlay: createFakeGamePlayThiefChoosesCard(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.thiefChoosesCard\",\n test: \"should render the current play text for the thief chooses card.\",\n },\n {\n currentGamePlay: createFakeGamePlayThreeBrothersMeetEachOther(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.threeBrothersMeetEachOther\",\n test: \"should render the current play text for the three brothers meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayTwoSistersMeetEachOther(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.twoSistersMeetEachOther\",\n test: \"should render the current play text for the two sisters meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayWerewolvesEat(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.werewolvesEat\",\n test: \"should render the current play text for the werewolves eat.\",\n },\n {\n currentGamePlay: createFakeGamePlayWhiteWerewolfEats(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.whiteWerewolfEats\",\n test: \"should render the current play text for the white werewolf eats.\",\n },\n {\n currentGamePlay: createFakeGamePlayWildChildChoosesModel(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.wildChildChoosesModel\",\n test: \"should render the current play text for the wild child chooses model.\",\n },\n {\n currentGamePlay: createFakeGamePlayWitchUsesPotions(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.witchUsesPotions\",\n test: \"should render the current play text for the witch uses potions.\",\n },\n {\n currentGamePlay: createFakeGamePlayWolfHoundChoosesSide(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.wolfHoundChoosesSide\",\n test: \"should render the current play text for the wolf hound chooses side.\",\n },\n ])(\"$test\", async({ currentGamePlay, expectedText }) => {\n const gameStore = useGameStore();\n gameStore.game.currentPlay = currentGamePlay;\n await nextTick();\n const currentPlayText = wrapper.find(\"#current-play-text\");\n\n expect(currentPlayText.text()).toBe(expectedText);\n });\n });\n});" - }, - "tests/unit/specs/composables/api/game/useMakeGamePlayDtoValidation.spec.ts": { - "tests": [ + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Wild Child game turn starts event when the current play source is Wild Child." + }, { "id": "187", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return false when current play…'" + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Witch game turn starts event when the current play source is Witch." }, { "id": "188", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return false when interactions…'" + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render Wolf Hound game turn starts event when the current play source is Wolf Hound." }, { "id": "189", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return false when votes are un…'" - }, + "name": "Game Turn Start Event Component Game Turn Starts Event Component type should render unknown game starts event text when the current play is null." + } + ], + "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\nimport GameAccursedWolfFatherTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent.vue\";\nimport GameActorTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameActorTurnStartsEvent/GameActorTurnStartsEvent.vue\";\nimport GameBigBadWolfTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameBigBadWolfTurnStartsEvent/GameBigBadWolfTurnStartsEvent.vue\";\nimport GameCharmedTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameCharmedTurnStartsEvent/GameCharmedTurnStartsEvent.vue\";\nimport GameCupidTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameCupidTurnStartsEvent/GameCupidTurnStartsEvent.vue\";\nimport GameDefenderTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameDefenderTurnStartsEvent/GameDefenderTurnStartsEvent.vue\";\nimport GameFoxTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameFoxTurnStartsEvent/GameFoxTurnStartsEvent.vue\";\nimport GameHunterTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameHunterTurnStartsEvent/GameHunterTurnStartsEvent.vue\";\nimport GameLoversTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameLoversTurnStartsEvent/GameLoversTurnStartsEvent.vue\";\nimport GamePiedPiperTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GamePiedPiperTurnStartsEvent/GamePiedPiperTurnStartsEvent.vue\";\nimport GameScandalmongerTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScandalmongerTurnStartsEvent/GameScandalmongerTurnStartsEvent.vue\";\nimport GameScapegoatTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScapegoatTurnStartsEvent/GameScapegoatTurnStartsEvent.vue\";\nimport GameSeerTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSeerTurnStartsEvent/GameSeerTurnStartsEvent.vue\";\nimport GameSheriffTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSheriffTurnStartsEvent/GameSheriffTurnStartsEvent.vue\";\nimport GameStutteringJudgeTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameStutteringJudgeTurnStartsEvent/GameStutteringJudgeTurnStartsEvent.vue\";\nimport GameSurvivorsTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSurvivorsTurnStartsEvent/GameSurvivorsTurnStartsEvent.vue\";\nimport GameThiefTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThiefTurnStartsEvent/GameThiefTurnStartsEvent.vue\";\nimport GameThreeBrothersTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThreeBrothersTurnStartsEvent/GameThreeBrothersTurnStartsEvent.vue\";\nimport GameTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.vue\";\nimport GameTwoSistersTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTwoSistersTurnStartsEvent/GameTwoSistersTurnStartsEvent.vue\";\nimport GameWerewolvesTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.vue\";\nimport GameWhiteWerewolfTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent.vue\";\nimport GameWildChildTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWildChildTurnStartsEvent/GameWildChildTurnStartsEvent.vue\";\nimport GameWitchTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWitchTurnStartsEvent/GameWitchTurnStartsEvent.vue\";\nimport GameWolfHoundTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWolfHoundTurnStartsEvent/GameWolfHoundTurnStartsEvent.vue\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\nimport { createFakeGamePlayAccursedWolfFatherInfects, createFakeGamePlayActorChoosesCard, createFakeGamePlayBigBadWolfEats, createFakeGamePlayCharmedMeetEachOther, createFakeGamePlayCupidCharms, createFakeGamePlaySurvivorsVote, createFakeGamePlayDefenderProtects, createFakeGamePlayHunterShoots, createFakeGamePlayLoversMeetEachOther, createFakeGamePlayPiedPiperCharms, createFakeGamePlayFoxSniffs, createFakeGamePlaySeerLooks, createFakeGamePlaySheriffSettlesVotes, createFakeGamePlayWerewolvesEat, createFakeGamePlayThiefChoosesCard, createFakeGamePlayStutteringJudgeRequestsAnotherVote, createFakeGamePlayTwoSistersMeetEachOther, createFakeGamePlayWhiteWerewolfEats, createFakeGamePlayThreeBrothersMeetEachOther, createFakeGamePlayWildChildChoosesModel, createFakeGamePlayWitchUsesPotions, createFakeGamePlayWolfHoundChoosesSide, createFakeGamePlayScapegoatBansVoting, createFakeGamePlayScandalmongerMarks } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play.factory\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\n\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Turn Start Event Component\", () => {\n let wrapper: ReturnType>;\n const testingPinia = { initialState: { [StoreIds.GAME]: { game: createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote() }) } } };\n\n async function mountGameTurnStartsEventComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameTurnStartsEvent, {\n global: { plugins: [createTestingPinia(testingPinia)] },\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameTurnStartsEventComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Game Turn Starts Event Component type\", () => {\n it(\"should render Accursed Wolf Father game turn starts event when the current play source is Accursed Wolf Father.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayAccursedWolfFatherInfects() });\n await nextTick();\n const component = wrapper.findComponent(GameAccursedWolfFatherTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Actor game turn starts event when the current play source is Actor.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayActorChoosesCard() });\n await nextTick();\n const component = wrapper.findComponent(GameActorTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Big Bad Wolf game turn starts event when the current play source is Big Bad Wolf.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayBigBadWolfEats() });\n await nextTick();\n const component = wrapper.findComponent(GameBigBadWolfTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Charmed game turn starts event when the current play source is Charmed.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayCharmedMeetEachOther() });\n await nextTick();\n const component = wrapper.findComponent(GameCharmedTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Cupid game turn starts event when the current play source is Cupid.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayCupidCharms() });\n await nextTick();\n const component = wrapper.findComponent(GameCupidTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Defender game turn starts event when the current play source is Defender.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayDefenderProtects() });\n await nextTick();\n const component = wrapper.findComponent(GameDefenderTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Fox game turn starts event when the current play source is Fox.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayFoxSniffs() });\n await nextTick();\n const component = wrapper.findComponent(GameFoxTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Hunter game turn starts event when the current play source is Hunter.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayHunterShoots() });\n await nextTick();\n const component = wrapper.findComponent(GameHunterTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Lovers game turn starts event when the current play source is Lovers.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayLoversMeetEachOther() });\n await nextTick();\n const component = wrapper.findComponent(GameLoversTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Pied Piper game turn starts event when the current play source is Pied Piper.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayPiedPiperCharms() });\n await nextTick();\n const component = wrapper.findComponent(GamePiedPiperTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Scandalmonger game turn starts event when the current play source is Scandalmonger.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayScandalmongerMarks() });\n await nextTick();\n const component = wrapper.findComponent(GameScandalmongerTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Scapegoat game turn starts event when the current play source is Scapegoat.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayScapegoatBansVoting() });\n await nextTick();\n const component = wrapper.findComponent(GameScapegoatTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Seer game turn starts event when the current play source is Seer.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlaySeerLooks() });\n await nextTick();\n const component = wrapper.findComponent(GameSeerTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Sheriff game turn starts event when the current play source is Sheriff.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlaySheriffSettlesVotes() });\n await nextTick();\n const component = wrapper.findComponent(GameSheriffTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Stuttering Judge game turn starts event when the current play source is Stuttering Judge.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayStutteringJudgeRequestsAnotherVote() });\n await nextTick();\n const component = wrapper.findComponent(GameStutteringJudgeTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Survivors game turn starts event when the current play source is Survivors.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote() });\n await nextTick();\n const component = wrapper.findComponent(GameSurvivorsTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Thief game turn starts event when the current play source is Thief.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayThiefChoosesCard() });\n await nextTick();\n const component = wrapper.findComponent(GameThiefTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Three Brothers game turn starts event when the current play source is Three Brothers.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayThreeBrothersMeetEachOther() });\n await nextTick();\n const component = wrapper.findComponent(GameThreeBrothersTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Two Sisters game turn starts event when the current play source is Two Sisters.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayTwoSistersMeetEachOther() });\n await nextTick();\n const component = wrapper.findComponent(GameTwoSistersTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Werewolves game turn starts event when the current play source is Werewolves.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWerewolvesEat() });\n await nextTick();\n const component = wrapper.findComponent(GameWerewolvesTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render White Werewolf game turn starts event when the current play source is White Werewolf.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWhiteWerewolfEats() });\n await nextTick();\n const component = wrapper.findComponent(GameWhiteWerewolfTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Wild Child game turn starts event when the current play source is Wild Child.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWildChildChoosesModel() });\n await nextTick();\n const component = wrapper.findComponent(GameWildChildTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Witch game turn starts event when the current play source is Witch.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWitchUsesPotions() });\n await nextTick();\n const component = wrapper.findComponent(GameWitchTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n });\n\n it(\"should render Wolf Hound game turn starts event when the current play source is Wolf Hound.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide() });\n await nextTick();\n const component = wrapper.findComponent(GameWolfHoundTurnStartsEvent);\n\n expect(component.exists()).toBeTruthy();\n expect(component.attributes(\"is\")).toBeUndefined();\n });\n\n it(\"should render unknown game starts event text when the current play is null.\", async() => {\n const gameStore = useGameStore();\n gameStore.game = createFakeGame({ currentPlay: null });\n await nextTick();\n const component = wrapper.find(\"#unknown-game-turn-starts-event\");\n\n expect(component.text()).toBe(\"Unknown game turn starts event\");\n });\n });\n});" + }, + "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.nuxt.spec.ts": { + "tests": [ { "id": "190", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return false when votes don\\'t…'" + "name": "Game Events Monitor Current Event Component should match snapshot when rendered." }, { "id": "191", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return true when votes are equ…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render game starts event component when current game event is game starts type." }, { "id": "192", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return true when votes are gre…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render game turn starts event component when current game event is game turn starts type." }, { "id": "193", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return false when current play…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render game phase starts event component when current game event is game phase starts type." }, { "id": "194", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return false when eligible tar…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render player dies event component when current game event is player dies type." }, { "id": "195", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return false when targets are …'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render seer has seen event component when current game event is seer has seen type." }, { "id": "196", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return false when targets don\\…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render sheriff has been elected event component when current game event is sheriff has been elected type." }, { "id": "197", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return true when targets are e…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render scandalmonger has marked event component when current game event is scandalmonger has marked type." }, { "id": "198", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return true when targets are g…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render accursed wolf father may have infected event component when current game event is accursed wolf father may have infected type." }, { "id": "199", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseCardTypeAndValid 'should return false when current play…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render villager villager introduction event component when current game event is villager villager introduction type." }, { "id": "200", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseCardTypeAndValid 'should return false when chosen card …'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render pied piper has charmed event component when current game event is pied piper has charmed type." }, { "id": "201", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseCardTypeAndValid 'should return true when chosen card i…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render cupid has charmed event component when current game event is cupid has charmed type." }, { "id": "202", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseSideTypeAndValid 'should return false when current play…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render wolf hound has chosen side event component when current game event is wolf hound has chosen side type." }, { "id": "203", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseSideTypeAndValid 'should return false when chosen side …'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render idiot is spared event component when current game event is idiot is spared type." }, { "id": "204", - "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseSideTypeAndValid 'should return true when chosen side i…'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render elder has taken revenge event component when current game event is elder has taken revenge type." }, { "id": "205", - "name": "Use Make Game Play Dto Validation Composable canCurrentPlayBeSkipped should return false when current play can't be skipped." + "name": "Game Events Monitor Current Event Component Current Game Event Component should render bear growls or sleeps event component when current game event is bear growls type." }, { "id": "206", - "name": "Use Make Game Play Dto Validation Composable canCurrentPlayBeSkipped should return true when current play can be skipped." + "name": "Game Events Monitor Current Event Component Current Game Event Component should render bear growls or sleeps event component when current game event is bear sleeps type." }, { "id": "207", - "name": "Use Make Game Play Dto Validation Composable canMakeGamePlay 'should return true when current play …'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render fox may have sniffed event component when current game event is fox may have sniffed type." }, { "id": "208", - "name": "Use Make Game Play Dto Validation Composable canMakeGamePlay 'should return true when current game …'" + "name": "Game Events Monitor Current Event Component Current Game Event Component should render thief may have chosen card event component when current game event is thief may have chosen card type." }, { "id": "209", - "name": "Use Make Game Play Dto Validation Composable canMakeGamePlay 'should return false when make game pl…'" - } - ], - "source": "import type { MakeGamePlayDto } from \"~/composables/api/game/dto/make-game-play/make-game-play.dto\";\nimport type { Game } from \"~/composables/api/game/types/game.class\";\nimport { useMakeGamePlayDtoValidation } from \"~/composables/api/game/useMakeGamePlayDtoValidation\";\nimport { createFakeMakeGamePlayTargetDto } from \"@tests/unit/utils/factories/composables/api/game/dto/make-game-play/make-game-play-target/make-game-play-target.dto.factory\";\nimport { createFakeMakeGamePlayVoteDto } from \"@tests/unit/utils/factories/composables/api/game/dto/make-game-play/make-game-play-vote/make-game-play-vote.dto.factory\";\nimport { createFakeMakeGamePlayDto } from \"@tests/unit/utils/factories/composables/api/game/dto/make-game-play/make-game-play.dto.factory\";\nimport { createFakeGamePlaySourceInteractionBoundaries } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play-source/game-play-source-interaction/game-play-source-interaction-boundaries/game-play-source-interaction-boundaries.factory\";\nimport { createFakeGamePlaySourceInteraction } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play-source/game-play-source-interaction/game-play-source-interaction.factory\";\nimport { createFakeGamePlaySource } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play-source/game-play-source.factory\";\nimport { createFakeGamePlay, createFakeGamePlayActorChoosesCard, createFakeGamePlaySurvivorsVote, createFakeGamePlayThiefChoosesCard, createFakeGamePlayWerewolvesEat, createFakeGamePlayWolfHoundChoosesSide } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play.factory\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\n\ndescribe(\"Use Make Game Play Dto Validation Composable\", () => {\n describe(\"isCurrentGamePlayVoteTypeAndValid\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n game: createFakeGame({ currentPlay: null }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [createFakeMakeGamePlayVoteDto()] }),\n expected: false,\n test: \"should return false when current play is null.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWerewolvesEat() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [createFakeMakeGamePlayVoteDto()] }),\n expected: false,\n test: \"should return false when current play type is 'target'.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote({ source: createFakeGamePlaySource({ interactions: [] }) }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [] }),\n expected: false,\n test: \"should return false when interactions are empty.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when votes are undefined in make game play dto.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [] }),\n expected: false,\n test: \"should return false when votes don't reach the minimum boundary.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [createFakeMakeGamePlayVoteDto()] }),\n expected: true,\n test: \"should return true when votes are equal to eligible targets boundaries min.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({\n votes: [\n createFakeMakeGamePlayVoteDto(),\n createFakeMakeGamePlayVoteDto(),\n ],\n }),\n expected: true,\n test: \"should return true when votes are greater than eligible targets boundaries min.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { isCurrentGamePlayVoteTypeAndValid } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(isCurrentGamePlayVoteTypeAndValid.value).toBe(expected);\n });\n });\n\n describe(\"isCurrentGamePlayTargetTypeAndValid\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n game: createFakeGame({ currentPlay: null }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [createFakeMakeGamePlayTargetDto()] }),\n expected: false,\n test: \"should return false when current play is null.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [createFakeMakeGamePlayTargetDto()] }),\n expected: false,\n test: \"should return false when current play type is 'vote'.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWerewolvesEat() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [createFakeMakeGamePlayTargetDto()] }),\n expected: false,\n test: \"should return false when eligible targets are undefined.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when targets are undefined in make game play dto.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [] }),\n expected: false,\n test: \"should return false when targets don't reach the minimum boundary.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [createFakeMakeGamePlayTargetDto()] }),\n expected: true,\n test: \"should return true when targets are equal to eligible targets boundaries min.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({\n targets: [\n createFakeMakeGamePlayTargetDto(),\n createFakeMakeGamePlayTargetDto(),\n ],\n }),\n expected: true,\n test: \"should return true when targets are greater than eligible targets boundaries min.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { isCurrentGamePlayTargetTypeAndValid } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(isCurrentGamePlayTargetTypeAndValid.value).toBe(expected);\n });\n });\n\n describe(\"isCurrentGamePlayChooseCardTypeAndValid\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n game: createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenCardId: \"1\" }),\n expected: false,\n test: \"should return false when current play type is 'vote'.\",\n },\n {\n game: createFakeGame({ currentPlay: null }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenCardId: \"1\" }),\n expected: false,\n test: \"should return false when current play is null.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayThiefChoosesCard() }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when chosen card id is undefined.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayThiefChoosesCard() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenCardId: \"1\" }),\n expected: true,\n test: \"should return true when chosen card id is defined.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { isCurrentGamePlayChooseCardTypeAndValid } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(isCurrentGamePlayChooseCardTypeAndValid.value).toBe(expected);\n });\n });\n\n describe(\"isCurrentGamePlayChooseSideTypeAndValid\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n game: createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenSide: \"villagers\" }),\n expected: false,\n test: \"should return false when current play type is 'vote'.\",\n },\n {\n game: createFakeGame({ currentPlay: null }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenSide: \"villagers\" }),\n expected: false,\n test: \"should return false when current play is null.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide() }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when chosen side is undefined.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenSide: \"villagers\" }),\n expected: true,\n test: \"should return true when chosen side is defined.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { isCurrentGamePlayChooseSideTypeAndValid } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(isCurrentGamePlayChooseSideTypeAndValid.value).toBe(expected);\n });\n });\n\n describe(\"canCurrentPlayBeSkipped\", () => {\n it(\"should return false when current play can't be skipped.\", () => {\n const game = ref(createFakeGame({ currentPlay: createFakeGamePlay({ canBeSkipped: false }) }));\n const makeGamePlayDto = ref(createFakeMakeGamePlayDto());\n const { canCurrentPlayBeSkipped } = useMakeGamePlayDtoValidation(makeGamePlayDto, game);\n\n expect(canCurrentPlayBeSkipped.value).toBeFalsy();\n });\n\n it(\"should return true when current play can be skipped.\", () => {\n const game = ref(createFakeGame({ currentPlay: createFakeGamePlay({ canBeSkipped: true }) }));\n const makeGamePlayDto = ref(createFakeMakeGamePlayDto());\n const { canCurrentPlayBeSkipped } = useMakeGamePlayDtoValidation(makeGamePlayDto, game);\n\n expect(canCurrentPlayBeSkipped.value).toBeTruthy();\n });\n });\n\n describe(\"canMakeGamePlay\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n test: \"should return true when current play can be skipped.\",\n game: createFakeGame({ currentPlay: createFakeGamePlay({ canBeSkipped: true }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: true,\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({\n votes: [\n createFakeMakeGamePlayVoteDto(),\n createFakeMakeGamePlayVoteDto(),\n ],\n }),\n expected: true,\n test: \"should return true when current game play type is vote and votes are greater than eligible targets boundaries min.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({\n targets: [\n createFakeMakeGamePlayTargetDto(),\n createFakeMakeGamePlayTargetDto(),\n ],\n }),\n expected: true,\n test: \"should return true when current game play type is target and targets are greater than eligible targets boundaries min.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayActorChoosesCard({ action: \"choose-card\" }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenCardId: \"1\" }),\n expected: true,\n test: \"should return true when current game play type is choose card and chosen card id is defined.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide({ action: \"choose-side\" }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenSide: \"villagers\" }),\n expected: true,\n test: \"should return true when current game play type is choose side and chosen side is defined.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide({ action: \"choose-side\" }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when make game play dto is not valid in any case.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { canMakeGamePlay } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(canMakeGamePlay.value).toBe(expected);\n });\n });\n});" - }, - "tests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts": { - "tests": [ + "name": "Game Events Monitor Current Event Component Current Game Event Component should render wild child has transformed event component when current game event is wild child has transformed type." + }, { "id": "210", - "name": "Game Lobby Page should match snapshot when rendered." + "name": "Game Events Monitor Current Event Component Current Game Event Component should render actor may have chosen card event component when current game event is actor may have chosen card type." }, { "id": "211", - "name": "Game Lobby Page should set head title and meta tags when rendered." + "name": "Game Events Monitor Current Event Component Current Game Event Component should render scandalmonger mark is active event component when current game event is scandalmonger mark is active type." }, { "id": "212", - "name": "Game Lobby Page Game Lobby Players Party should reset create game dto when rendered." - }, + "name": "Game Events Monitor Current Event Component Current Game Event Component should not render any game event component when there is no current game event." + } + ], + "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport { createFakeGameEvent } from \"@tests/unit/utils/factories/composables/api/game/game-event/game-event.factory\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { ComponentMountingOptions } from \"@vue/test-utils/dist/mount\";\nimport GameAccursedWolfFatherMayHaveInfectedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameAccursedWolfFatherMayHaveInfectedEvent/GameAccursedWolfFatherMayHaveInfectedEvent.vue\";\nimport GameActorMayHaveChosenCardEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameActorMayHaveChosenCardEvent/GameActorMayHaveChosenCardEvent.vue\";\nimport GameBearGrowlsOrSleepsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameBearGrowlsOrSleepsEvent/GameBearGrowlsOrSleepsEvent.vue\";\nimport GameCupidHasCharmedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameCupidHasCharmedEvent/GameCupidHasCharmedEvent.vue\";\nimport GameElderHasTakenRevengeEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameElderHasTakenRevengeEvent/GameElderHasTakenRevengeEvent.vue\";\nimport GameEventsMonitorCurrentEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameEventsMonitorCurrentEvent.vue\";\nimport GameFoxMayHaveSniffedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameFoxMayHaveSniffedEvent/GameFoxMayHaveSniffedEvent.vue\";\nimport GameIdiotIsSparedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameIdiotIsSparedEvent/GameIdiotIsSparedEvent.vue\";\nimport GamePhaseStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePhaseStartsEvent/GamePhaseStartsEvent.vue\";\nimport GamePiedPiperHasCharmedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePiedPiperHasCharmedEvent/GamePiedPiperHasCharmedEvent.vue\";\nimport GamePlayerDiesEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameDeathEvent/GameDeathEvent.vue\";\nimport GameScandalmongerMarkIsActiveEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMarkIsActiveEvent/GameScandalmongerMarkIsActiveEvent.vue\";\nimport GameScandalmongerMayHaveMarkedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMayHaveMarkedEvent/GameScandalmongerMayHaveMarkedEvent.vue\";\nimport GameSeerHasSeenEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSeerHasSeenEvent/GameSeerHasSeenEvent.vue\";\nimport GameSheriffHasBeenElectedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSheriffPromotionEvent/GameSheriffPromotionEvent.vue\";\nimport GameStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.vue\";\nimport GameThiefMayHaveChosenCardEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.vue\";\nimport GameTurnStartsEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTurnStartsEvent.vue\";\nimport GameVillagerVillagerIntroductionEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameVillagerVillagerIntroductionEvent/GameVillagerVillagerIntroductionEvent.vue\";\nimport GameWildChildHasTransformedEvent from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWildChildHasTransformedEvent/GameWildChildHasTransformedEvent.vue\";\nimport GameWolfHoundHasChosenSide from \"~/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWolfHoundHasChosenSideEvent/GameWolfHoundHasChosenSideEvent.vue\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\n\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\nimport { useGameEventsStore } from \"~/stores/game/game-event/useGameEventsStore\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\n\ndescribe(\"Game Events Monitor Current Event Component\", () => {\n let wrapper: ReturnType>;\n const defaultGame = createFakeGame({\n events: [\n createFakeGameEvent({ type: \"game-starts\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ],\n });\n const testingPinia = {\n initialState: {\n [StoreIds.GAME]: {\n game: defaultGame,\n },\n },\n };\n\n async function mountGameEventsMonitorCurrentEventComponent(options: ComponentMountingOptions = {}):\n Promise>> {\n return mountSuspendedComponent(GameEventsMonitorCurrentEvent, {\n global: { plugins: [createTestingPinia(testingPinia)] },\n ...options,\n });\n }\n\n beforeEach(async() => {\n wrapper = await mountGameEventsMonitorCurrentEventComponent();\n const gameStore = useGameStore();\n gameStore.game = createFakeGame(defaultGame);\n const gameEventsStore = useGameEventsStore();\n gameEventsStore.currentGameEventIndex = 0;\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Current Game Event Component\", () => {\n it(\"should render game starts event component when current game event is game starts type.\", () => {\n const gameStartsEvent = wrapper.findComponent(GameStartsEvent);\n\n expect(gameStartsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render game turn starts event component when current game event is game turn starts type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n createFakeGameEvent({ type: \"game-phase-starts\" }),\n ];\n await nextTick();\n const gameTurnStartsEvent = wrapper.findComponent(GameTurnStartsEvent);\n\n expect(gameTurnStartsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render game phase starts event component when current game event is game phase starts type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"game-phase-starts\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gamePhaseStartsEvent = wrapper.findComponent(GamePhaseStartsEvent);\n\n expect(gamePhaseStartsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render player dies event component when current game event is player dies type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"death\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const playerDiesEvent = wrapper.findComponent(GamePlayerDiesEvent);\n\n expect(playerDiesEvent.exists()).toBeTruthy();\n });\n\n it(\"should render seer has seen event component when current game event is seer has seen type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"seer-has-seen\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameSeerHasSeenEvent = wrapper.findComponent(GameSeerHasSeenEvent);\n\n expect(gameSeerHasSeenEvent.exists()).toBeTruthy();\n });\n\n it(\"should render sheriff has been elected event component when current game event is sheriff has been elected type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"sheriff-promotion\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameSheriffHasBeenElectedEvent = wrapper.findComponent(GameSheriffHasBeenElectedEvent);\n\n expect(gameSheriffHasBeenElectedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render scandalmonger has marked event component when current game event is scandalmonger has marked type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"scandalmonger-may-have-marked\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameScandalmongerHasMarkedEvent = wrapper.findComponent(GameScandalmongerMayHaveMarkedEvent);\n\n expect(gameScandalmongerHasMarkedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render accursed wolf father may have infected event component when current game event is accursed wolf father may have infected type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"accursed-wolf-father-may-have-infected\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameAccursedWolfFatherMayHaveInfectedEvent = wrapper.findComponent(GameAccursedWolfFatherMayHaveInfectedEvent);\n\n expect(gameAccursedWolfFatherMayHaveInfectedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render villager villager introduction event component when current game event is villager villager introduction type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"villager-villager-introduction\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameVillagerVillagerIntroductionEvent = wrapper.findComponent(GameVillagerVillagerIntroductionEvent);\n\n expect(gameVillagerVillagerIntroductionEvent.exists()).toBeTruthy();\n });\n\n it(\"should render pied piper has charmed event component when current game event is pied piper has charmed type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"pied-piper-has-charmed\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gamePiedPiperHasCharmedEvent = wrapper.findComponent(GamePiedPiperHasCharmedEvent);\n\n expect(gamePiedPiperHasCharmedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render cupid has charmed event component when current game event is cupid has charmed type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"cupid-has-charmed\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gamePiedPiperHasCharmedEvent = wrapper.findComponent(GameCupidHasCharmedEvent);\n\n expect(gamePiedPiperHasCharmedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render wolf hound has chosen side event component when current game event is wolf hound has chosen side type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"wolf-hound-has-chosen-side\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameWolfHoundHasChosenSideEvent = wrapper.findComponent(GameWolfHoundHasChosenSide);\n\n expect(gameWolfHoundHasChosenSideEvent.exists()).toBeTruthy();\n });\n\n it(\"should render idiot is spared event component when current game event is idiot is spared type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"idiot-is-spared\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameIdiotIsSparedEvent = wrapper.findComponent(GameIdiotIsSparedEvent);\n\n expect(gameIdiotIsSparedEvent.exists()).toBeTruthy();\n });\n\n it(\"should render elder has taken revenge event component when current game event is elder has taken revenge type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"elder-has-taken-revenge\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameElderHasTakenRevengeEvent = wrapper.findComponent(GameElderHasTakenRevengeEvent);\n\n expect(gameElderHasTakenRevengeEvent.exists()).toBeTruthy();\n });\n\n it(\"should render bear growls or sleeps event component when current game event is bear growls type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"bear-growls\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameBearGrowlsEvent = wrapper.findComponent(GameBearGrowlsOrSleepsEvent);\n\n expect(gameBearGrowlsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render bear growls or sleeps event component when current game event is bear sleeps type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"bear-sleeps\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const gameBearSleepsEvent = wrapper.findComponent(GameBearGrowlsOrSleepsEvent);\n\n expect(gameBearSleepsEvent.exists()).toBeTruthy();\n });\n\n it(\"should render fox may have sniffed event component when current game event is fox may have sniffed type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"fox-may-have-sniffed\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const foxEvent = wrapper.findComponent(GameFoxMayHaveSniffedEvent);\n\n expect(foxEvent.exists()).toBeTruthy();\n });\n\n it(\"should render thief may have chosen card event component when current game event is thief may have chosen card type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"thief-may-have-chosen-card\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const thiefEvent = wrapper.findComponent(GameThiefMayHaveChosenCardEvent);\n\n expect(thiefEvent.exists()).toBeTruthy();\n });\n\n it(\"should render wild child has transformed event component when current game event is wild child has transformed type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"wild-child-has-transformed\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const wildChildEvent = wrapper.findComponent(GameWildChildHasTransformedEvent);\n\n expect(wildChildEvent.exists()).toBeTruthy();\n });\n\n it(\"should render actor may have chosen card event component when current game event is actor may have chosen card type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"actor-may-have-chosen-card\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const actorEvent = wrapper.findComponent(GameActorMayHaveChosenCardEvent);\n\n expect(actorEvent.exists()).toBeTruthy();\n });\n\n it(\"should render scandalmonger mark is active event component when current game event is scandalmonger mark is active type.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [\n createFakeGameEvent({ type: \"scandalmonger-mark-is-active\" }),\n createFakeGameEvent({ type: \"game-turn-starts\" }),\n ];\n await nextTick();\n const scandalmongerEvent = wrapper.findComponent(GameScandalmongerMarkIsActiveEvent);\n\n expect(scandalmongerEvent.exists()).toBeTruthy();\n });\n\n it(\"should not render any game event component when there is no current game event.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.events = [];\n await nextTick();\n const gameStartsEvent = wrapper.findComponent(GameStartsEvent);\n const gameTurnStartsEvent = wrapper.findComponent(GameTurnStartsEvent);\n const gamePhaseStartsEvent = wrapper.findComponent(GamePhaseStartsEvent);\n\n expect(gameStartsEvent.exists()).toBeFalsy();\n expect(gameTurnStartsEvent.exists()).toBeFalsy();\n expect(gamePhaseStartsEvent.exists()).toBeFalsy();\n });\n });\n});" + }, + "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.nuxt.spec.ts": { + "tests": [ { "id": "213", - "name": "Game Lobby Page Game Lobby Players Party should reset game when rendered." + "name": "Game Playground Header Current Play Component should match snapshot when rendered." }, { "id": "214", - "name": "Game Lobby Page Game Lobby Players Party should load all audios when rendered." + "name": "Game Playground Header Current Play Component Current play SVG icon should not render the current play SVG icon when the current play is unknown." }, { "id": "215", - "name": "Game Lobby Page Game Lobby Role Picker should open role picker modal when game lobby players party emits pick role for player event." + "name": "Game Playground Header Current Play Component Current play SVG icon 'should render the current play SVG ic…'" }, { "id": "216", - "name": "Game Lobby Page Game Lobby Role Picker should not open role picker modal when game lobby players party emits pick role for player event with no player." - }, + "name": "Game Playground Header Current Play Component Current play text 'should render the current play text f…'" + } + ], + "source": "import { createTestingPinia } from \"@pinia/testing\";\nimport type { mount } from \"@vue/test-utils\";\n\nimport GamePlaygroundHeaderCurrentPlay from \"~/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCurrentPlay/GamePlaygroundHeaderCurrentPlay.vue\";\nimport type { GamePlay } from \"~/composables/api/game/types/game-play/game-play.class\";\nimport { StoreIds } from \"~/stores/enums/store.enum\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\nimport { createFakeGamePlaySource } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play-source/game-play-source.factory\";\nimport { createFakeGamePlay, createFakeGamePlayAccursedWolfFatherInfects, createFakeGamePlayActorChoosesCard, createFakeGamePlayBigBadWolfEats, createFakeGamePlayCharmedMeetEachOther, createFakeGamePlayCupidCharms, createFakeGamePlayDefenderProtects, createFakeGamePlayFoxSniffs, createFakeGamePlayHunterShoots, createFakeGamePlayLoversMeetEachOther, createFakeGamePlayPiedPiperCharms, createFakeGamePlayScandalmongerMarks, createFakeGamePlayScapegoatBansVoting, createFakeGamePlaySeerLooks, createFakeGamePlaySheriffDelegates, createFakeGamePlaySheriffSettlesVotes, createFakeGamePlayStutteringJudgeRequestsAnotherVote, createFakeGamePlaySurvivorsBuryDeadBodies, createFakeGamePlaySurvivorsElectSheriff, createFakeGamePlaySurvivorsVote, createFakeGamePlayThiefChoosesCard, createFakeGamePlayThreeBrothersMeetEachOther, createFakeGamePlayTwoSistersMeetEachOther, createFakeGamePlayWerewolvesEat, createFakeGamePlayWhiteWerewolfEats, createFakeGamePlayWildChildChoosesModel, createFakeGamePlayWitchUsesPotions, createFakeGamePlayWolfHoundChoosesSide } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play.factory\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\n\ndescribe(\"Game Playground Header Current Play Component\", () => {\n let wrapper: ReturnType>;\n const testingPinia = {\n initialState: {\n [StoreIds.GAME]: {\n game: createFakeGame({\n currentPlay: createFakeGamePlay({\n source: createFakeGamePlaySource({ name: \"sheriff\" }),\n action: \"delegate\",\n }),\n }),\n },\n },\n };\n\n async function mountGamePlaygroundHeaderCurrentPlayComponent(): Promise>> {\n return mountSuspendedComponent(GamePlaygroundHeaderCurrentPlay, { global: { plugins: [createTestingPinia(testingPinia)] } });\n }\n\n beforeEach(async() => {\n wrapper = await mountGamePlaygroundHeaderCurrentPlayComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n describe(\"Current play SVG icon\", () => {\n it(\"should not render the current play SVG icon when the current play is unknown.\", async() => {\n const gameStore = useGameStore();\n gameStore.game.currentPlay = createFakeGamePlay({\n source: createFakeGamePlaySource({ name: \"hunter\" }),\n action: \"delegate\",\n });\n await nextTick();\n const currentPlayIcon = wrapper.find(\"[alt='Current play icon']\");\n\n expect(currentPlayIcon.exists()).toBeFalsy();\n });\n\n it.each<{\n currentGamePlay: GamePlay;\n expectedIconPath: string;\n test: string;\n }>([\n {\n currentGamePlay: createFakeGamePlayAccursedWolfFatherInfects(),\n expectedIconPath: \"/svg/role/accursed-wolf-father.svg\",\n test: \"should render the current play SVG icon for the accursed wolf father infects.\",\n },\n {\n currentGamePlay: createFakeGamePlayActorChoosesCard(),\n expectedIconPath: \"/svg/role/actor.svg\",\n test: \"should render the current play SVG icon for the actor chooses card.\",\n },\n {\n currentGamePlay: createFakeGamePlayBigBadWolfEats(),\n expectedIconPath: \"/svg/role/big-bad-wolf.svg\",\n test: \"should render the current play SVG icon for the big bad wolf eats.\",\n },\n {\n currentGamePlay: createFakeGamePlayCharmedMeetEachOther(),\n expectedIconPath: \"/svg/role/pied-piper.svg\",\n test: \"should render the current play SVG icon for the charmed meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayCupidCharms(),\n expectedIconPath: \"/svg/role/cupid.svg\",\n test: \"should render the current play SVG icon for the cupid charms.\",\n },\n {\n currentGamePlay: createFakeGamePlayDefenderProtects(),\n expectedIconPath: \"/svg/role/defender.svg\",\n test: \"should render the current play SVG icon for the defender protects.\",\n },\n {\n currentGamePlay: createFakeGamePlayFoxSniffs(),\n expectedIconPath: \"/svg/role/fox.svg\",\n test: \"should render the current play SVG icon for the fox sniffs.\",\n },\n {\n currentGamePlay: createFakeGamePlayHunterShoots(),\n expectedIconPath: \"/svg/role/hunter.svg\",\n test: \"should render the current play SVG icon for the hunter shoots.\",\n },\n {\n currentGamePlay: createFakeGamePlayLoversMeetEachOther(),\n expectedIconPath: \"/svg/role/lovers.svg\",\n test: \"should render the current play SVG icon for the lovers meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayPiedPiperCharms(),\n expectedIconPath: \"/svg/role/pied-piper.svg\",\n test: \"should render the current play SVG icon for the pied piper charms.\",\n },\n {\n currentGamePlay: createFakeGamePlayScandalmongerMarks(),\n expectedIconPath: \"/svg/role/scandalmonger.svg\",\n test: \"should render the current play SVG icon for the scandalmonger marks.\",\n },\n {\n currentGamePlay: createFakeGamePlayScapegoatBansVoting(),\n expectedIconPath: \"/svg/role/scapegoat.svg\",\n test: \"should render the current play SVG icon for the scapegoat bans voting.\",\n },\n {\n currentGamePlay: createFakeGamePlaySeerLooks(),\n expectedIconPath: \"/svg/role/seer.svg\",\n test: \"should render the current play SVG icon for the seer looks.\",\n },\n {\n currentGamePlay: createFakeGamePlaySheriffDelegates(),\n expectedIconPath: \"/svg/game/player/player-attribute/sheriff.svg\",\n test: \"should render the current play SVG icon for the sheriff delegates.\",\n },\n {\n currentGamePlay: createFakeGamePlaySheriffSettlesVotes(),\n expectedIconPath: \"/svg/game/game-play/game-play-action/settle-votes.svg\",\n test: \"should render the current play SVG icon for the sheriff settles votes.\",\n },\n {\n currentGamePlay: createFakeGamePlayStutteringJudgeRequestsAnotherVote(),\n expectedIconPath: \"/svg/role/stuttering-judge.svg\",\n test: \"should render the current play SVG icon for the stuttering judge requests another vote.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsBuryDeadBodies(),\n expectedIconPath: \"/svg/game/player/dead.svg\",\n test: \"should render the current play SVG icon for the survivors bury dead bodies.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsElectSheriff(),\n expectedIconPath: \"/svg/game/player/player-attribute/sheriff.svg\",\n test: \"should render the current play SVG icon for the survivors elect sheriff.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsVote(),\n expectedIconPath: \"/svg/game/game-play/game-play-action/vote.svg\",\n test: \"should render the current play SVG icon for the survivors vote.\",\n },\n {\n currentGamePlay: createFakeGamePlayThiefChoosesCard(),\n expectedIconPath: \"/svg/role/thief.svg\",\n test: \"should render the current play SVG icon for the thief chooses card.\",\n },\n {\n currentGamePlay: createFakeGamePlayThreeBrothersMeetEachOther(),\n expectedIconPath: \"/svg/role/three-brothers.svg\",\n test: \"should render the current play SVG icon for the three brothers meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayTwoSistersMeetEachOther(),\n expectedIconPath: \"/svg/role/two-sisters.svg\",\n test: \"should render the current play SVG icon for the two sisters meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayWerewolvesEat(),\n expectedIconPath: \"/svg/role/werewolf.svg\",\n test: \"should render the current play SVG icon for the werewolves eat.\",\n },\n {\n currentGamePlay: createFakeGamePlayWhiteWerewolfEats(),\n expectedIconPath: \"/svg/role/white-werewolf.svg\",\n test: \"should render the current play SVG icon for the white werewolf eats.\",\n },\n {\n currentGamePlay: createFakeGamePlayWildChildChoosesModel(),\n expectedIconPath: \"/svg/role/wild-child.svg\",\n test: \"should render the current play SVG icon for the wild child chooses model.\",\n },\n {\n currentGamePlay: createFakeGamePlayWitchUsesPotions(),\n expectedIconPath: \"/svg/role/witch.svg\",\n test: \"should render the current play SVG icon for the witch uses potions.\",\n },\n {\n currentGamePlay: createFakeGamePlayWolfHoundChoosesSide(),\n expectedIconPath: \"/svg/role/wolf-hound.svg\",\n test: \"should render the current play SVG icon for the wolf hound chooses side.\",\n },\n ])(\"$test\", async({ currentGamePlay, expectedIconPath }) => {\n const gameStore = useGameStore();\n gameStore.game.currentPlay = currentGamePlay;\n await nextTick();\n const currentPlayIcon = wrapper.find(\"[alt='Current play icon']\");\n\n expect(currentPlayIcon.attributes(\"src\")).toBe(expectedIconPath);\n });\n });\n\n describe(\"Current play text\", () => {\n it.each<{\n currentGamePlay: GamePlay | null;\n expectedText: string;\n test: string;\n }>([\n {\n currentGamePlay: null,\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.unknownGamePlay\",\n test: \"should render the current play text for an unknown game play when game current play is null.\",\n },\n {\n currentGamePlay: createFakeGamePlay({\n source: createFakeGamePlaySource({ name: \"hunter\" }),\n action: \"delegate\",\n }),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.unknownGamePlay\",\n test: \"should render the current play text for an unknown game play.\",\n },\n {\n currentGamePlay: createFakeGamePlayAccursedWolfFatherInfects(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.accursedWolfFatherInfects\",\n test: \"should render the current play text for the accursed wolf father infects.\",\n },\n {\n currentGamePlay: createFakeGamePlayActorChoosesCard(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.actorChoosesCard\",\n test: \"should render the current play text for the actor chooses card.\",\n },\n {\n currentGamePlay: createFakeGamePlayBigBadWolfEats(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.bigBadWolfEats\",\n test: \"should render the current play text for the big bad wolf eats.\",\n },\n {\n currentGamePlay: createFakeGamePlayCharmedMeetEachOther(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.charmedPeopleMeetEachOther\",\n test: \"should render the current play text for the charmed meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayCupidCharms(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.cupidCharms\",\n test: \"should render the current play text for the cupid charms.\",\n },\n {\n currentGamePlay: createFakeGamePlayDefenderProtects(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.defenderProtects\",\n test: \"should render the current play text for the defender protects.\",\n },\n {\n currentGamePlay: createFakeGamePlayFoxSniffs(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.foxSniffs\",\n test: \"should render the current play text for the fox sniffs.\",\n },\n {\n currentGamePlay: createFakeGamePlayHunterShoots(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.hunterShoots\",\n test: \"should render the current play text for the hunter shoots.\",\n },\n {\n currentGamePlay: createFakeGamePlayLoversMeetEachOther(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.loversMeetEachOther\",\n test: \"should render the current play text for the lovers meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayPiedPiperCharms(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.piedPiperCharms\",\n test: \"should render the current play text for the pied piper charms.\",\n },\n {\n currentGamePlay: createFakeGamePlayScandalmongerMarks(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.scandalmongerMarks\",\n test: \"should render the current play text for the scandalmonger marks.\",\n },\n {\n currentGamePlay: createFakeGamePlayScapegoatBansVoting(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.scapegoatBansVoting\",\n test: \"should render the current play text for the scapegoat bans voting.\",\n },\n {\n currentGamePlay: createFakeGamePlaySeerLooks(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.seerLooks\",\n test: \"should render the current play text for the seer looks.\",\n },\n {\n currentGamePlay: createFakeGamePlaySheriffDelegates(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.sheriffDelegates\",\n test: \"should render the current play text for the sheriff delegates.\",\n },\n {\n currentGamePlay: createFakeGamePlaySheriffSettlesVotes(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.sheriffSettlesVotes\",\n test: \"should render the current play text for the sheriff settles votes.\",\n },\n {\n currentGamePlay: createFakeGamePlayStutteringJudgeRequestsAnotherVote(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.stutteringJudgeRequestsAnotherVote\",\n test: \"should render the current play text for the stuttering judge requests another vote.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsBuryDeadBodies(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.survivorsBuryDeadBodies\",\n test: \"should render the current play text for the survivors bury dead bodies.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsElectSheriff(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.survivorsElectSheriff\",\n test: \"should render the current play text for the survivors elect sheriff.\",\n },\n {\n currentGamePlay: createFakeGamePlaySurvivorsVote(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.survivorsVote\",\n test: \"should render the current play text for the survivors vote.\",\n },\n {\n currentGamePlay: createFakeGamePlayThiefChoosesCard(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.thiefChoosesCard\",\n test: \"should render the current play text for the thief chooses card.\",\n },\n {\n currentGamePlay: createFakeGamePlayThreeBrothersMeetEachOther(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.threeBrothersMeetEachOther\",\n test: \"should render the current play text for the three brothers meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayTwoSistersMeetEachOther(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.twoSistersMeetEachOther\",\n test: \"should render the current play text for the two sisters meet each other.\",\n },\n {\n currentGamePlay: createFakeGamePlayWerewolvesEat(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.werewolvesEat\",\n test: \"should render the current play text for the werewolves eat.\",\n },\n {\n currentGamePlay: createFakeGamePlayWhiteWerewolfEats(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.whiteWerewolfEats\",\n test: \"should render the current play text for the white werewolf eats.\",\n },\n {\n currentGamePlay: createFakeGamePlayWildChildChoosesModel(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.wildChildChoosesModel\",\n test: \"should render the current play text for the wild child chooses model.\",\n },\n {\n currentGamePlay: createFakeGamePlayWitchUsesPotions(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.witchUsesPotions\",\n test: \"should render the current play text for the witch uses potions.\",\n },\n {\n currentGamePlay: createFakeGamePlayWolfHoundChoosesSide(),\n expectedText: \"components.GamePlaygroundHeaderCurrentPlay.wolfHoundChoosesSide\",\n test: \"should render the current play text for the wolf hound chooses side.\",\n },\n ])(\"$test\", async({ currentGamePlay, expectedText }) => {\n const gameStore = useGameStore();\n gameStore.game.currentPlay = currentGamePlay;\n await nextTick();\n const currentPlayText = wrapper.find(\"#current-play-text\");\n\n expect(currentPlayText.text()).toBe(expectedText);\n });\n });\n});" + }, + "tests/unit/specs/composables/api/game/useMakeGamePlayDtoValidation.spec.ts": { + "tests": [ { "id": "217", - "name": "Game Lobby Page Game Lobby Role Picker should throw error when game lobby players party emits pick role for player event but the role picker is not found in refs." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return false when current play…'" }, { "id": "218", - "name": "Game Lobby Page Game Lobby Options Hub should open game lobby options hub when game lobby players party emits open options hub event." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return false when interactions…'" }, { "id": "219", - "name": "Game Lobby Page Game Lobby Options Hub should throw error when game lobby header emits game options button click event but the options hub is not found in refs." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return false when votes are un…'" }, { "id": "220", - "name": "Game Lobby Page Game Lobby Position Coordinator should open game lobby position coordinator when game lobby players party emits position coordinator button click event." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return false when votes don\\'t…'" }, { "id": "221", - "name": "Game Lobby Page Game Lobby Position Coordinator should throw error when game lobby header emits position coordinator button click event but the position coordinator is not found in refs." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return true when votes are equ…'" }, { "id": "222", - "name": "Game Lobby Page Game Lobby Additional Cards Manager should open game lobby additional cards manager when game lobby players party emits additional cards button click event." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayVoteTypeAndValid 'should return true when votes are gre…'" }, { "id": "223", - "name": "Game Lobby Page Game Lobby Additional Cards Manager should throw error when game lobby header emits additional cards button click event but the additional cards manager is not found in refs." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return false when current play…'" }, { "id": "224", - "name": "Game Lobby Page Reject Players Position Step should throw error when reject players position step event is emitted by footer but header is not defined in refs." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return false when eligible tar…'" }, { "id": "225", - "name": "Game Lobby Page Reject Players Position Step should highlight position coordinator button when reject players position step event is emitted by footer." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return false when targets are …'" }, { "id": "226", - "name": "Game Lobby Page Reject Players Position Step should open position coordinator after timeout when reject players position step event is emitted by footer." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return false when targets don\\…'" }, { "id": "227", - "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should throw error when reject thief additional cards placed step event is emitted by footer but header is not defined in refs." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return true when targets are e…'" }, { "id": "228", - "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should highlight additional cards manager button when reject thief additional cards placed step event is emitted by footer." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayTargetTypeAndValid 'should return true when targets are g…'" }, { "id": "229", - "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should open additional cards manager after timeout when reject thief additional cards placed step event is emitted by footer." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseCardTypeAndValid 'should return false when current play…'" }, { "id": "230", - "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should throw error when reject actor additional cards placed step event is emitted by footer but header is not defined in refs." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseCardTypeAndValid 'should return false when chosen card …'" }, { "id": "231", - "name": "Game Lobby Page Reject Thief or Actor Additional Cards Placed Step should highlight additional cards manager button when reject actor additional cards placed step event is emitted by footer." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseCardTypeAndValid 'should return true when chosen card i…'" }, { "id": "232", - "name": "Game Lobby Page Reject Game Options Changed Step should throw error when reject game options changed step event is emitted by footer but header is not defined in refs." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseSideTypeAndValid 'should return false when current play…'" }, { "id": "233", - "name": "Game Lobby Page Reject Game Options Changed Step should highlight game options button when reject game options changed step event is emitted by footer." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseSideTypeAndValid 'should return false when chosen side …'" }, { "id": "234", - "name": "Game Lobby Page Reject Game Options Changed Step should open game options hub after timeout when reject game options changed step event is emitted by footer." + "name": "Use Make Game Play Dto Validation Composable isCurrentGamePlayChooseSideTypeAndValid 'should return true when chosen side i…'" }, { "id": "235", - "name": "Game Lobby Page Inject player from query should set players to create game dto when query is fulfilled with player names." + "name": "Use Make Game Play Dto Validation Composable canCurrentPlayBeSkipped should return false when current play can't be skipped." }, { "id": "236", - "name": "Game Lobby Page Inject player from query should not set players to create game dto when query is not fulfilled with player names." + "name": "Use Make Game Play Dto Validation Composable canCurrentPlayBeSkipped should return true when current play can be skipped." + }, + { + "id": "237", + "name": "Use Make Game Play Dto Validation Composable canMakeGamePlay 'should return true when current play …'" + }, + { + "id": "238", + "name": "Use Make Game Play Dto Validation Composable canMakeGamePlay 'should return true when current game …'" + }, + { + "id": "239", + "name": "Use Make Game Play Dto Validation Composable canMakeGamePlay 'should return false when make game pl…'" } ], - "source": "import { mockNuxtImport } from \"@nuxt/test-utils/runtime\";\nimport { createFakeUseRoute } from \"@tests/unit/utils/factories/composables/nuxt/useRoute.factory\";\nimport type { mount } from \"@vue/test-utils\";\nimport type { UseHeadInput } from \"unhead\";\nimport type { Mock } from \"vitest\";\nimport { expect } from \"vitest\";\nimport type { Ref } from \"vue\";\nimport type GameLobbyFooter from \"~/components/pages/game-lobby/GameLobbyFooter/GameLobbyFooter.vue\";\nimport type GameLobbyHeader from \"~/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.vue\";\n\nimport type GameLobbyPlayersParty from \"~/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.vue\";\nimport GameLobby from \"~/pages/game-lobby.vue\";\nimport { useAudioStore } from \"~/stores/audio/useAudioStore\";\nimport { useCreateGameDtoStore } from \"~/stores/game/create-game-dto/useCreateGameDtoStore\";\nimport { useGameStore } from \"~/stores/game/useGameStore\";\nimport { createFakeCreateGamePlayerDto } from \"@tests/unit/utils/factories/composables/api/game/dto/create-game/create-game-player/create-game-player.dto.factory\";\nimport { getError } from \"@tests/unit/utils/helpers/exception.helpers\";\nimport { mountSuspendedComponent } from \"@tests/unit/utils/helpers/mount.helpers\";\nimport type { VueVm } from \"@tests/unit/utils/types/vue-test-utils.types\";\n\nconst hoistedMocks = vi.hoisted(() => ({\n useRoute: {} as unknown as ReturnType,\n}));\n\nmockNuxtImport(\"useRoute\", () => vi.fn(() => hoistedMocks.useRoute));\n\ndescribe(\"Game Lobby Page\", () => {\n let wrapper: ReturnType>;\n let mocks: {\n components: {\n gameLobbyHeader: {\n highlightGameOptionsButton: Mock;\n highlightPositionCoordinatorButton: Mock;\n highlightAdditionalCardsManagerButton: Mock;\n };\n gameLobbyRolePicker: {\n openToPickRoleForPlayer: Mock;\n };\n gameLobbyOptionsHub: {\n open: Mock;\n };\n gameLobbyPositionCoordinator: {\n open: Mock;\n };\n gameLobbyAdditionalCardsManager: {\n open: Mock;\n };\n };\n };\n\n async function mountGameLobbyPageComponent(): Promise>> {\n mocks = {\n components: {\n gameLobbyHeader: {\n highlightGameOptionsButton: vi.fn(),\n highlightPositionCoordinatorButton: vi.fn(),\n highlightAdditionalCardsManagerButton: vi.fn(),\n },\n gameLobbyRolePicker: { openToPickRoleForPlayer: vi.fn() },\n gameLobbyOptionsHub: { open: vi.fn() },\n gameLobbyPositionCoordinator: { open: vi.fn() },\n gameLobbyAdditionalCardsManager: { open: vi.fn() },\n },\n };\n\n return mountSuspendedComponent(GameLobby, {\n global: {\n stubs: {\n GameLobbyHeader: {\n template: \"
\",\n methods: mocks.components.gameLobbyHeader,\n },\n GameLobbyRolePicker: {\n template: \"
\",\n methods: mocks.components.gameLobbyRolePicker,\n },\n GameLobbyOptionsHub: {\n template: \"
\",\n methods: mocks.components.gameLobbyOptionsHub,\n },\n GameLobbyPositionCoordinator: {\n template: \"
\",\n methods: mocks.components.gameLobbyPositionCoordinator,\n },\n GameLobbyAdditionalCardsManager: {\n template: \"
\",\n methods: mocks.components.gameLobbyAdditionalCardsManager,\n },\n },\n },\n });\n }\n\n beforeEach(async() => {\n hoistedMocks.useRoute = createFakeUseRoute();\n wrapper = await mountGameLobbyPageComponent();\n });\n\n it(\"should match snapshot when rendered.\", () => {\n expect(wrapper).toBeTruthy();\n expect(wrapper.html()).toMatchSnapshot();\n });\n\n it(\"should set head title and meta tags when rendered.\", () => {\n const expectedUseHeadInput: UseHeadInput = {\n title: \"pages.gameLobby.startGame\",\n meta: [{ name: \"description\", content: \"pages.gameLobby.seoDescription\" }],\n };\n\n expect(useHead).toHaveBeenCalledExactlyOnceWith(expectedUseHeadInput);\n });\n\n describe(\"Game Lobby Players Party\", () => {\n it(\"should reset create game dto when rendered.\", () => {\n const createGameDtoStore = useCreateGameDtoStore();\n\n expect(createGameDtoStore.resetCreateGameDto).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should reset game when rendered.\", () => {\n const gameStore = useGameStore();\n\n expect(gameStore.resetGame).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should load all audios when rendered.\", () => {\n const audioStore = useAudioStore();\n\n expect(audioStore.loadAllAudios).toHaveBeenCalledExactlyOnceWith();\n });\n });\n\n describe(\"Game Lobby Role Picker\", () => {\n it(\"should open role picker modal when game lobby players party emits pick role for player event.\", async() => {\n const emittedPlayer = createFakeCreateGamePlayerDto();\n const gameLobbyPlayersParty = wrapper.findComponent(\"#game-lobby-players-party\");\n (gameLobbyPlayersParty.vm as VueVm).$emit(\"pick-role-for-player\", emittedPlayer);\n await nextTick();\n\n expect(mocks.components.gameLobbyRolePicker.openToPickRoleForPlayer).toHaveBeenCalledExactlyOnceWith(emittedPlayer);\n });\n\n it(\"should not open role picker modal when game lobby players party emits pick role for player event with no player.\", async() => {\n const gameLobbyPlayersParty = wrapper.findComponent(\"#game-lobby-players-party\");\n (gameLobbyPlayersParty.vm as VueVm).$emit(\"pick-role-for-player\", undefined);\n await nextTick();\n\n expect(mocks.components.gameLobbyRolePicker.openToPickRoleForPlayer).not.toHaveBeenCalled();\n });\n\n it(\"should throw error when game lobby players party emits pick role for player event but the role picker is not found in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyRolePicker: Ref }).gameLobbyRolePicker.value = null;\n const gameLobbyPlayersParty = wrapper.findComponent(\"#game-lobby-players-party\");\n await getError(() => (gameLobbyPlayersParty.vm as VueVm).$emit(\"pick-role-for-player\", createFakeCreateGamePlayerDto()));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Role Picker is not defined\");\n });\n });\n\n describe(\"Game Lobby Options Hub\", () => {\n it(\"should open game lobby options hub when game lobby players party emits open options hub event.\", async() => {\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n (gameLobbyHeader.vm as VueVm).$emit(\"game-options-button-click\");\n await nextTick();\n\n expect(mocks.components.gameLobbyOptionsHub.open).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should throw error when game lobby header emits game options button click event but the options hub is not found in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyOptionsHub: Ref }).gameLobbyOptionsHub.value = null;\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n await getError(() => (gameLobbyHeader.vm as VueVm).$emit(\"game-options-button-click\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Options Hub is not defined\");\n });\n });\n\n describe(\"Game Lobby Position Coordinator\", () => {\n it(\"should open game lobby position coordinator when game lobby players party emits position coordinator button click event.\", async() => {\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n (gameLobbyHeader.vm as VueVm).$emit(\"position-coordinator-button-click\");\n await nextTick();\n\n expect(mocks.components.gameLobbyPositionCoordinator.open).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should throw error when game lobby header emits position coordinator button click event but the position coordinator is not found in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyPositionCoordinator: Ref }).gameLobbyPositionCoordinator.value = null;\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n await getError(() => (gameLobbyHeader.vm as VueVm).$emit(\"position-coordinator-button-click\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Position Coordinator is not defined\");\n });\n });\n\n describe(\"Game Lobby Additional Cards Manager\", () => {\n it(\"should open game lobby additional cards manager when game lobby players party emits additional cards button click event.\", async() => {\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n (gameLobbyHeader.vm as VueVm).$emit(\"additional-cards-manager-button-click\");\n await nextTick();\n\n expect(mocks.components.gameLobbyAdditionalCardsManager.open).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should throw error when game lobby header emits additional cards button click event but the additional cards manager is not found in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyAdditionalCardsManager: Ref }).gameLobbyAdditionalCardsManager.value = null;\n const gameLobbyHeader = wrapper.findComponent(\"#game-lobby-header\");\n await getError(() => (gameLobbyHeader.vm as VueVm).$emit(\"additional-cards-manager-button-click\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Additional Cards Manager is not defined\");\n });\n });\n\n describe(\"Reject Players Position Step\", () => {\n it(\"should throw error when reject players position step event is emitted by footer but header is not defined in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyHeader: Ref }).gameLobbyHeader.value = null;\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n await getError(() => (gameLobbyFooter.vm as VueVm).$emit(\"reject-players-position-step\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Header is not defined\");\n });\n\n it(\"should highlight position coordinator button when reject players position step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-players-position-step\");\n await nextTick();\n\n expect(mocks.components.gameLobbyHeader.highlightPositionCoordinatorButton).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should open position coordinator after timeout when reject players position step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-players-position-step\");\n vi.advanceTimersByTime(1000);\n await nextTick();\n\n expect(mocks.components.gameLobbyPositionCoordinator.open).toHaveBeenCalledExactlyOnceWith();\n });\n });\n\n describe(\"Reject Thief or Actor Additional Cards Placed Step\", () => {\n it(\"should throw error when reject thief additional cards placed step event is emitted by footer but header is not defined in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyHeader: Ref }).gameLobbyHeader.value = null;\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n await getError(() => (gameLobbyFooter.vm as VueVm).$emit(\"reject-thief-additional-cards-placed-step\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Header is not defined\");\n });\n\n it(\"should highlight additional cards manager button when reject thief additional cards placed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-thief-additional-cards-placed-step\");\n await nextTick();\n\n expect(mocks.components.gameLobbyHeader.highlightAdditionalCardsManagerButton).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should open additional cards manager after timeout when reject thief additional cards placed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-thief-additional-cards-placed-step\");\n vi.advanceTimersByTime(1000);\n await nextTick();\n\n expect(mocks.components.gameLobbyAdditionalCardsManager.open).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should throw error when reject actor additional cards placed step event is emitted by footer but header is not defined in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyHeader: Ref }).gameLobbyHeader.value = null;\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n await getError(() => (gameLobbyFooter.vm as VueVm).$emit(\"reject-actor-additional-cards-placed-step\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Header is not defined\");\n });\n\n it(\"should highlight additional cards manager button when reject actor additional cards placed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-actor-additional-cards-placed-step\");\n await nextTick();\n\n expect(mocks.components.gameLobbyHeader.highlightAdditionalCardsManagerButton).toHaveBeenCalledExactlyOnceWith();\n });\n });\n\n describe(\"Reject Game Options Changed Step\", () => {\n it(\"should throw error when reject game options changed step event is emitted by footer but header is not defined in refs.\", async() => {\n wrapper = await mountGameLobbyPageComponent();\n (wrapper.vm.$root?.$refs.VTU_COMPONENT as { gameLobbyHeader: Ref }).gameLobbyHeader.value = null;\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n await getError(() => (gameLobbyFooter.vm as VueVm).$emit(\"reject-game-options-changed-step\"));\n\n expect(createError).toHaveBeenCalledExactlyOnceWith(\"Game Lobby Header is not defined\");\n });\n\n it(\"should highlight game options button when reject game options changed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-game-options-changed-step\");\n await nextTick();\n\n expect(mocks.components.gameLobbyHeader.highlightGameOptionsButton).toHaveBeenCalledExactlyOnceWith();\n });\n\n it(\"should open game options hub after timeout when reject game options changed step event is emitted by footer.\", async() => {\n const gameLobbyFooter = wrapper.findComponent(\"#game-lobby-footer\");\n (gameLobbyFooter.vm as VueVm).$emit(\"reject-game-options-changed-step\");\n vi.advanceTimersByTime(1000);\n await nextTick();\n\n expect(mocks.components.gameLobbyOptionsHub.open).toHaveBeenCalledExactlyOnceWith();\n });\n });\n\n describe(\"Inject player from query\", () => {\n it(\"should set players to create game dto when query is fulfilled with player names.\", async() => {\n hoistedMocks.useRoute.query = { playerNames: [\"Antoine\", \"Benoit\", \"Corentin\"] };\n wrapper = await mountGameLobbyPageComponent();\n const createGameDtoStore = useCreateGameDtoStore();\n\n expect(createGameDtoStore.setPlayersToCreateGameDto).toHaveBeenCalledExactlyOnceWith([\n createFakeCreateGamePlayerDto({ name: \"Antoine\" }),\n createFakeCreateGamePlayerDto({ name: \"Benoit\" }),\n createFakeCreateGamePlayerDto({ name: \"Corentin\" }),\n ]);\n });\n\n it(\"should not set players to create game dto when query is not fulfilled with player names.\", async() => {\n hoistedMocks.useRoute.query = { toto: \"tata\" };\n wrapper = await mountGameLobbyPageComponent();\n const createGameDtoStore = useCreateGameDtoStore();\n\n expect(createGameDtoStore.setPlayersToCreateGameDto).not.toHaveBeenCalled();\n });\n });\n});" + "source": "import type { MakeGamePlayDto } from \"~/composables/api/game/dto/make-game-play/make-game-play.dto\";\nimport type { Game } from \"~/composables/api/game/types/game.class\";\nimport { useMakeGamePlayDtoValidation } from \"~/composables/api/game/useMakeGamePlayDtoValidation\";\nimport { createFakeMakeGamePlayTargetDto } from \"@tests/unit/utils/factories/composables/api/game/dto/make-game-play/make-game-play-target/make-game-play-target.dto.factory\";\nimport { createFakeMakeGamePlayVoteDto } from \"@tests/unit/utils/factories/composables/api/game/dto/make-game-play/make-game-play-vote/make-game-play-vote.dto.factory\";\nimport { createFakeMakeGamePlayDto } from \"@tests/unit/utils/factories/composables/api/game/dto/make-game-play/make-game-play.dto.factory\";\nimport { createFakeGamePlaySourceInteractionBoundaries } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play-source/game-play-source-interaction/game-play-source-interaction-boundaries/game-play-source-interaction-boundaries.factory\";\nimport { createFakeGamePlaySourceInteraction } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play-source/game-play-source-interaction/game-play-source-interaction.factory\";\nimport { createFakeGamePlaySource } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play-source/game-play-source.factory\";\nimport { createFakeGamePlay, createFakeGamePlayActorChoosesCard, createFakeGamePlaySurvivorsVote, createFakeGamePlayThiefChoosesCard, createFakeGamePlayWerewolvesEat, createFakeGamePlayWolfHoundChoosesSide } from \"@tests/unit/utils/factories/composables/api/game/game-play/game-play.factory\";\nimport { createFakeGame } from \"@tests/unit/utils/factories/composables/api/game/game.factory\";\n\ndescribe(\"Use Make Game Play Dto Validation Composable\", () => {\n describe(\"isCurrentGamePlayVoteTypeAndValid\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n game: createFakeGame({ currentPlay: null }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [createFakeMakeGamePlayVoteDto()] }),\n expected: false,\n test: \"should return false when current play is null.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWerewolvesEat() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [createFakeMakeGamePlayVoteDto()] }),\n expected: false,\n test: \"should return false when current play type is 'target'.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote({ source: createFakeGamePlaySource({ interactions: [] }) }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [] }),\n expected: false,\n test: \"should return false when interactions are empty.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when votes are undefined in make game play dto.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [] }),\n expected: false,\n test: \"should return false when votes don't reach the minimum boundary.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ votes: [createFakeMakeGamePlayVoteDto()] }),\n expected: true,\n test: \"should return true when votes are equal to eligible targets boundaries min.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({\n votes: [\n createFakeMakeGamePlayVoteDto(),\n createFakeMakeGamePlayVoteDto(),\n ],\n }),\n expected: true,\n test: \"should return true when votes are greater than eligible targets boundaries min.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { isCurrentGamePlayVoteTypeAndValid } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(isCurrentGamePlayVoteTypeAndValid.value).toBe(expected);\n });\n });\n\n describe(\"isCurrentGamePlayTargetTypeAndValid\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n game: createFakeGame({ currentPlay: null }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [createFakeMakeGamePlayTargetDto()] }),\n expected: false,\n test: \"should return false when current play is null.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [createFakeMakeGamePlayTargetDto()] }),\n expected: false,\n test: \"should return false when current play type is 'vote'.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWerewolvesEat() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [createFakeMakeGamePlayTargetDto()] }),\n expected: false,\n test: \"should return false when eligible targets are undefined.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when targets are undefined in make game play dto.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [] }),\n expected: false,\n test: \"should return false when targets don't reach the minimum boundary.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ targets: [createFakeMakeGamePlayTargetDto()] }),\n expected: true,\n test: \"should return true when targets are equal to eligible targets boundaries min.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({\n targets: [\n createFakeMakeGamePlayTargetDto(),\n createFakeMakeGamePlayTargetDto(),\n ],\n }),\n expected: true,\n test: \"should return true when targets are greater than eligible targets boundaries min.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { isCurrentGamePlayTargetTypeAndValid } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(isCurrentGamePlayTargetTypeAndValid.value).toBe(expected);\n });\n });\n\n describe(\"isCurrentGamePlayChooseCardTypeAndValid\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n game: createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenCardId: \"1\" }),\n expected: false,\n test: \"should return false when current play type is 'vote'.\",\n },\n {\n game: createFakeGame({ currentPlay: null }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenCardId: \"1\" }),\n expected: false,\n test: \"should return false when current play is null.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayThiefChoosesCard() }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when chosen card id is undefined.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayThiefChoosesCard() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenCardId: \"1\" }),\n expected: true,\n test: \"should return true when chosen card id is defined.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { isCurrentGamePlayChooseCardTypeAndValid } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(isCurrentGamePlayChooseCardTypeAndValid.value).toBe(expected);\n });\n });\n\n describe(\"isCurrentGamePlayChooseSideTypeAndValid\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n game: createFakeGame({ currentPlay: createFakeGamePlaySurvivorsVote() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenSide: \"villagers\" }),\n expected: false,\n test: \"should return false when current play type is 'vote'.\",\n },\n {\n game: createFakeGame({ currentPlay: null }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenSide: \"villagers\" }),\n expected: false,\n test: \"should return false when current play is null.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide() }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when chosen side is undefined.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide() }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenSide: \"villagers\" }),\n expected: true,\n test: \"should return true when chosen side is defined.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { isCurrentGamePlayChooseSideTypeAndValid } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(isCurrentGamePlayChooseSideTypeAndValid.value).toBe(expected);\n });\n });\n\n describe(\"canCurrentPlayBeSkipped\", () => {\n it(\"should return false when current play can't be skipped.\", () => {\n const game = ref(createFakeGame({ currentPlay: createFakeGamePlay({ canBeSkipped: false }) }));\n const makeGamePlayDto = ref(createFakeMakeGamePlayDto());\n const { canCurrentPlayBeSkipped } = useMakeGamePlayDtoValidation(makeGamePlayDto, game);\n\n expect(canCurrentPlayBeSkipped.value).toBeFalsy();\n });\n\n it(\"should return true when current play can be skipped.\", () => {\n const game = ref(createFakeGame({ currentPlay: createFakeGamePlay({ canBeSkipped: true }) }));\n const makeGamePlayDto = ref(createFakeMakeGamePlayDto());\n const { canCurrentPlayBeSkipped } = useMakeGamePlayDtoValidation(makeGamePlayDto, game);\n\n expect(canCurrentPlayBeSkipped.value).toBeTruthy();\n });\n });\n\n describe(\"canMakeGamePlay\", () => {\n it.each<{\n game: Game;\n makeGamePlayDto: MakeGamePlayDto;\n expected: boolean;\n test: string;\n }>([\n {\n test: \"should return true when current play can be skipped.\",\n game: createFakeGame({ currentPlay: createFakeGamePlay({ canBeSkipped: true }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: true,\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlaySurvivorsVote({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({\n votes: [\n createFakeMakeGamePlayVoteDto(),\n createFakeMakeGamePlayVoteDto(),\n ],\n }),\n expected: true,\n test: \"should return true when current game play type is vote and votes are greater than eligible targets boundaries min.\",\n },\n {\n game: createFakeGame({\n currentPlay: createFakeGamePlayWerewolvesEat({\n source: createFakeGamePlaySource({\n interactions: [\n createFakeGamePlaySourceInteraction({\n boundaries: createFakeGamePlaySourceInteractionBoundaries({\n min: 1,\n max: 2,\n }),\n }),\n ],\n }),\n }),\n }),\n makeGamePlayDto: createFakeMakeGamePlayDto({\n targets: [\n createFakeMakeGamePlayTargetDto(),\n createFakeMakeGamePlayTargetDto(),\n ],\n }),\n expected: true,\n test: \"should return true when current game play type is target and targets are greater than eligible targets boundaries min.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayActorChoosesCard({ action: \"choose-card\" }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenCardId: \"1\" }),\n expected: true,\n test: \"should return true when current game play type is choose card and chosen card id is defined.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide({ action: \"choose-side\" }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto({ chosenSide: \"villagers\" }),\n expected: true,\n test: \"should return true when current game play type is choose side and chosen side is defined.\",\n },\n {\n game: createFakeGame({ currentPlay: createFakeGamePlayWolfHoundChoosesSide({ action: \"choose-side\" }) }),\n makeGamePlayDto: createFakeMakeGamePlayDto(),\n expected: false,\n test: \"should return false when make game play dto is not valid in any case.\",\n },\n ])(\"$test\", ({ game, makeGamePlayDto, expected }) => {\n const { canMakeGamePlay } = useMakeGamePlayDtoValidation(ref(makeGamePlayDto), ref(game));\n\n expect(canMakeGamePlay.value).toBe(expected);\n });\n });\n});" }, "tests/unit/specs/components/pages/game/GameOver/GameOverVictoryText/GameOverVictoryText.nuxt.spec.ts": { "tests": [ { - "id": "237", + "id": "240", "name": "Game Over Victory Text Component should match snapshot when rendered." }, { - "id": "238", + "id": "241", "name": "Game Over Victory Text Component Trophy Icon should render trophy icon when rendered." }, { - "id": "239", + "id": "242", "name": "Game Over Victory Text Component Victory Type Icon 'should render question mark icon when…'" }, { - "id": "240", + "id": "243", "name": "Game Over Victory Text Component Victory Type Icon 'should render werewolves icon when vi…'" }, { - "id": "241", + "id": "244", "name": "Game Over Victory Text Component Victory Type Icon 'should render villagers icon when vic…'" }, { - "id": "242", + "id": "245", "name": "Game Over Victory Text Component Victory Type Icon 'should render lovers icon when victor…'" }, { - "id": "243", + "id": "246", "name": "Game Over Victory Text Component Victory Type Icon 'should render angel icon when victory…'" }, { - "id": "244", + "id": "247", "name": "Game Over Victory Text Component Victory Type Icon 'should render none icon when victory …'" }, { - "id": "245", + "id": "248", "name": "Game Over Victory Text Component Victory Type Icon 'should render pied piper icon when vi…'" }, { - "id": "246", + "id": "249", "name": "Game Over Victory Text Component Victory Type Icon 'should render prejudiced manipulator …'" }, { - "id": "247", + "id": "250", "name": "Game Over Victory Text Component Victory Type Icon 'should render white werewolf icon whe…'" }, { - "id": "248", + "id": "251", "name": "Game Over Victory Text Component Victory Type Text 'should render unknown text when victo…'" }, { - "id": "249", + "id": "252", "name": "Game Over Victory Text Component Victory Type Text 'should render werewolves text when vi…'" }, { - "id": "250", + "id": "253", "name": "Game Over Victory Text Component Victory Type Text 'should render villagers text when vic…'" }, { - "id": "251", + "id": "254", "name": "Game Over Victory Text Component Victory Type Text 'should render lovers text when victor…'" }, { - "id": "252", + "id": "255", "name": "Game Over Victory Text Component Victory Type Text 'should render lovers and cupid text w…'" }, { - "id": "253", + "id": "256", "name": "Game Over Victory Text Component Victory Type Text 'should render angel text when victory…'" }, { - "id": "254", + "id": "257", "name": "Game Over Victory Text Component Victory Type Text 'should render none text when victory …'" }, { - "id": "255", + "id": "258", "name": "Game Over Victory Text Component Victory Type Text 'should render pied piper text when vi…'" }, { - "id": "256", + "id": "259", "name": "Game Over Victory Text Component Victory Type Text 'should render prejudiced manipulator …'" }, { - "id": "257", + "id": "260", "name": "Game Over Victory Text Component Victory Type Text 'should render white werewolf text whe…'" }, { - "id": "258", + "id": "261", "name": "Game Over Victory Text Component Victory Type SubText 'should render unknown subtext when vi…'" }, { - "id": "259", + "id": "262", "name": "Game Over Victory Text Component Victory Type SubText 'should render werewolves subtext when…'" }, { - "id": "260", + "id": "263", "name": "Game Over Victory Text Component Victory Type SubText 'should render villagers subtext when …'" }, { - "id": "261", + "id": "264", "name": "Game Over Victory Text Component Victory Type SubText 'should render lovers subtext when vic…'" }, { - "id": "262", + "id": "265", "name": "Game Over Victory Text Component Victory Type SubText 'should render lovers and cupid subtex…'" }, { - "id": "263", + "id": "266", "name": "Game Over Victory Text Component Victory Type SubText 'should render angel subtext when vict…'" }, { - "id": "264", + "id": "267", "name": "Game Over Victory Text Component Victory Type SubText 'should render none subtext when victo…'" }, { - "id": "265", + "id": "268", "name": "Game Over Victory Text Component Victory Type SubText 'should render pied piper subtext when…'" }, { - "id": "266", + "id": "269", "name": "Game Over Victory Text Component Victory Type SubText 'should render prejudiced manipulator …'" }, { - "id": "267", + "id": "270", "name": "Game Over Victory Text Component Victory Type SubText 'should render white werewolf subtext …'" } ], @@ -228389,59 +228846,59 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWolfHoundHasChosenSideEvent/GameWolfHoundHasChosenSideEvent.nuxt.spec.ts": { "tests": [ { - "id": "268", + "id": "271", "name": "Game Wolf Hound Has Chosen Side Event Component should match snapshot when rendered." }, { - "id": "269", + "id": "272", "name": "Game Wolf Hound Has Chosen Side Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "270", + "id": "273", "name": "Game Wolf Hound Has Chosen Side Event Component Sound Effect should not play any sound effect when wolf hound can't be found in event." }, { - "id": "271", + "id": "274", "name": "Game Wolf Hound Has Chosen Side Event Component Sound Effect should play distant dog howling sound effect when chosen side is not revealed." }, { - "id": "272", + "id": "275", "name": "Game Wolf Hound Has Chosen Side Event Component Sound Effect should play dog barking sound effect when chosen side is revealed and villagers." }, { - "id": "273", + "id": "276", "name": "Game Wolf Hound Has Chosen Side Event Component Sound Effect should play werewolf howling sound effect when chosen side is revealed and werewolves." }, { - "id": "274", + "id": "277", "name": "Game Wolf Hound Has Chosen Side Event Component Game Event Texts should pass can't find wolf hound text when wolf hound is not in the game." }, { - "id": "275", + "id": "278", "name": "Game Wolf Hound Has Chosen Side Event Component Game Event Texts should pass assistant chose side for wolf hound revelation text when chosen side is random and revealed." }, { - "id": "276", + "id": "279", "name": "Game Wolf Hound Has Chosen Side Event Component Game Event Texts should pass wolf hound chose side for wolf hound revelation text when chosen side is not random and revealed." }, { - "id": "277", + "id": "280", "name": "Game Wolf Hound Has Chosen Side Event Component Game Event Texts should pass assistant chose side for wolf hound mime text when chosen side is random and not revealed." }, { - "id": "278", + "id": "281", "name": "Game Wolf Hound Has Chosen Side Event Component Game Event Texts should pass wolf hound chose side quietly text when chosen side is not random and not revealed." }, { - "id": "279", + "id": "282", "name": "Game Wolf Hound Has Chosen Side Event Component Game Event Flipping Card should not render game event flipping player card when wolf hound is not in the game." }, { - "id": "280", + "id": "283", "name": "Game Wolf Hound Has Chosen Side Event Component Game Event Flipping Card should set svg icon path to villager role when chosen side is villagers." }, { - "id": "281", + "id": "284", "name": "Game Wolf Hound Has Chosen Side Event Component Game Event Flipping Card should set svg icon path to werewolf role when chosen side is werewolves." } ], @@ -228450,67 +228907,67 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerFooter/GameLobbyRolePickerFooter.nuxt.spec.ts": { "tests": [ { - "id": "282", + "id": "285", "name": "Game Lobby Role Picker Footer Component should match snapshot when rendered." }, { - "id": "283", + "id": "286", "name": "Game Lobby Role Picker Footer Component Button should be enabled when role selected is not the one of the player." }, { - "id": "284", + "id": "287", "name": "Game Lobby Role Picker Footer Component Button should be disabled when player is not defined." }, { - "id": "285", + "id": "288", "name": "Game Lobby Role Picker Footer Component Button should be disabled when picked role is not defined." }, { - "id": "286", + "id": "289", "name": "Game Lobby Role Picker Footer Component Button should be disabled when role selected is the one of the player." }, { - "id": "287", + "id": "290", "name": "Game Lobby Role Picker Footer Component Button should translate button label when rendered." }, { - "id": "288", + "id": "291", "name": "Game Lobby Role Picker Footer Component Button On click should update player in create game dto when clicked." }, { - "id": "289", + "id": "292", "name": "Game Lobby Role Picker Footer Component Button On click should swap player role and side when clicked and max is reached for this role." }, { - "id": "290", + "id": "293", "name": "Game Lobby Role Picker Footer Component Button On click should not swap player role and side when clicked and max is reached for this role but no other player has this role." }, { - "id": "291", + "id": "294", "name": "Game Lobby Role Picker Footer Component Button On click should emit player update with updated player event when clicked." }, { - "id": "292", + "id": "295", "name": "Game Lobby Role Picker Footer Component Button On click should not emit player update with updated player event when picked role is not defined." }, { - "id": "293", + "id": "296", "name": "Game Lobby Role Picker Footer Component Button On click should remove additional card when picked role is in additional cards." }, { - "id": "294", + "id": "297", "name": "Game Lobby Role Picker Footer Component Button On click should show toast when role picked is in additional cards." }, { - "id": "295", + "id": "298", "name": "Game Lobby Role Picker Footer Component Button On click should not call toast when role picked is not in additional cards." }, { - "id": "296", + "id": "299", "name": "Game Lobby Role Picker Footer Component Button On click should not call toast when additional cards are not defined." }, { - "id": "297", + "id": "300", "name": "Game Lobby Role Picker Footer Component Button On click should remove obsolete additional cards when clicked." } ], @@ -228519,111 +228976,111 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSidePlayer/GameTeamSidePlayerAttribute/GameTeamSidePlayerAttribute.nuxt.spec.ts": { "tests": [ { - "id": "298", + "id": "301", "name": "Game Team Side Player Attribute Component should match snapshot when rendered." }, { - "id": "299", + "id": "302", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render acting by actor icon wh…'" }, { - "id": "300", + "id": "303", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render cant vote by survivors …'" }, { - "id": "301", + "id": "304", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render cant vote by scapegoat …'" }, { - "id": "302", + "id": "305", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render charmed by pied piper i…'" }, { - "id": "303", + "id": "306", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render contaminated by rusty s…'" }, { - "id": "304", + "id": "307", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render drank death potion by w…'" }, { - "id": "305", + "id": "308", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render drank life potion by wi…'" }, { - "id": "306", + "id": "309", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render eaten by werewolves ico…'" }, { - "id": "307", + "id": "310", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render eaten by white werewolf…'" }, { - "id": "308", + "id": "311", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render eaten by big bad wolf i…'" }, { - "id": "309", + "id": "312", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render in love by cupid icon w…'" }, { - "id": "310", + "id": "313", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render powerless by actor icon…'" }, { - "id": "311", + "id": "314", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render powerless by werewolves…'" }, { - "id": "312", + "id": "315", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render powerless by accursed w…'" }, { - "id": "313", + "id": "316", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render powerless by fox icon w…'" }, { - "id": "314", + "id": "317", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render powerless by elder icon…'" }, { - "id": "315", + "id": "318", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render protected by defender i…'" }, { - "id": "316", + "id": "319", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render scandalmonger marked by…'" }, { - "id": "317", + "id": "320", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render seen by seer icon when …'" }, { - "id": "318", + "id": "321", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render sheriff by sheriff icon…'" }, { - "id": "319", + "id": "322", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render sheriff by survivors ic…'" }, { - "id": "320", + "id": "323", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render stolen role by devoted …'" }, { - "id": "321", + "id": "324", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render worshiped by wild child…'" }, { - "id": "322", + "id": "325", "name": "Game Team Side Player Attribute Component Player Attribute Icon 'should render unknown icon when playe…'" }, { - "id": "323", + "id": "326", "name": "Game Team Side Player Attribute Component Player Attribute Icon should have tooltip on right position when player is from villagers side." }, { - "id": "324", + "id": "327", "name": "Game Team Side Player Attribute Component Player Attribute Icon should have tooltip on left position when player is from werewolves side." } ], @@ -228632,75 +229089,75 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.nuxt.spec.ts": { "tests": [ { - "id": "325", + "id": "328", "name": "Game Lobby Start Game Button Component should match snapshot when rendered." }, { - "id": "326", + "id": "329", "name": "Game Lobby Start Game Button Component Button container should assign tooltip when button is disabled." }, { - "id": "327", + "id": "330", "name": "Game Lobby Start Game Button Component Button container should not assign tooltip when button is enabled." }, { - "id": "328", + "id": "331", "name": "Game Lobby Start Game Button Component Button should translate button text when rendered." }, { - "id": "329", + "id": "332", "name": "Game Lobby Start Game Button Component Button should be disabled when minimum players are not reached." }, { - "id": "330", + "id": "333", "name": "Game Lobby Start Game Button Component Button should be enabled when game can be created." }, { - "id": "331", + "id": "334", "name": "Game Lobby Start Game Button Component Button Click on button should open confirm dialog when clicked." }, { - "id": "332", + "id": "335", "name": "Game Lobby Start Game Button Component Button Click on button should throw error when game lobby players party emits pick role for player event but the role picker is not found in refs." }, { - "id": "333", + "id": "336", "name": "Game Lobby Start Game Button Component Button Confirm game creation should create game when confirm start game event is emitted." }, { - "id": "334", + "id": "337", "name": "Game Lobby Start Game Button Component Button Confirm game creation should navigate to game with id in params when game is created." }, { - "id": "335", + "id": "338", "name": "Game Lobby Start Game Button Component Button Confirm game creation should add success toast when game is created." }, { - "id": "336", + "id": "339", "name": "Game Lobby Start Game Button Component Button Confirm game creation should not add success toast when game is not created." }, { - "id": "337", + "id": "340", "name": "Game Lobby Start Game Button Component Button Confirm game creation should be loading when fetch is in progress." }, { - "id": "338", + "id": "341", "name": "Game Lobby Start Game Button Component Button Confirm game creation should not be loading when fetch returned." }, { - "id": "339", + "id": "342", "name": "Game Lobby Start Game Button Component Button Create Game Confirm Dialog should emit reject players position step when game lobby start game confirm dialog emits the same." }, { - "id": "340", + "id": "343", "name": "Game Lobby Start Game Button Component Button Create Game Confirm Dialog should emit thief additional cards placed step when game lobby start game confirm dialog emits the same." }, { - "id": "341", + "id": "344", "name": "Game Lobby Start Game Button Component Button Create Game Confirm Dialog should emit actor additional cards placed step when game lobby start game confirm dialog emits the same." }, { - "id": "342", + "id": "345", "name": "Game Lobby Start Game Button Component Button Create Game Confirm Dialog should emit game options changed step when game lobby start game confirm dialog emits the same." } ], @@ -228709,103 +229166,103 @@ "tests/unit/specs/stores/game/make-game-play-dto/useMakeGamePlayDtoStore.spec.ts": { "tests": [ { - "id": "343", + "id": "346", "name": "Make Game Play Dto Store should have initial state when created." }, { - "id": "344", + "id": "347", "name": "Make Game Play Dto Store setMakeGamePlayDto should set makeGamePlayDto when called." }, { - "id": "345", + "id": "348", "name": "Make Game Play Dto Store resetMakeGamePlayDto should reset make game play dto when called." }, { - "id": "346", + "id": "349", "name": "Make Game Play Dto Store addMakeGamePlayTargetDto should add target to makeGamePlayDto when targets are undefined." }, { - "id": "347", + "id": "350", "name": "Make Game Play Dto Store addMakeGamePlayTargetDto should add target to makeGamePlayDto when targets are defined." }, { - "id": "348", + "id": "351", "name": "Make Game Play Dto Store removeMakeGamePlayTargetDto should not remove target from makeGamePlayDto when targets are undefined." }, { - "id": "349", + "id": "352", "name": "Make Game Play Dto Store removeMakeGamePlayTargetDto should not remove target from makeGamePlayDto when target does not exist." }, { - "id": "350", + "id": "353", "name": "Make Game Play Dto Store removeMakeGamePlayTargetDto should remove target from makeGamePlayDto when target exists." }, { - "id": "351", + "id": "354", "name": "Make Game Play Dto Store removeMakeGamePlayTargetDto should remove target from makeGamePlayDto when target exists and set it as undefined because there is no targets left." }, { - "id": "352", + "id": "355", "name": "Make Game Play Dto Store removeFirstMakeGamePlayTargetDto should not remove first target from makeGamePlayDto when targets are undefined." }, { - "id": "353", + "id": "356", "name": "Make Game Play Dto Store removeFirstMakeGamePlayTargetDto should not remove first target from makeGamePlayDto when there is no targets." }, { - "id": "354", + "id": "357", "name": "Make Game Play Dto Store removeFirstMakeGamePlayTargetDto should remove first target from makeGamePlayDto when there is targets." }, { - "id": "355", + "id": "358", "name": "Make Game Play Dto Store removeFirstMakeGamePlayTargetDtoWithPotion should not remove first target from makeGamePlayDto when targets are undefined." }, { - "id": "356", + "id": "359", "name": "Make Game Play Dto Store removeFirstMakeGamePlayTargetDtoWithPotion should not remove first target from makeGamePlayDto when there is no targets." }, { - "id": "357", + "id": "360", "name": "Make Game Play Dto Store removeFirstMakeGamePlayTargetDtoWithPotion should not remove first target from makeGamePlayDto when there is no target with potion." }, { - "id": "358", + "id": "361", "name": "Make Game Play Dto Store removeFirstMakeGamePlayTargetDtoWithPotion should remove first target from makeGamePlayDto when there is target with potion." }, { - "id": "359", + "id": "362", "name": "Make Game Play Dto Store addMakeGamePlayVoteDto should add vote to makeGamePlayDto when votes are undefined." }, { - "id": "360", + "id": "363", "name": "Make Game Play Dto Store addMakeGamePlayVoteDto should add vote to makeGamePlayDto when votes are defined." }, { - "id": "361", + "id": "364", "name": "Make Game Play Dto Store removeMakeGamePlayVoteDto should not remove vote from makeGamePlayDto when votes are undefined." }, { - "id": "362", + "id": "365", "name": "Make Game Play Dto Store removeMakeGamePlayVoteDto should not remove vote from makeGamePlayDto when vote does not exist." }, { - "id": "363", + "id": "366", "name": "Make Game Play Dto Store removeMakeGamePlayVoteDto should remove vote from makeGamePlayDto when vote exists." }, { - "id": "364", + "id": "367", "name": "Make Game Play Dto Store removeMakeGamePlayVoteDto should remove vote from makeGamePlayDto when vote exists and set it as undefined because there is no votes left." }, { - "id": "365", + "id": "368", "name": "Make Game Play Dto Store setDoesJudgeRequestAnotherVote should set doesJudgeRequestAnotherVote when called." }, { - "id": "366", + "id": "369", "name": "Make Game Play Dto Store setChosenCardId should set chosenCardId when called." }, { - "id": "367", + "id": "370", "name": "Make Game Play Dto Store setChosenSide should set chosenSide when called." } ], @@ -228814,79 +229271,79 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.nuxt.spec.ts": { "tests": [ { - "id": "368", + "id": "371", "name": "Game Lobby Start Game Confirm Dialog Component should match snapshot when rendered." }, { - "id": "369", + "id": "372", "name": "Game Lobby Start Game Confirm Dialog Component Confirm Steps should contain only players ready confirm step when there is no position dependent roles in create game dto." }, { - "id": "370", + "id": "373", "name": "Game Lobby Start Game Confirm Dialog Component Confirm Steps should contain players ready and players positioned confirm steps when there is position dependent roles in create game dto." }, { - "id": "371", + "id": "374", "name": "Game Lobby Start Game Confirm Dialog Component Confirm Steps should contain thief additional cards placed when there is a thief role in create game dto." }, { - "id": "372", + "id": "375", "name": "Game Lobby Start Game Confirm Dialog Component Confirm Steps should contain actor additional cards placed when there is an actor role in create game dto." }, { - "id": "373", + "id": "376", "name": "Game Lobby Start Game Confirm Dialog Component Confirm Steps should contain game options changed when there is a changed game option in create game dto." }, { - "id": "374", + "id": "377", "name": "Game Lobby Start Game Confirm Dialog Component Open Dialog should set confirm step index to 0 when dialog is opened." }, { - "id": "375", + "id": "378", "name": "Game Lobby Start Game Confirm Dialog Component Open Dialog should confirm step when dialog is opened." }, { - "id": "376", + "id": "379", "name": "Game Lobby Start Game Confirm Dialog Component Confirm Step should increment confirm step index when step is confirmed." }, { - "id": "377", + "id": "380", "name": "Game Lobby Start Game Confirm Dialog Component Confirm Step should set the current confirm step to the next step when step is confirmed." }, { - "id": "378", + "id": "381", "name": "Game Lobby Start Game Confirm Dialog Component Confirm Start Game should emit confirm start game event when confirm start game is called." }, { - "id": "379", + "id": "382", "name": "Game Lobby Start Game Confirm Dialog Component Reject Players Position Step should call reject callback pass as argument when reject players position step is called." }, { - "id": "380", + "id": "383", "name": "Game Lobby Start Game Confirm Dialog Component Reject Players Position Step should emit reject players position step event when reject players position step is called." }, { - "id": "381", + "id": "384", "name": "Game Lobby Start Game Confirm Dialog Component Reject Thief Additional Cards Placed Step should call reject callback pass as argument when reject thief additional cards placed step is called." }, { - "id": "382", + "id": "385", "name": "Game Lobby Start Game Confirm Dialog Component Reject Thief Additional Cards Placed Step should emit reject thief additional cards placed step event when reject thief additional cards placed step is called." }, { - "id": "383", + "id": "386", "name": "Game Lobby Start Game Confirm Dialog Component Reject Actor Additional Cards Placed Step should call reject callback pass as argument when reject actor additional cards placed step is called." }, { - "id": "384", + "id": "387", "name": "Game Lobby Start Game Confirm Dialog Component Reject Actor Additional Cards Placed Step should emit reject actor additional cards placed step event when reject actor additional cards placed step is called." }, { - "id": "385", + "id": "388", "name": "Game Lobby Start Game Confirm Dialog Component Reject Game Options Placed Step should call reject callback pass as argument when reject game options changed step is called." }, { - "id": "386", + "id": "389", "name": "Game Lobby Start Game Confirm Dialog Component Reject Game Options Placed Step should emit reject game options changed step event when reject game options changed step is called." } ], @@ -228895,91 +229352,91 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorFooter/GameEventsMonitorFooter.nuxt.spec.ts": { "tests": [ { - "id": "387", + "id": "390", "name": "Game Events Monitor Footer Component should match snapshot when rendered." }, { - "id": "388", + "id": "391", "name": "Game Events Monitor Footer Component Previous Event button should translate label when rendered." }, { - "id": "389", + "id": "392", "name": "Game Events Monitor Footer Component Previous Event button should be disabled when there are no previous events." }, { - "id": "390", + "id": "393", "name": "Game Events Monitor Footer Component Previous Event button should be enabled when there are previous events." }, { - "id": "391", + "id": "394", "name": "Game Events Monitor Footer Component Previous Event button should not render tooltip when button is disabled." }, { - "id": "392", + "id": "395", "name": "Game Events Monitor Footer Component Previous Event button should render tooltip when button is enabled." }, { - "id": "393", + "id": "396", "name": "Game Events Monitor Footer Component Previous Event button should go to previous game event when clicked." }, { - "id": "394", + "id": "397", "name": "Game Events Monitor Footer Component Previous Event button should go to previous game event when shift and left arrow keys are pressed." }, { - "id": "395", + "id": "398", "name": "Game Events Monitor Footer Component Previous Event button should animate icon when shift and left arrow keys are pressed." }, { - "id": "396", + "id": "399", "name": "Game Events Monitor Footer Component Previous Event button should not go to previous game event when shift key is not pressed." }, { - "id": "397", + "id": "400", "name": "Game Events Monitor Footer Component Previous Event button should not go to previous game event when left arrow key is unpressed." }, { - "id": "398", + "id": "401", "name": "Game Events Monitor Footer Component Previous Event button should not go to previous game event when can't go to previous game event." }, { - "id": "399", + "id": "402", "name": "Game Events Monitor Footer Component Previous Event button should throw error when previousEventButtonIcon is not defined." }, { - "id": "400", + "id": "403", "name": "Game Events Monitor Footer Component Skip Current Event button should translate label when rendered." }, { - "id": "401", + "id": "404", "name": "Game Events Monitor Footer Component Skip Current Event button should render tooltip when rendered." }, { - "id": "402", + "id": "405", "name": "Game Events Monitor Footer Component Skip Current Event button should skip current game event when clicked." }, { - "id": "403", + "id": "406", "name": "Game Events Monitor Footer Component Skip Current Event button should skip current game event when shift and right arrow keys are pressed." }, { - "id": "404", + "id": "407", "name": "Game Events Monitor Footer Component Skip Current Event button should animate icon when shift and right arrow keys are pressed." }, { - "id": "405", + "id": "408", "name": "Game Events Monitor Footer Component Skip Current Event button should not skip current game event when shift key is not pressed." }, { - "id": "406", + "id": "409", "name": "Game Events Monitor Footer Component Skip Current Event button should not skip current game event when right arrow key is unpressed." }, { - "id": "407", + "id": "410", "name": "Game Events Monitor Footer Component Skip Current Event button should not skip current game event when can't go to next game event." }, { - "id": "408", + "id": "411", "name": "Game Events Monitor Footer Component Skip Current Event button should throw error when previousEventButtonIcon is not defined." } ], @@ -228988,63 +229445,63 @@ "tests/unit/specs/composables/api/game/game-play/useCurrentGamePlay.spec.ts": { "tests": [ { - "id": "409", + "id": "412", "name": "Use Current Game Play Composable mustCurrentGamePlayBeSkipped 'should return false when game current…'" }, { - "id": "410", + "id": "413", "name": "Use Current Game Play Composable mustCurrentGamePlayBeSkipped 'should return false when there are no…'" }, { - "id": "411", + "id": "414", "name": "Use Current Game Play Composable mustCurrentGamePlayBeSkipped 'should return false when game play ac…'" }, { - "id": "412", + "id": "415", "name": "Use Current Game Play Composable mustCurrentGamePlayBeSkipped 'should return true when action is bur…'" }, { - "id": "413", + "id": "416", "name": "Use Current Game Play Composable priorityCauseInCurrentGamePlay 'should return undefined when game cur…'" }, { - "id": "414", + "id": "417", "name": "Use Current Game Play Composable priorityCauseInCurrentGamePlay 'should return angel presence when gam…'" }, { - "id": "415", + "id": "418", "name": "Use Current Game Play Composable priorityCauseInCurrentGamePlay 'should return stuttering judge reques…'" }, { - "id": "416", + "id": "419", "name": "Use Current Game Play Composable priorityCauseInCurrentGamePlay 'should return previous votes were in …'" }, { - "id": "417", + "id": "420", "name": "Use Current Game Play Composable getEligibleTargetsWithInteractionInCurrentGamePlay 'should return empty array when game c…'" }, { - "id": "418", + "id": "421", "name": "Use Current Game Play Composable getEligibleTargetsWithInteractionInCurrentGamePlay 'should return player when game curren…'" }, { - "id": "419", + "id": "422", "name": "Use Current Game Play Composable getEligibleAdditionalCardsToChooseInCurrentGamePlay 'should return empty array when game a…'" }, { - "id": "420", + "id": "423", "name": "Use Current Game Play Composable getEligibleAdditionalCardsToChooseInCurrentGamePlay 'should return empty array when game c…'" }, { - "id": "421", + "id": "424", "name": "Use Current Game Play Composable getEligibleAdditionalCardsToChooseInCurrentGamePlay 'should return cards for recipient whi…'" }, { - "id": "422", + "id": "425", "name": "Use Current Game Play Composable getEligibleAdditionalCardsToChooseInCurrentGamePlay should return empty array when game current play action is not choose card with game not a ref." }, { - "id": "423", + "id": "426", "name": "Use Current Game Play Composable getEligibleAdditionalCardsToChooseInCurrentGamePlay should return cards for recipient which are not used yet when game is not a ref." } ], @@ -229053,59 +229510,59 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElementBadges/GameLobbyRolePickerGridElementBadges.nuxt.spec.ts": { "tests": [ { - "id": "424", + "id": "427", "name": "Game Lobby Role Picker Grid Element Badges Component should match snapshot when rendered." }, { - "id": "425", + "id": "428", "name": "Game Lobby Role Picker Grid Element Badges Component Count in Additional Cards Badge should not render the count in additional cards badge when there are no additional cards with this role." }, { - "id": "426", + "id": "429", "name": "Game Lobby Role Picker Grid Element Badges Component Count in Additional Cards Badge should assign tooltip to count in additional cards badge when there are additional cards with this role." }, { - "id": "427", + "id": "430", "name": "Game Lobby Role Picker Grid Element Badges Component Count in Additional Cards Badge should not render the count in additional cards badge when role is not defined." }, { - "id": "428", + "id": "431", "name": "Game Lobby Role Picker Grid Element Badges Component Count in Additional Cards Badge should set count in game additional cards create game dto text when there are additional cards with this role." }, { - "id": "429", + "id": "432", "name": "Game Lobby Role Picker Grid Element Badges Component Count in Party Badge should render the count in party badge when there are players with this role." }, { - "id": "430", + "id": "433", "name": "Game Lobby Role Picker Grid Element Badges Component Count in Party Badge should assign tooltip to count in party badge when there are players with this role." }, { - "id": "431", + "id": "434", "name": "Game Lobby Role Picker Grid Element Badges Component Count in Party Badge should not render the count in party badge when there are no players with this role." }, { - "id": "432", + "id": "435", "name": "Game Lobby Role Picker Grid Element Badges Component Count in Party Badge should not render the count in party badge when role is not defined." }, { - "id": "433", + "id": "436", "name": "Game Lobby Role Picker Grid Element Badges Component Left to Pick Badge should render the left to pick badge when there are roles left to pick." }, { - "id": "434", + "id": "437", "name": "Game Lobby Role Picker Grid Element Badges Component Left to Pick Badge should assign tooltip to left to pick badge when there are roles left to pick." }, { - "id": "435", + "id": "438", "name": "Game Lobby Role Picker Grid Element Badges Component Left to Pick Badge should not render the left to pick badge when there are no roles left to pick." }, { - "id": "436", + "id": "439", "name": "Game Lobby Role Picker Grid Element Badges Component Left to Pick Badge should not render the left to pick badge when there are no players with this role." }, { - "id": "437", + "id": "440", "name": "Game Lobby Role Picker Grid Element Badges Component Left to Pick Badge should not render the left to pick badge when role is not defined." } ], @@ -229114,115 +229571,115 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/CurrentPlayQuestion/CurrentPlayQuestion.nuxt.spec.ts": { "tests": [ { - "id": "438", + "id": "441", "name": "Current Play Question Component should match snapshot when rendered." }, { - "id": "439", + "id": "442", "name": "Current Play Question Component 'should render nothing when current pl…'" }, { - "id": "440", + "id": "443", "name": "Current Play Question Component 'should render the question for accurs…'" }, { - "id": "441", + "id": "444", "name": "Current Play Question Component 'should render the question for actor …'" }, { - "id": "442", + "id": "445", "name": "Current Play Question Component 'should render the question for big ba…'" }, { - "id": "443", + "id": "446", "name": "Current Play Question Component 'should render the question for charme…'" }, { - "id": "444", + "id": "447", "name": "Current Play Question Component 'should render the question for cupid …'" }, { - "id": "445", + "id": "448", "name": "Current Play Question Component 'should render the question for defend…'" }, { - "id": "446", + "id": "449", "name": "Current Play Question Component 'should render the question for fox sn…'" }, { - "id": "447", + "id": "450", "name": "Current Play Question Component 'should render the question for hunter…'" }, { - "id": "448", + "id": "451", "name": "Current Play Question Component 'should render the question for lovers…'" }, { - "id": "449", + "id": "452", "name": "Current Play Question Component 'should render the question for pied p…'" }, { - "id": "450", + "id": "453", "name": "Current Play Question Component 'should render the question for scanda…'" }, { - "id": "451", + "id": "454", "name": "Current Play Question Component 'should render the question for scapeg…'" }, { - "id": "452", + "id": "455", "name": "Current Play Question Component 'should render the question for seer l…'" }, { - "id": "453", + "id": "456", "name": "Current Play Question Component 'should render the question for sherif…'" }, { - "id": "454", + "id": "457", "name": "Current Play Question Component 'should render the question for stutte…'" }, { - "id": "455", + "id": "458", "name": "Current Play Question Component 'should render the question for surviv…'" }, { - "id": "456", + "id": "459", "name": "Current Play Question Component 'should render the question for thief …'" }, { - "id": "457", + "id": "460", "name": "Current Play Question Component 'should render the question for three …'" }, { - "id": "458", + "id": "461", "name": "Current Play Question Component 'should render the question for two si…'" }, { - "id": "459", + "id": "462", "name": "Current Play Question Component 'should render the question for werewo…'" }, { - "id": "460", + "id": "463", "name": "Current Play Question Component 'should render the question for white …'" }, { - "id": "461", + "id": "464", "name": "Current Play Question Component 'should render the question for wild c…'" }, { - "id": "462", + "id": "465", "name": "Current Play Question Component 'should render the question for witch …'" }, { - "id": "463", + "id": "466", "name": "Current Play Question Component 'should render the question for wolf h…'" }, { - "id": "464", + "id": "467", "name": "Current Play Question Component 'should render unknown question when a…'" }, { - "id": "465", + "id": "468", "name": "Current Play Question Component 'should render unknown question when c…'" } ], @@ -229231,67 +229688,67 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.nuxt.spec.ts": { "tests": [ { - "id": "466", + "id": "469", "name": "Game Lobby Random Composition Button Component should match snapshot when rendered." }, { - "id": "467", + "id": "470", "name": "Game Lobby Random Composition Button Component Button container should assign tooltip when button is disabled." }, { - "id": "468", + "id": "471", "name": "Game Lobby Random Composition Button Component Button container should not assign tooltip when button is enabled." }, { - "id": "469", + "id": "472", "name": "Game Lobby Random Composition Button Component Button container Button should have label when screen is not smaller than md." }, { - "id": "470", + "id": "473", "name": "Game Lobby Random Composition Button Component Button container Button should not have label when screen is smaller than md." }, { - "id": "471", + "id": "474", "name": "Game Lobby Random Composition Button Component Button container Button should have large size when screen is not smaller than md." }, { - "id": "472", + "id": "475", "name": "Game Lobby Random Composition Button Component Button container Button should have small size when screen is smaller than md." }, { - "id": "473", + "id": "476", "name": "Game Lobby Random Composition Button Component Button container Button should be disabled when min of players is not reached." }, { - "id": "474", + "id": "477", "name": "Game Lobby Random Composition Button Component Button container Button should be enabled when min of players is reached." }, { - "id": "475", + "id": "478", "name": "Game Lobby Random Composition Button Component Button container Button Click on button should fetch random game composition when clicked." }, { - "id": "476", + "id": "479", "name": "Game Lobby Random Composition Button Component Button container Button Click on button should set fetched random game composition to create game dto when fetched." }, { - "id": "477", + "id": "480", "name": "Game Lobby Random Composition Button Component Button container Button Click on button should not set fetched random game composition to create game dto when fetch returned null." }, { - "id": "478", + "id": "481", "name": "Game Lobby Random Composition Button Component Button container Button Click on button should remove obsolete additional cards from create game dto when fetched." }, { - "id": "479", + "id": "482", "name": "Game Lobby Random Composition Button Component Button container Button Click on button should not remove obsolete additional cards from create game dto when fetch returned null." }, { - "id": "480", + "id": "483", "name": "Game Lobby Random Composition Button Component Button container Button Click on button should be loading when fetch is in progress." }, { - "id": "481", + "id": "484", "name": "Game Lobby Random Composition Button Component Button container Button Click on button should not be loading when fetch returned." } ], @@ -229300,51 +229757,51 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterCountdown/GamePlaygroundFooterCountdown.nuxt.spec.ts": { "tests": [ { - "id": "482", + "id": "485", "name": "Game Playground Footer Countdown Component should match snapshot when rendered." }, { - "id": "483", + "id": "486", "name": "Game Playground Footer Countdown Component Countdown is Over 'should translate countdown over for m…'" }, { - "id": "484", + "id": "487", "name": "Game Playground Footer Countdown Component Countdown is Over 'should translate countdown over for s…'" }, { - "id": "485", + "id": "488", "name": "Game Playground Footer Countdown Component Countdown is Over 'should set empty text when current ga…'" }, { - "id": "486", + "id": "489", "name": "Game Playground Footer Countdown Component Countdown is Over should play time is up sound effect when countdown is over." }, { - "id": "487", + "id": "490", "name": "Game Playground Footer Countdown Component Countdown is Over should not render countdown over text when countdown is not over." }, { - "id": "488", + "id": "491", "name": "Game Playground Footer Countdown Component Countdown is Running Countdown running title 'should translate countdown running ti…'" }, { - "id": "489", + "id": "492", "name": "Game Playground Footer Countdown Component Countdown is Running Countdown running title 'should set empty title when current g…'" }, { - "id": "490", + "id": "493", "name": "Game Playground Footer Countdown Component Countdown is Running Countdown component 'should pass remaining time in millise…'" }, { - "id": "491", + "id": "494", "name": "Game Playground Footer Countdown Component Countdown is Running Countdown component 'should pass 0 remaining time in milli…'" }, { - "id": "492", + "id": "495", "name": "Game Playground Footer Countdown Component Countdown is Running Countdown component Countdown Ellipse Progress should pass total and remaining seconds to ellipse progress when rendered." }, { - "id": "493", + "id": "496", "name": "Game Playground Footer Countdown Component Countdown is Running Countdown component Countdown Remaining Time should pass minutes and seconds to countdown remaining time when rendered." } ], @@ -229353,55 +229810,55 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/WitchUsePotionsTabView/WitchUsePotionsTabView.nuxt.spec.ts": { "tests": [ { - "id": "494", + "id": "497", "name": "Witch Use Potions Tab View Component should match snapshot when rendered." }, { - "id": "495", + "id": "498", "name": "Witch Use Potions Tab View Component Tab View should have active index set to life-potion when witch still has life potion." }, { - "id": "496", + "id": "499", "name": "Witch Use Potions Tab View Component Tab View should have active index set to death-potion when witch doesn't have life potion anymore." }, { - "id": "497", + "id": "500", "name": "Witch Use Potions Tab View Component Give Life Potion Tab should disable tab when witch doesn't have life potion anymore." }, { - "id": "498", + "id": "501", "name": "Witch Use Potions Tab View Component Give Life Potion Tab should enable panel when witch still has life potion." }, { - "id": "499", + "id": "502", "name": "Witch Use Potions Tab View Component Give Life Potion Tab should display life potion image when rendered." }, { - "id": "500", + "id": "503", "name": "Witch Use Potions Tab View Component Give Life Potion Tab should translate give life potion panel title when rendered." }, { - "id": "501", + "id": "504", "name": "Witch Use Potions Tab View Component Give Life Potion Tab should render eligible targets for life potion when there is an interaction for it." }, { - "id": "502", + "id": "505", "name": "Witch Use Potions Tab View Component Give Death Potion Panel should disable panel when witch doesn't have death potion anymore." }, { - "id": "503", + "id": "506", "name": "Witch Use Potions Tab View Component Give Death Potion Panel should enable panel when witch still has death potion." }, { - "id": "504", + "id": "507", "name": "Witch Use Potions Tab View Component Give Death Potion Panel should display death potion image when rendered." }, { - "id": "505", + "id": "508", "name": "Witch Use Potions Tab View Component Give Death Potion Panel should translate give death potion panel title when rendered." }, { - "id": "506", + "id": "509", "name": "Witch Use Potions Tab View Component Give Death Potion Panel should render eligible targets for death potion when there is an interaction for it." } ], @@ -229410,67 +229867,67 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundPlayerCard/GamePlaygroundPlayerCardVoteInput/GamePlaygroundPlayerCardVoteInput.nuxt.spec.ts": { "tests": [ { - "id": "507", + "id": "510", "name": "Game Playground Player Card Vote Input Component should match snapshot when rendered." }, { - "id": "508", + "id": "511", "name": "Game Playground Player Card Vote Input Component Label should render translated float label text when rendered." }, { - "id": "509", + "id": "512", "name": "Game Playground Player Card Vote Input Component Autocomplete should have null as model value when render." }, { - "id": "510", + "id": "513", "name": "Game Playground Player Card Vote Input Component Autocomplete should pass empty array as suggestions when render." }, { - "id": "511", + "id": "514", "name": "Game Playground Player Card Vote Input Component Autocomplete should pass empty array as suggestions when there is no current play on complete event." }, { - "id": "512", + "id": "515", "name": "Game Playground Player Card Vote Input Component Autocomplete should pass empty array as suggestions when there is no current play eligible targets on complete event." }, { - "id": "513", + "id": "516", "name": "Game Playground Player Card Vote Input Component Autocomplete should pass empty array as suggestions when there is no current play source interactions on complete event." }, { - "id": "514", + "id": "517", "name": "Game Playground Player Card Vote Input Component Autocomplete should pass empty array as suggestions when there is no current play source interactions (empty array) on complete event." }, { - "id": "515", + "id": "518", "name": "Game Playground Player Card Vote Input Component Autocomplete should pass all players without the player in props himself as suggestions when query is empty on complete event." }, { - "id": "516", + "id": "519", "name": "Game Playground Player Card Vote Input Component Autocomplete should pass players with similar name without the player in props himself as suggestions when query the player's name himself on complete event." }, { - "id": "517", + "id": "520", "name": "Game Playground Player Card Vote Input Component Autocomplete should empty suggestions when hide event is emitted." }, { - "id": "518", + "id": "521", "name": "Game Playground Player Card Vote Input Component Autocomplete should do nothing when v-model change event is emitted but value is string." }, { - "id": "519", + "id": "522", "name": "Game Playground Player Card Vote Input Component Autocomplete should remove make game play vote from dto when item select event is emitted and player is null." }, { - "id": "520", + "id": "523", "name": "Game Playground Player Card Vote Input Component Autocomplete should remove make game play vote from dto when v-model change event is emitted and player is voted." }, { - "id": "521", + "id": "524", "name": "Game Playground Player Card Vote Input Component Autocomplete should add make game play vote from dto when item select event is emitted and player is voted." }, { - "id": "522", + "id": "525", "name": "Game Playground Player Card Vote Input Component Autocomplete should have the same value as the player in props when v-model change event is emitted and player is voted." } ], @@ -229479,47 +229936,47 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsMultiSelect/RecipientRoleAdditionalCardsMultiSelect.nuxt.spec.ts": { "tests": [ { - "id": "523", + "id": "526", "name": "Recipient Role Additional Cards Multi Select Component should match snapshot when rendered." }, { - "id": "524", + "id": "527", "name": "Recipient Role Additional Cards Multi Select Component should match snapshot when rendered without shallow rendering." }, { - "id": "525", + "id": "528", "name": "Recipient Role Additional Cards Multi Select Component Multi Select should pass recipient available additional cards to multi select when role is not taken by players nor by existing additional cards recipients." }, { - "id": "526", + "id": "529", "name": "Recipient Role Additional Cards Multi Select Component Multi Select should pass more recipient available additional cards to multi select when there are no additional cards." }, { - "id": "527", + "id": "530", "name": "Recipient Role Additional Cards Multi Select Component Multi Select should translate empty filter message when rendered." }, { - "id": "528", + "id": "531", "name": "Recipient Role Additional Cards Multi Select Component Multi Select should translate filter placeholder when rendered." }, { - "id": "529", + "id": "532", "name": "Recipient Role Additional Cards Multi Select Component Multi Select should pass selected recipient additional cards to multi select when recipient has selected cards already." }, { - "id": "530", + "id": "533", "name": "Recipient Role Additional Cards Multi Select Component Multi Select should update create game dto additional cards when multi select emit update model value event." }, { - "id": "531", + "id": "534", "name": "Recipient Role Additional Cards Multi Select Component Multi Select should set invalid when there are no additional cards for recipient role." }, { - "id": "532", + "id": "535", "name": "Recipient Role Additional Cards Multi Select Component Multi Select should not set invalid when there are additional cards for recipient role." }, { - "id": "533", + "id": "536", "name": "Recipient Role Additional Cards Multi Select Component Multi Select should remove card when click on remove button." } ], @@ -229528,63 +229985,63 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterMakePlayButton/GamePlaygroundFooterMakePlayButton.nuxt.spec.ts": { "tests": [ { - "id": "534", + "id": "537", "name": "Game Playground Footer Make Play Button Component should match snapshot when rendered." }, { - "id": "535", + "id": "538", "name": "Game Playground Footer Make Play Button Component Make Game Play Button should be disabled when make game play dto is not valid." }, { - "id": "536", + "id": "539", "name": "Game Playground Footer Make Play Button Component Make Game Play Button should be enabled when make game play dto is valid." }, { - "id": "537", + "id": "540", "name": "Game Playground Footer Make Play Button Component Make Game Play Button should have a translated label when rendered." }, { - "id": "538", + "id": "541", "name": "Game Playground Footer Make Play Button Component Make Game Play Button should not render tooltip when make game play dto is not valid." }, { - "id": "539", + "id": "542", "name": "Game Playground Footer Make Play Button Component Make Game Play Button should render tooltip when make game play is valid." }, { - "id": "540", + "id": "543", "name": "Game Playground Footer Make Play Button Component Make Game Play Button Click on button should make play when clicked." }, { - "id": "541", + "id": "544", "name": "Game Playground Footer Make Play Button Component Make Game Play Button Click on button should reset make game play dto when clicked." }, { - "id": "542", + "id": "545", "name": "Game Playground Footer Make Play Button Component Make Game Play Button Click on button should reset make game play dto when shift and enter keys are pressed." }, { - "id": "543", + "id": "546", "name": "Game Playground Footer Make Play Button Component Make Game Play Button Click on button should not reset make game play dto when enter key is not pressed." }, { - "id": "544", + "id": "547", "name": "Game Playground Footer Make Play Button Component Make Game Play Button Click on button should not reset make game play dto when shift key is not pressed." }, { - "id": "545", + "id": "548", "name": "Game Playground Footer Make Play Button Component Make Game Play Button Click on button should not reset make game play dto when enter key is unpressed." }, { - "id": "546", + "id": "549", "name": "Game Playground Footer Make Play Button Component Make Game Play Button Click on button should not reset make game play dto when button is loading." }, { - "id": "547", + "id": "550", "name": "Game Playground Footer Make Play Button Component Make Game Play Button Click on button should be loading when fetch is in progress." }, { - "id": "548", + "id": "551", "name": "Game Playground Footer Make Play Button Component Make Game Play Button Click on button should not be loading when fetch is finished." } ], @@ -229593,79 +230050,79 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.nuxt.spec.ts": { "tests": [ { - "id": "549", + "id": "552", "name": "Game Lobby Header Component should match snapshot when rendered." }, { - "id": "550", + "id": "553", "name": "Game Lobby Header Component Title should translate game lobby title when rendered." }, { - "id": "551", + "id": "554", "name": "Game Lobby Header Component Game Lobby Player Input Form Game Lobby Player Input should pass empty input value when rendered." }, { - "id": "552", + "id": "555", "name": "Game Lobby Header Component Game Lobby Player Input Form Game Lobby Player Input should update ref when input emits update event." }, { - "id": "553", + "id": "556", "name": "Game Lobby Header Component Game Lobby Player Input Form Add Player Form should not empty input when game lobby player input ref is not set." }, { - "id": "554", + "id": "557", "name": "Game Lobby Header Component Game Lobby Player Input Form Add Player Form should not empty input when add button is disabled." }, { - "id": "555", + "id": "558", "name": "Game Lobby Header Component Game Lobby Player Input Form Add Player Form should not trim player input value when add button is disabled and form is submitted." }, { - "id": "556", + "id": "559", "name": "Game Lobby Header Component Game Lobby Player Input Form Add Player Form should not add player when trimmed input is empty." }, { - "id": "557", + "id": "560", "name": "Game Lobby Header Component Game Lobby Player Input Form Add Player Form should add player when form is valid and submitted." }, { - "id": "558", + "id": "561", "name": "Game Lobby Header Component Game Lobby Player Input Form Add Player Form should empty player input when form is valid and submitted." }, { - "id": "559", + "id": "562", "name": "Game Lobby Header Component Game Lobby Player Input Form Setup Buttons should emit 'gameOptionsButtonClick' event when options button is clicked." }, { - "id": "560", + "id": "563", "name": "Game Lobby Header Component Game Lobby Player Input Form Setup Buttons should emit 'positionCoordinatorButtonClick' event when position coordinator button is clicked." }, { - "id": "561", + "id": "564", "name": "Game Lobby Header Component Game Lobby Player Input Form Setup Buttons should throw error when highlightGameOptionsButton method is called but component is not defined." }, { - "id": "562", + "id": "565", "name": "Game Lobby Header Component Game Lobby Player Input Form Setup Buttons should throw error when highlightPositionCoordinatorButton method is called but component is not defined." }, { - "id": "563", + "id": "566", "name": "Game Lobby Header Component Game Lobby Player Input Form Setup Buttons should throw error when highlightAdditionalCardsManagerButton method is called but component is not defined." }, { - "id": "564", + "id": "567", "name": "Game Lobby Header Component Game Lobby Player Input Form Setup Buttons should highlight game options button when method is called." }, { - "id": "565", + "id": "568", "name": "Game Lobby Header Component Game Lobby Player Input Form Setup Buttons should highlight position coordinator button when method is called." }, { - "id": "566", + "id": "569", "name": "Game Lobby Header Component Game Lobby Player Input Form Setup Buttons should highlight additional cards manager button when method is called." }, { - "id": "567", + "id": "570", "name": "Game Lobby Header Component Game Lobby Player Input Form Setup Buttons should emit 'additionalCardsManagerButtonClick' event when additional cards manager button is clicked." } ], @@ -229674,71 +230131,71 @@ "tests/unit/specs/stores/game/game-event/useGameEventsStore.spec.ts": { "tests": [ { - "id": "568", + "id": "571", "name": "Game Events Store should have initial state when created." }, { - "id": "569", + "id": "572", "name": "Game Events Store canGoToPreviousGameEvent should return true when can go to previous game event." }, { - "id": "570", + "id": "573", "name": "Game Events Store canGoToPreviousGameEvent should return false when cannot go to previous game event." }, { - "id": "571", + "id": "574", "name": "Game Events Store canGoToPreviousGameEvent should return false when making game play status is pending." }, { - "id": "572", + "id": "575", "name": "Game Events Store canGoToNextGameEvent should return true when can go to next game event." }, { - "id": "573", + "id": "576", "name": "Game Events Store canGoToNextGameEvent should return false when making game play status is pending." }, { - "id": "574", + "id": "577", "name": "Game Events Store resetGameEventIndex should reset game event index when called." }, { - "id": "575", + "id": "578", "name": "Game Events Store goToNextGameEvent should go to the next game event when called." }, { - "id": "576", + "id": "579", "name": "Game Events Store goToNextGameEvent should go to the next game event when the next current game event is undefined." }, { - "id": "577", + "id": "580", "name": "Game Events Store goToNextGameEvent should go to the next game event when current game play must be skipped but next event is not game turn start type." }, { - "id": "578", + "id": "581", "name": "Game Events Store goToNextGameEvent should not go to the next game event when the next current game event is game turn starts and must current game play be skipped." }, { - "id": "579", + "id": "582", "name": "Game Events Store goToNextGameEvent should not skip current game play when the next current game event is game turn starts but current action is not bury dead bodies." }, { - "id": "580", + "id": "583", "name": "Game Events Store goToNextGameEvent should skip current game play when the next current game event is game turn starts and must current game play be skipped." }, { - "id": "581", + "id": "584", "name": "Game Events Store goToNextGameEvent should skip current game play when it's the last game event and must current game play be skipped." }, { - "id": "582", + "id": "585", "name": "Game Events Store goToNextGameEvent should set current game event index to 0 when skipping current game play." }, { - "id": "583", + "id": "586", "name": "Game Events Store goToNextGameEvent should not increment current game event index when game events are undefined in game." }, { - "id": "584", + "id": "587", "name": "Game Events Store goToPreviousGameEvent should go to the previous game event when called." } ], @@ -229747,51 +230204,51 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordDecision/GameOverHistoryRecordDecision.nuxt.spec.ts": { "tests": [ { - "id": "585", + "id": "588", "name": "Game Over History Record Decision Component should match snapshot when rendered." }, { - "id": "586", + "id": "589", "name": "Game Over History Record Decision Component Game Over History Record Decision Targets should render Game Over History Record Targets when game history record play is target type." }, { - "id": "587", + "id": "590", "name": "Game Over History Record Decision Component Game Over History Record Decision Targets should not render Game Over History Record Targets when game history record play is not target type." }, { - "id": "588", + "id": "591", "name": "Game Over History Record Decision Component GameOverHistoryRecordDecisionNominatedPlayers should display nominated players when game history record play is vote type." }, { - "id": "589", + "id": "592", "name": "Game Over History Record Decision Component GameOverHistoryRecordDecisionNominatedPlayers should not display nominated players when game history record play is not vote type." }, { - "id": "590", + "id": "593", "name": "Game Over History Record Decision Component Game Over History Record Decision Buried Players should display buried players when game history record play is bury type." }, { - "id": "591", + "id": "594", "name": "Game Over History Record Decision Component Game Over History Record Decision Buried Players should not display buried players when game history record play is not bury type." }, { - "id": "592", + "id": "595", "name": "Game Over History Record Decision Component Game Over History Record Decision Chosen Card should display chosen card when game history record play is choose type." }, { - "id": "593", + "id": "596", "name": "Game Over History Record Decision Component Game Over History Record Decision Chosen Card should not display chosen card when game history record play is not choose type." }, { - "id": "594", + "id": "597", "name": "Game Over History Record Decision Component Game Over History Record Decision Chosen Side should display chosen side when game history record play is choose side type." }, { - "id": "595", + "id": "598", "name": "Game Over History Record Decision Component Game Over History Record Decision Chosen Side should not display chosen side when game history record play is not choose side type." }, { - "id": "596", + "id": "599", "name": "Game Over History Record Decision Component No decision displayed should not display any decision when game history record play is not a known type." } ], @@ -229800,111 +230257,111 @@ "tests/unit/specs/stores/audio/useAudioStore.spec.ts": { "tests": [ { - "id": "597", + "id": "600", "name": "Use Audio Store Initial State should create sound effects and background audios when created." }, { - "id": "598", + "id": "601", "name": "Use Audio Store Initial State should set audio settings from local storage when created." }, { - "id": "599", + "id": "602", "name": "Use Audio Store Initial State should set playing background audio name to undefined when created." }, { - "id": "600", + "id": "603", "name": "Use Audio Store Initial State should set night background audio names when created." }, { - "id": "601", + "id": "604", "name": "Use Audio Store Initial State should set day background audio names when created." }, { - "id": "602", + "id": "605", "name": "Use Audio Store Initial State should not be muted when created." }, { - "id": "603", + "id": "606", "name": "Use Audio Store setHowlerAudioSettingsFromAudioStoreState should set Howler mute when called." }, { - "id": "604", + "id": "607", "name": "Use Audio Store loadSoundEffects should load all sound effects when called." }, { - "id": "605", + "id": "608", "name": "Use Audio Store loadBackgroundAudios should load all background audios when called." }, { - "id": "606", + "id": "609", "name": "Use Audio Store loadAllAudios should load all audios when called." }, { - "id": "607", + "id": "610", "name": "Use Audio Store playSoundEffect should play the sound effect when called." }, { - "id": "608", + "id": "611", "name": "Use Audio Store fadeOutPlayingBackgroundAudio should not fade out playing background audio when there is no playing background audio." }, { - "id": "609", + "id": "612", "name": "Use Audio Store fadeOutPlayingBackgroundAudio should fade out playing background audio when there is playing background audio." }, { - "id": "610", + "id": "613", "name": "Use Audio Store fadeOutPlayingBackgroundAudio should stop playing background audio when there is playing background audio." }, { - "id": "611", + "id": "614", "name": "Use Audio Store playBackgroundAudio should fade in playing background audio when called." }, { - "id": "612", + "id": "615", "name": "Use Audio Store playBackgroundAudio should play the background audio when called." }, { - "id": "613", + "id": "616", "name": "Use Audio Store playBackgroundAudio should set playing background audio name to the background audio name when called." }, { - "id": "614", + "id": "617", "name": "Use Audio Store playRandomGamePhaseBackgroundAudio should not draw a random game phase background audio when the playing background audio is in the same game phase." }, { - "id": "615", + "id": "618", "name": "Use Audio Store playRandomGamePhaseBackgroundAudio should draw a random game phase background audio when the playing background audio is not in the same game phase." }, { - "id": "616", + "id": "619", "name": "Use Audio Store playRandomGamePhaseBackgroundAudio should draw a random game phase background audio when there is no playing background audio." }, { - "id": "617", + "id": "620", "name": "Use Audio Store playRandomGamePhaseBackgroundAudio should fade out playing background audio when called." }, { - "id": "618", + "id": "621", "name": "Use Audio Store playRandomGamePhaseBackgroundAudio should play the random game phase background audio when called." }, { - "id": "619", + "id": "622", "name": "Use Audio Store playRandomGamePhaseBackgroundAudio should not play the random game phase background audio when there is no random game phase background audio." }, { - "id": "620", + "id": "623", "name": "Use Audio Store setMute should set mute when called." }, { - "id": "621", + "id": "624", "name": "Use Audio Store setMute should set Howler mute when called." }, { - "id": "622", + "id": "625", "name": "Use Audio Store setMute should set audio settings from local storage when called." }, { - "id": "623", + "id": "626", "name": "Use Audio Store toggleMute should toggle mute when called." } ], @@ -229913,51 +230370,51 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlaygroundAdditionalCard/GameChooseCardPlaygroundAdditionalCard.nuxt.spec.ts": { "tests": [ { - "id": "624", + "id": "627", "name": "Game Choose Card Playground Additional Card Component should match snapshot when rendered." }, { - "id": "625", + "id": "628", "name": "Game Choose Card Playground Additional Card Component Additional Card Button should set base classes to button when card side is villagers." }, { - "id": "626", + "id": "629", "name": "Game Choose Card Playground Additional Card Component Additional Card Button should set base classes to button when card side is werewolves." }, { - "id": "627", + "id": "630", "name": "Game Choose Card Playground Additional Card Component Additional Card Button should set base classes plus selected class to button when card side is villagers and selected." }, { - "id": "628", + "id": "631", "name": "Game Choose Card Playground Additional Card Component Additional Card Button should set base classes plus selected class to button when card side is werewolves and selected." }, { - "id": "629", + "id": "632", "name": "Game Choose Card Playground Additional Card Component Additional Card Button Card Image should set card image to seer when card role name is seer." }, { - "id": "630", + "id": "633", "name": "Game Choose Card Playground Additional Card Component Additional Card Button Card Image should set base classes to card image when card side is villagers." }, { - "id": "631", + "id": "634", "name": "Game Choose Card Playground Additional Card Component Additional Card Button Card Image should set base classes to card image when card side is werewolves." }, { - "id": "632", + "id": "635", "name": "Game Choose Card Playground Additional Card Component Additional Card Button Card Image should set base classes plus selected class to card image when card side is villagers and selected." }, { - "id": "633", + "id": "636", "name": "Game Choose Card Playground Additional Card Component Additional Card Button Card Image should set base classes plus selected class to card image when card side is werewolves and selected." }, { - "id": "634", + "id": "637", "name": "Game Choose Card Playground Additional Card Component Additional Card Button Card Label should translate card label to seer when card role name is seer." }, { - "id": "635", + "id": "638", "name": "Game Choose Card Playground Additional Card Component Additional Card Button Emits should emit click additional card event when button is clicked." } ], @@ -229966,67 +230423,67 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriffElection/GameLobbyOptionsHubRolesTabSheriffElection.nuxt.spec.ts": { "tests": [ { - "id": "636", + "id": "639", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component should match snapshot when rendered." }, { - "id": "637", + "id": "640", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option Icon should set sun icon to the option icon when phase is day." }, { - "id": "638", + "id": "641", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option Icon should set moon icon to the option icon when phase is night." }, { - "id": "639", + "id": "642", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option Icon should set text-day class to the option icon class when phase is day." }, { - "id": "640", + "id": "643", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option Icon should set text-night class to the option icon class when phase is night." }, { - "id": "641", + "id": "644", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should translate option label when rendered." }, { - "id": "642", + "id": "645", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should translate option description when phase is night and turn is 1." }, { - "id": "643", + "id": "646", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should translate option description when phase is day and turn is 3." }, { - "id": "644", + "id": "647", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should set model value of input to true when the phase is day." }, { - "id": "645", + "id": "648", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should set model value of input to false when the phase is night." }, { - "id": "646", + "id": "649", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should update the create game dto store when the option is toggled on day phase change." }, { - "id": "647", + "id": "650", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should update the create game dto store when the option is toggled on night phase change." }, { - "id": "648", + "id": "651", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should translate election turn float label when rendered." }, { - "id": "649", + "id": "652", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should update the create game dto store when the option is changed by the input number." }, { - "id": "650", + "id": "653", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should update the create game dto store when the option is changed by the slider." }, { - "id": "651", + "id": "654", "name": "Game Lobby Options Hub Roles Tab Sheriff Election Component Election time option should not update the create game dto store when the option is changed by the input number and the value is null." } ], @@ -230035,63 +230492,63 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPiedPiper/GameLobbyOptionsHubRolesTabPiedPiper.nuxt.spec.ts": { "tests": [ { - "id": "652", + "id": "655", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component should match snapshot when rendered." }, { - "id": "653", + "id": "656", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Charmed People count per night option should translate option label when rendered." }, { - "id": "654", + "id": "657", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Charmed People count per night option should translate option description with selected value when rendered." }, { - "id": "655", + "id": "658", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Charmed People count per night option should translate option float label when rendered." }, { - "id": "656", + "id": "659", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Charmed People count per night option should update the create game dto store when the option is changed by the input number." }, { - "id": "657", + "id": "660", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Charmed People count per night option should update the create game dto store when the option is changed by the slider." }, { - "id": "658", + "id": "661", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Charmed People count per night option should not update the create game dto store when the option is changed by the input number and the value is null." }, { - "id": "659", + "id": "662", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Is powerless on Werewolves Side should translate option label when rendered." }, { - "id": "660", + "id": "663", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Is powerless on Werewolves Side should translate option description when the option is activated." }, { - "id": "661", + "id": "664", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Is powerless on Werewolves Side should translate option description when the option is deactivated." }, { - "id": "662", + "id": "665", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Is powerless on Werewolves Side should update the create game dto store when the option is toggled." }, { - "id": "663", + "id": "666", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Are charmed people revealed should translate option label when rendered." }, { - "id": "664", + "id": "667", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Are charmed people revealed should translate option description when the option is activated." }, { - "id": "665", + "id": "668", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Are charmed people revealed should translate option description when the option is deactivated." }, { - "id": "666", + "id": "669", "name": "Game Lobby Options Hub Roles Tab Pied Piper Component Are charmed people revealed should update the create game dto store when the option is toggled." } ], @@ -230100,31 +230557,31 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameStartsEvent/GameStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "667", + "id": "670", "name": "Game Starts Event Component should match snapshot when rendered." }, { - "id": "668", + "id": "671", "name": "Game Starts Event Component Game Starts Event texts should have texts for the game starts event containing sheriff election when first action is sheriff election." }, { - "id": "669", + "id": "672", "name": "Game Starts Event Component Game Starts Event texts should have texts for the game starts event without sheriff election when first action is not sheriff election." }, { - "id": "670", + "id": "673", "name": "Game Starts Event Component Game Starts Event texts should have texts for the game starts event without sheriff election when there is no current play." }, { - "id": "671", + "id": "674", "name": "Game Starts Event Component Game Starts Event texts should have texts for the game starts event with composition hidden when composition is hidden in game options." }, { - "id": "672", + "id": "675", "name": "Game Starts Event Component Game Starts Event texts should have texts with special rules when special rules are present in game options." }, { - "id": "673", + "id": "676", "name": "Game Starts Event Component Game Starts Event texts Game Event Flipping Player Card should pass all players to the game event flipping player card component when rendered." } ], @@ -230133,47 +230590,47 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionBoundaries/GameLobbyRolePickerDescriptionBoundaries.nuxt.spec.ts": { "tests": [ { - "id": "674", + "id": "677", "name": "Game Lobby Role Picker Description Boundaries Component should match snapshot when rendered." }, { - "id": "675", + "id": "678", "name": "Game Lobby Role Picker Description Boundaries Component Role count should translate role count in create game dto when rendered." }, { - "id": "676", + "id": "679", "name": "Game Lobby Role Picker Description Boundaries Component Role max reached should render role max reached when max is reached in create game dto." }, { - "id": "677", + "id": "680", "name": "Game Lobby Role Picker Description Boundaries Component Role max reached should not render role max reached when max is not reached in create game dto." }, { - "id": "678", + "id": "681", "name": "Game Lobby Role Picker Description Boundaries Component Role Count in Additional Cards should render role count in additional cards when role is in additional cards." }, { - "id": "679", + "id": "682", "name": "Game Lobby Role Picker Description Boundaries Component Role Count in Additional Cards should not render role count in additional cards when role is not in additional cards." }, { - "id": "680", + "id": "683", "name": "Game Lobby Role Picker Description Boundaries Component Recommended min players should render recommended min players when role has recommended min players." }, { - "id": "681", + "id": "684", "name": "Game Lobby Role Picker Description Boundaries Component Recommended min players should not render recommended min players when role has no recommended min players." }, { - "id": "682", + "id": "685", "name": "Game Lobby Role Picker Description Boundaries Component Min in game not reached should render min in game not reached when min is not reached in create game dto and there is at least one role already." }, { - "id": "683", + "id": "686", "name": "Game Lobby Role Picker Description Boundaries Component Min in game not reached should not render min in game not reached when min is reached in create game dto." }, { - "id": "684", + "id": "687", "name": "Game Lobby Role Picker Description Boundaries Component Min in game not reached should not render min in game not reached when there is no role in create game dto." } ], @@ -230182,67 +230639,67 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSheriff/GameLobbyOptionsHubRolesTabSheriff.nuxt.spec.ts": { "tests": [ { - "id": "685", + "id": "688", "name": "Game Lobby Options Hub Roles Tab Sheriff Component should match snapshot when rendered." }, { - "id": "686", + "id": "689", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Option Legend should not set grayscale filter class to sheriff icon when sheriff is enabled." }, { - "id": "687", + "id": "690", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Option Legend should set grayscale filter class to sheriff icon when sheriff is disabled." }, { - "id": "688", + "id": "691", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Option Legend should translate legend when rendered." }, { - "id": "689", + "id": "692", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Is enabled option should translate option label when rendered." }, { - "id": "690", + "id": "693", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Is enabled option should translate option description when the option is activated." }, { - "id": "691", + "id": "694", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Is enabled option should translate option description when the option is deactivated." }, { - "id": "692", + "id": "695", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Is enabled option should update the create game dto store when the option is toggled." }, { - "id": "693", + "id": "696", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Must settle Votes options should translate option label when rendered." }, { - "id": "694", + "id": "697", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Must settle Votes options should translate option description when the option is activated." }, { - "id": "695", + "id": "698", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Must settle Votes options should translate option description when the option is deactivated." }, { - "id": "696", + "id": "699", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Must settle Votes options should update the create game dto store when the option is toggled." }, { - "id": "697", + "id": "700", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Has Doubled Vote option should translate option label when rendered." }, { - "id": "698", + "id": "701", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Has Doubled Vote option should translate option description when the option is activated." }, { - "id": "699", + "id": "702", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Has Doubled Vote option should translate option description when the option is deactivated." }, { - "id": "700", + "id": "703", "name": "Game Lobby Options Hub Roles Tab Sheriff Component Has Doubled Vote option should update the create game dto store when the option is toggled." } ], @@ -230251,43 +230708,43 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSheriffPromotionEvent/GameSheriffPromotionEvent.nuxt.spec.ts": { "tests": [ { - "id": "701", + "id": "704", "name": "Game Sheriff Promotion Event Component should match snapshot when rendered." }, { - "id": "702", + "id": "705", "name": "Game Sheriff Promotion Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "703", + "id": "706", "name": "Game Sheriff Promotion Event Component should play sheriff promotion effect when rendered." }, { - "id": "704", + "id": "707", "name": "Game Sheriff Promotion Event Component Sheriff Promotion Event Texts should pass sheriff promotion by old sheriff event texts when sheriff is defined and last game play action is delegate." }, { - "id": "705", + "id": "708", "name": "Game Sheriff Promotion Event Component Sheriff Promotion Event Texts should pass sheriff promotion by survivors event texts when sheriff is defined but last game play action is null." }, { - "id": "706", + "id": "709", "name": "Game Sheriff Promotion Event Component Sheriff Promotion Event Texts should pass sheriff promotion by survivors event texts when sheriff is defined and last game play action is elect sheriff." }, { - "id": "707", + "id": "710", "name": "Game Sheriff Promotion Event Component Sheriff Promotion Event Texts should pass can't find sheriff event text when sheriff is not defined." }, { - "id": "708", + "id": "711", "name": "Game Sheriff Promotion Event Component Game Event Flipping Card should pass sheriff player when sheriff is defined." }, { - "id": "709", + "id": "712", "name": "Game Sheriff Promotion Event Component Game Event Flipping Card should not render flipping card when there are no players in event." }, { - "id": "710", + "id": "713", "name": "Game Sheriff Promotion Event Component Game Event Flipping Card should not render flipping card when players are undefined in event." } ], @@ -230296,47 +230753,47 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogContent.nuxt.spec.ts": { "tests": [ { - "id": "711", + "id": "714", "name": "Game Lobby Start Game Confirm Dialog Content Component should match snapshot when rendered." }, { - "id": "712", + "id": "715", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should render player positioned confirm step component when current confirm step is players-positioned." }, { - "id": "713", + "id": "716", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should render players ready confirm step component when current confirm step is players-ready." }, { - "id": "714", + "id": "717", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should render thief additional cards placed component when current confirm step is thief-additional-cards-placed." }, { - "id": "715", + "id": "718", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should render actor additional cards placed component when current confirm step is actor-additional-cards-placed." }, { - "id": "716", + "id": "719", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should render game options changed component when current confirm step is game-options-changed." }, { - "id": "717", + "id": "720", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should emit confirm step event when component emits confirm step event." }, { - "id": "718", + "id": "721", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should emit reject players position step event when component emits reject step event." }, { - "id": "719", + "id": "722", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should emit reject thief additional cards placed step event when component emits same event." }, { - "id": "720", + "id": "723", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should emit reject actor additional cards placed step event when component emits same event." }, { - "id": "721", + "id": "724", "name": "Game Lobby Start Game Confirm Dialog Content Component Confirm Step Component should emit reject game options changed step event when component emits same event." } ], @@ -230345,55 +230802,55 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSurvivorsTurnStartsEvent/GameSurvivorsTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "722", + "id": "725", "name": "Game Survivors Turn Starts Event Component should match snapshot when rendered." }, { - "id": "723", + "id": "726", "name": "Game Survivors Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "724", + "id": "727", "name": "Game Survivors Turn Starts Event Component Game Event Texts 'should not display any texts when the…'" }, { - "id": "725", + "id": "728", "name": "Game Survivors Turn Starts Event Component Game Event Texts 'should display sheriff election texts…'" }, { - "id": "726", + "id": "729", "name": "Game Survivors Turn Starts Event Component Game Event Texts 'should display sheriff election with …'" }, { - "id": "727", + "id": "730", "name": "Game Survivors Turn Starts Event Component Game Event Texts 'should display voting texts for class…'" }, { - "id": "728", + "id": "731", "name": "Game Survivors Turn Starts Event Component Game Event Texts 'should display voting texts for angel…'" }, { - "id": "729", + "id": "732", "name": "Game Survivors Turn Starts Event Component Game Event Texts 'should display voting texts for stutt…'" }, { - "id": "730", + "id": "733", "name": "Game Survivors Turn Starts Event Component Game Event Texts 'should display voting texts when ther…'" }, { - "id": "731", + "id": "734", "name": "Game Survivors Turn Starts Event Component Game Event Texts 'should display bury dead bodies texts…'" }, { - "id": "732", + "id": "735", "name": "Game Survivors Turn Starts Event Component Sound Effect 'should play dramatic drums sound effe…'" }, { - "id": "733", + "id": "736", "name": "Game Survivors Turn Starts Event Component Sound Effect 'should play dramatic drums and angeli…'" }, { - "id": "734", + "id": "737", "name": "Game Survivors Turn Starts Event Component Sound Effect 'should play dramatic drums and gavel …'" } ], @@ -230402,39 +230859,39 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameThiefMayHaveChosenCardEvent/GameThiefMayHaveChosenCardEvent.nuxt.spec.ts": { "tests": [ { - "id": "735", + "id": "738", "name": "Game Thief May Have Chosen Card Event Component should match snapshot when rendered." }, { - "id": "736", + "id": "739", "name": "Game Thief May Have Chosen Card Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "737", + "id": "740", "name": "Game Thief May Have Chosen Card Event Component Sound Effect should play evil laugh sound effect when rendered." }, { - "id": "738", + "id": "741", "name": "Game Thief May Have Chosen Card Event Component Game Event Texts should pass can't find thief player text when thief player is not found." }, { - "id": "739", + "id": "742", "name": "Game Thief May Have Chosen Card Event Component Game Event Texts should pass thief revealed card texts with revealed card when option is activated and thief has chosen a card." }, { - "id": "740", + "id": "743", "name": "Game Thief May Have Chosen Card Event Component Game Event Texts should pass thief has not chosen card text when option is activated and thief has not chosen a card." }, { - "id": "741", + "id": "744", "name": "Game Thief May Have Chosen Card Event Component Game Event Texts should pass thief may have chosen card texts when chosen card is not revealed." }, { - "id": "742", + "id": "745", "name": "Game Thief May Have Chosen Card Event Component Game Event Texts Flipping Card should set svg icon path to undefined when chosen card is undefined." }, { - "id": "743", + "id": "746", "name": "Game Thief May Have Chosen Card Event Component Game Event Texts Flipping Card should set svg icon path to thief role svg icon path when chosen card is defined." } ], @@ -230443,51 +230900,51 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderSetupButtons.nuxt.spec.ts": { "tests": [ { - "id": "744", + "id": "747", "name": "Game Lobby Header Setup Buttons Component should match snapshot when rendered." }, { - "id": "745", + "id": "748", "name": "Game Lobby Header Setup Buttons Component Options Button should emit 'gameOptionsButtonClick' event when clicked." }, { - "id": "746", + "id": "749", "name": "Game Lobby Header Setup Buttons Component Options Button should throw error when highlightOptionsButton method is called but component is not defined." }, { - "id": "747", + "id": "750", "name": "Game Lobby Header Setup Buttons Component Options Button should highlight options button when method is called from parent component." }, { - "id": "748", + "id": "751", "name": "Game Lobby Header Setup Buttons Component Position Coordinator should not render position coordinator button when there are not enough players in game." }, { - "id": "749", + "id": "752", "name": "Game Lobby Header Setup Buttons Component Position Coordinator should emit 'positionCoordinatorButtonClick' event when clicked." }, { - "id": "750", + "id": "753", "name": "Game Lobby Header Setup Buttons Component Position Coordinator should throw error when highlightPositionCoordinatorButton method is called but component is not defined." }, { - "id": "751", + "id": "754", "name": "Game Lobby Header Setup Buttons Component Position Coordinator should highlight position coordinator button when method is called from parent component." }, { - "id": "752", + "id": "755", "name": "Game Lobby Header Setup Buttons Component Additional Cards Manager Button should not render additional cards manager button when there are no thief not actor." }, { - "id": "753", + "id": "756", "name": "Game Lobby Header Setup Buttons Component Additional Cards Manager Button should emit 'additionalCardsManagerButtonClick' event when clicked." }, { - "id": "754", + "id": "757", "name": "Game Lobby Header Setup Buttons Component Additional Cards Manager Button should throw error when highlightAdditionalCardsManagerButton method is called but component is not defined." }, { - "id": "755", + "id": "758", "name": "Game Lobby Header Setup Buttons Component Additional Cards Manager Button should highlight additional cards manager button when method is called from parent component." } ], @@ -230496,63 +230953,63 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePhaseStartsEvent/GamePhaseStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "756", + "id": "759", "name": "Game Phase Starts Event Component should match snapshot when rendered." }, { - "id": "757", + "id": "760", "name": "Game Phase Starts Event Component should match snapshot without shallow rendering when rendered for night falling." }, { - "id": "758", + "id": "761", "name": "Game Phase Starts Event Component should match snapshot without shallow rendering when rendered for day rising." }, { - "id": "759", + "id": "762", "name": "Game Phase Starts Event Component Game Phase Event Texts should pass day rises texts when new game phase is day." }, { - "id": "760", + "id": "763", "name": "Game Phase Starts Event Component Game Phase Event Texts should pass night falls texts when new game phase is night." }, { - "id": "761", + "id": "764", "name": "Game Phase Starts Event Component Phase transition Day to Night Transition should initially render day lottie when new game phase is night." }, { - "id": "762", + "id": "765", "name": "Game Phase Starts Event Component Phase transition Day to Night Transition should initially set day lottie height and width when new game phase is night." }, { - "id": "763", + "id": "766", "name": "Game Phase Starts Event Component Phase transition Day to Night Transition should transition to night lottie when new game phase is night." }, { - "id": "764", + "id": "767", "name": "Game Phase Starts Event Component Phase transition Day to Night Transition should play night sound effect when new game phase is night." }, { - "id": "765", + "id": "768", "name": "Game Phase Starts Event Component Phase transition Night to Day Transition should initially render night lottie when new game phase is day." }, { - "id": "766", + "id": "769", "name": "Game Phase Starts Event Component Phase transition Night to Day Transition should initially set night lottie height and width when new game phase is day." }, { - "id": "767", + "id": "770", "name": "Game Phase Starts Event Component Phase transition Night to Day Transition should transition to day lottie when new game phase is day." }, { - "id": "768", + "id": "771", "name": "Game Phase Starts Event Component Phase transition Night to Day Transition should play day sound effect when new game phase is day." }, { - "id": "769", + "id": "772", "name": "Game Phase Starts Event Component Phase transition should set timeout to transition phase when rendered." }, { - "id": "770", + "id": "773", "name": "Game Phase Starts Event Component Phase transition should render any phase lottie when new game phase is not day or night." } ], @@ -230561,59 +231018,59 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePicker.nuxt.spec.ts": { "tests": [ { - "id": "771", + "id": "774", "name": "Game Lobby Role Picker Component should match snapshot when rendered." }, { - "id": "772", + "id": "775", "name": "Game Lobby Role Picker Component Dialog not open should set dialog to invisible when rendered." }, { - "id": "773", + "id": "776", "name": "Game Lobby Role Picker Component Dialog not open Game Lobby Role Picker Header should not render game lobby role picker header when player is not defined." }, { - "id": "774", + "id": "777", "name": "Game Lobby Role Picker Component Dialog not open Game Lobby Role Picker Content should not render game lobby role picker content when player is not defined." }, { - "id": "775", + "id": "778", "name": "Game Lobby Role Picker Component Dialog not open Game Lobby Role Picker Footer should not render game lobby role picker footer when player is not defined." }, { - "id": "776", + "id": "779", "name": "Game Lobby Role Picker Component Dialog open should set dialog to visible when freshly opened." }, { - "id": "777", + "id": "780", "name": "Game Lobby Role Picker Component Dialog open Game Lobby Role Picker Header should render game lobby role picker header when player is defined." }, { - "id": "778", + "id": "781", "name": "Game Lobby Role Picker Component Dialog open Game Lobby Role Picker Header should pass player to game lobby role picker header when freshly opened." }, { - "id": "779", + "id": "782", "name": "Game Lobby Role Picker Component Dialog open Game Lobby Role Picker Content should render game lobby role picker content when player is defined." }, { - "id": "780", + "id": "783", "name": "Game Lobby Role Picker Component Dialog open Game Lobby Role Picker Content should pass an undefined picked role to game lobby role picker description when freshly opened." }, { - "id": "781", + "id": "784", "name": "Game Lobby Role Picker Component Dialog open Game Lobby Role Picker Content should pick role when game lobby role picker grid emits role pick event." }, { - "id": "782", + "id": "785", "name": "Game Lobby Role Picker Component Dialog open Game Lobby Role Picker Footer should render game lobby role picker footer when player is defined." }, { - "id": "783", + "id": "786", "name": "Game Lobby Role Picker Component Dialog open Game Lobby Role Picker Footer should pass player to game lobby role picker footer when freshly opened." }, { - "id": "784", + "id": "787", "name": "Game Lobby Role Picker Component Dialog open Game Lobby Role Picker Footer should close dialog when game lobby role picker footer emits player update event." } ], @@ -230622,63 +231079,63 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyPlayerInput/GameLobbyPlayerInput.nuxt.spec.ts": { "tests": [ { - "id": "785", + "id": "788", "name": "Game Lobby Player Input Component should match snapshot when rendered." }, { - "id": "786", + "id": "789", "name": "Game Lobby Player Input Component Text input should be prefilled when v-model value is not empty." }, { - "id": "787", + "id": "790", "name": "Game Lobby Player Input Component Text input should be disabled when create game dto has reached max players." }, { - "id": "788", + "id": "791", "name": "Game Lobby Player Input Component Text input should have invalid class when player name exists in game." }, { - "id": "789", + "id": "792", "name": "Game Lobby Player Input Component Text input should not be disabled when create game dto has not reached max players." }, { - "id": "790", + "id": "793", "name": "Game Lobby Player Input Component Text input should translate input label when rendered." }, { - "id": "791", + "id": "794", "name": "Game Lobby Player Input Component Add button should be disabled when create game dto has reached max players." }, { - "id": "792", + "id": "795", "name": "Game Lobby Player Input Component Add button should be disabled when one player name is same as input value." }, { - "id": "793", + "id": "796", "name": "Game Lobby Player Input Component Add button should be disabled when one player name is same as input value even with some spaces around it." }, { - "id": "794", + "id": "797", "name": "Game Lobby Player Input Component Add button should be enabled when input value is not empty and create game dto has not reached max players." }, { - "id": "795", + "id": "798", "name": "Game Lobby Player Input Component Add button should translate button label when rendered." }, { - "id": "796", + "id": "799", "name": "Game Lobby Player Input Component Help Text should translate max players reached help message when max players are reached in game." }, { - "id": "797", + "id": "800", "name": "Game Lobby Player Input Component Help Text should translate player name exists help message when player name exists in game." }, { - "id": "798", + "id": "801", "name": "Game Lobby Player Input Component Help Text should translate player name max length help message when player name is too long." }, { - "id": "799", + "id": "802", "name": "Game Lobby Player Input Component Help Text should translate basic help message when rendered." } ], @@ -230687,39 +231144,39 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameFoxMayHaveSniffedEvent/GameFoxMayHaveSniffedEvent.nuxt.spec.ts": { "tests": [ { - "id": "800", + "id": "803", "name": "Game Fox May Have Sniffed Event Component should match snapshot when rendered." }, { - "id": "801", + "id": "804", "name": "Game Fox May Have Sniffed Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "802", + "id": "805", "name": "Game Fox May Have Sniffed Event Component should play fox sniffing sound when rendered." }, { - "id": "803", + "id": "806", "name": "Game Fox May Have Sniffed Event Component Game Play Event Texts should pass default texts with game master thumb up and powerless disclaimer when fox have sniffed targets with werewolf and game options are default." }, { - "id": "804", + "id": "807", "name": "Game Fox May Have Sniffed Event Component Game Play Event Texts should pass default texts with game master thumb down and powerless disclaimer when fox have sniffed targets without werewolf and game options are default." }, { - "id": "805", + "id": "808", "name": "Game Fox May Have Sniffed Event Component Game Play Event Texts should pass default texts without powerless disclaimer when fox have sniffed targets with werewolf and game options disabled fox powerless if misses." }, { - "id": "806", + "id": "809", "name": "Game Fox May Have Sniffed Event Component Game Play Event Texts should pass default texts without game master thumb when fox skipped its turn." }, { - "id": "807", + "id": "810", "name": "Game Fox May Have Sniffed Event Component Flipping Player Card should pass werewolves svg icon path when there are werewolves in the group." }, { - "id": "808", + "id": "811", "name": "Game Fox May Have Sniffed Event Component Flipping Player Card should pass question mark svg icon path when there are no werewolves in the group." } ], @@ -230728,27 +231185,27 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordDecision/GameOverHistoryRecordDecisionBuriedPlayers/GameOverHistoryRecordDecisionBuriedPlayers.nuxt.spec.ts": { "tests": [ { - "id": "809", + "id": "812", "name": "Game Over History Record Decision Buried Players Component should match snapshot when rendered." }, { - "id": "810", + "id": "813", "name": "Game Over History Record Decision Buried Players Component Buried Players should display the truncated list of buried players when rendered." }, { - "id": "811", + "id": "814", "name": "Game Over History Record Decision Buried Players Component Buried Players should display all buried players when there are less than 4 buried players." }, { - "id": "812", + "id": "815", "name": "Game Over History Record Decision Buried Players Component Buried Players should display no buried players when there are no interactions." }, { - "id": "813", + "id": "816", "name": "Game Over History Record Decision Buried Players Component Buried Players should display no buried players when there are no eligible targets." }, { - "id": "814", + "id": "817", "name": "Game Over History Record Decision Buried Players Component Overflow Tag should display the overflow tag when rendered." } ], @@ -230757,47 +231214,47 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyBeforeLeaveConfirmDialog/GameLobbyBeforeLeaveConfirmDialog.nuxt.spec.ts": { "tests": [ { - "id": "815", + "id": "818", "name": "Game Lobby Before Leave Confirm Dialog Component should match snapshot when rendered." }, { - "id": "816", + "id": "819", "name": "Game Lobby Before Leave Confirm Dialog Component should match snapshot when rendered without shallow." }, { - "id": "817", + "id": "820", "name": "Game Lobby Before Leave Confirm Dialog Component On Before Route Leaving should return false when there are enough players and confirm to leave is false." }, { - "id": "818", + "id": "821", "name": "Game Lobby Before Leave Confirm Dialog Component On Before Route Leaving should return true when guard destination name is game id." }, { - "id": "819", + "id": "822", "name": "Game Lobby Before Leave Confirm Dialog Component On Before Route Leaving should return true when there are enough players and confirm to leave is true." }, { - "id": "820", + "id": "823", "name": "Game Lobby Before Leave Confirm Dialog Component On Before Route Leaving should return true when there are not enough players and confirm to leave is false." }, { - "id": "821", + "id": "824", "name": "Game Lobby Before Leave Confirm Dialog Component On Before Route Leaving should not set desired destination full path when there are enough players and confirm to leave is false." }, { - "id": "822", + "id": "825", "name": "Game Lobby Before Leave Confirm Dialog Component On Before Route Leaving should set desired destination full path to guard full path when there are not enough players and confirm to leave is false." }, { - "id": "823", + "id": "826", "name": "Game Lobby Before Leave Confirm Dialog Component Confirm should set confirm parameters to confirm composable when open." }, { - "id": "824", + "id": "827", "name": "Game Lobby Before Leave Confirm Dialog Component Confirm On Leaving should set confirm to leave to true when accept leaving." }, { - "id": "825", + "id": "828", "name": "Game Lobby Before Leave Confirm Dialog Component Confirm On Leaving should push to desired destination full path when accept leaving." } ], @@ -230806,71 +231263,71 @@ "tests/unit/specs/components/pages/game/GameOver/GameOver.nuxt.spec.ts": { "tests": [ { - "id": "826", + "id": "829", "name": "Game Over Component should match snapshot when rendered." }, { - "id": "827", + "id": "830", "name": "Game Over Component should set head title and meta tags when rendered." }, { - "id": "828", + "id": "831", "name": "Game Over Component should fetch and set game history records when rendered." }, { - "id": "829", + "id": "832", "name": "Game Over Component Game Over Winners should display game over winners when there are winners." }, { - "id": "830", + "id": "833", "name": "Game Over Component Game Over Winners should not display game over winners when there is no victory." }, { - "id": "831", + "id": "834", "name": "Game Over Component Game Over Winners should not display game over winners when there are no winners." }, { - "id": "832", + "id": "835", "name": "Game Over Component Sound Effect 'should play angelic intervention soun…'" }, { - "id": "833", + "id": "836", "name": "Game Over Component Sound Effect 'should play heartbeat sound effect wh…'" }, { - "id": "834", + "id": "837", "name": "Game Over Component Sound Effect 'should play death sound effect when n…'" }, { - "id": "835", + "id": "838", "name": "Game Over Component Sound Effect 'should play flute and drums sound eff…'" }, { - "id": "836", + "id": "839", "name": "Game Over Component Sound Effect 'should play possessed laugh sound eff…'" }, { - "id": "837", + "id": "840", "name": "Game Over Component Sound Effect 'should play crowd cheering sound effe…'" }, { - "id": "838", + "id": "841", "name": "Game Over Component Sound Effect 'should play werewolf howling sound ef…'" }, { - "id": "839", + "id": "842", "name": "Game Over Component Sound Effect 'should play werewolf transformation s…'" }, { - "id": "840", + "id": "843", "name": "Game Over Component Sound Effect 'should play death sound effect when t…'" }, { - "id": "841", + "id": "844", "name": "Game Over Component Game History should show game history when the show game history button is clicked." }, { - "id": "842", + "id": "845", "name": "Game Over Component Game History should throw an error when the show game history button is clicked and the game history is not defined." } ], @@ -230879,27 +231336,27 @@ "tests/unit/specs/composables/api/game/game-options/useGameOptionsTexts.spec.ts": { "tests": [ { - "id": "843", + "id": "846", "name": "Use Game Options Texts Composable gameOptionsTexts should translate all game options when called." }, { - "id": "844", + "id": "847", "name": "Use Game Options Texts Composable changedGameOptionsTexts should return empty array when there is no changed game options." }, { - "id": "845", + "id": "848", "name": "Use Game Options Texts Composable changedGameOptionsTexts should return an array of changed game options when there are changed game options." }, { - "id": "846", + "id": "849", "name": "Use Game Options Texts Composable getGameOptionText should return the translated text of the given game option when called." }, { - "id": "847", + "id": "850", "name": "Use Game Options Texts Composable getGameOptionKeyFromText should return the game option key of the given text when called." }, { - "id": "848", + "id": "851", "name": "Use Game Options Texts Composable getGameOptionKeyFromText should return undefined when the given text is not a game option text." } ], @@ -230908,55 +231365,55 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSidePlayer/GameTeamSidePlayerRoleName/GameTeamSidePlayerRoleName.nuxt.spec.ts": { "tests": [ { - "id": "849", + "id": "852", "name": "Game Team Side Player Role Name Component should match snapshot when rendered." }, { - "id": "850", + "id": "853", "name": "Game Team Side Player Role Name Component Player role revelation should display player seen logo when player role is revealed." }, { - "id": "851", + "id": "854", "name": "Game Team Side Player Role Name Component Player role revelation should not display player death logo when player is alive." }, { - "id": "852", + "id": "855", "name": "Game Team Side Player Role Name Component Player role revelation should attach tooltip to player seen logo when player's role is revealed." }, { - "id": "853", + "id": "856", "name": "Game Team Side Player Role Name Component Player originally Thief should display thief logo when player was originally a thief but now another role." }, { - "id": "854", + "id": "857", "name": "Game Team Side Player Role Name Component Player originally Thief should not display thief logo when player was not originally a thief." }, { - "id": "855", + "id": "858", "name": "Game Team Side Player Role Name Component Player originally Thief should not display thief logo when thief is still thief." }, { - "id": "856", + "id": "859", "name": "Game Team Side Player Role Name Component Player originally Thief should attach tooltip to thief logo when player was originally a thief." }, { - "id": "857", + "id": "860", "name": "Game Team Side Player Role Name Component Player originally Actor should display actor logo when player was originally an actor but now another role." }, { - "id": "858", + "id": "861", "name": "Game Team Side Player Role Name Component Player originally Actor should not display actor logo when player was not originally an actor." }, { - "id": "859", + "id": "862", "name": "Game Team Side Player Role Name Component Player originally Actor should not display actor logo when actor is still actor." }, { - "id": "860", + "id": "863", "name": "Game Team Side Player Role Name Component Player originally Actor should attach tooltip to actor logo when player was originally an actor." }, { - "id": "861", + "id": "864", "name": "Game Team Side Player Role Name Component Player role name should display player role when rendered." } ], @@ -230965,59 +231422,59 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogFooter/GameLobbyStartGameConfirmDialogFooter.nuxt.spec.ts": { "tests": [ { - "id": "862", + "id": "865", "name": "Game Lobby Start Game Confirm Dialog Footer Component should match snapshot when rendered." }, { - "id": "863", + "id": "866", "name": "Game Lobby Start Game Confirm Dialog Footer Component Cancel Button should emit reject start game event when clicked." }, { - "id": "864", + "id": "867", "name": "Game Lobby Start Game Confirm Dialog Footer Component Cancel Button should translate button text when rendered." }, { - "id": "865", + "id": "868", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should emit confirm start game event when clicked." }, { - "id": "866", + "id": "869", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should set forward icon to button icon when confirm step is 'players-positioned'." }, { - "id": "867", + "id": "870", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should translate confirm button when confirm step is 'players-positioned'." }, { - "id": "868", + "id": "871", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should set special classes to button icon when confirm step is 'players-positioned'." }, { - "id": "869", + "id": "872", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should set confirm button icon to play when confirm step is 'players-ready'." }, { - "id": "870", + "id": "873", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should set special classes to button icon when confirm step is 'players-ready'." }, { - "id": "871", + "id": "874", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should translate confirm button when confirm step is 'players-ready'." }, { - "id": "872", + "id": "875", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should set special classes to button when confirm step is 'players-ready'." }, { - "id": "873", + "id": "876", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should not set special classes to button icon when confirm step is not 'players-ready'." }, { - "id": "874", + "id": "877", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should set forward icon to button icon when confirm step is not 'players-ready'." }, { - "id": "875", + "id": "878", "name": "Game Lobby Start Game Confirm Dialog Footer Component Confirm Button should set play icon to button icon when confirm step is 'players-ready'." } ], @@ -231026,39 +231483,39 @@ "tests/unit/specs/components/layouts/default/ParametersMenu/ParametersMenu.nuxt.spec.ts": { "tests": [ { - "id": "876", + "id": "879", "name": "Parameters Menu Component should match snapshot when rendered." }, { - "id": "877", + "id": "880", "name": "Parameters Menu Component Parameters Menu Button should open the parameters menu when clicked." }, { - "id": "878", + "id": "881", "name": "Parameters Menu Component Parameters Menu Button should not open the parameters menu and throw error when clicked if the menu is not found in refs." }, { - "id": "879", + "id": "882", "name": "Parameters Menu Component Parameters Menu should show success toast when game is canceled." }, { - "id": "880", + "id": "883", "name": "Parameters Menu Component Parameters Menu should pass the default items to the menu when rendered." }, { - "id": "881", + "id": "884", "name": "Parameters Menu Component Parameters Menu should pass the default items and game items to the menu when game is defined and playing." }, { - "id": "882", + "id": "885", "name": "Parameters Menu Component Parameters Menu should pass the default items and game items to the menu with cancel game to disabled when game is defined and not playing." }, { - "id": "883", + "id": "886", "name": "Parameters Menu Component Parameters Menu should cancel game when clicking on cancel game button." }, { - "id": "884", + "id": "887", "name": "Parameters Menu Component Parameters Menu should navigate to home page when clicking on back to home button." } ], @@ -231067,43 +231524,43 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameDeathEvent/GameDeathEvent.nuxt.spec.ts": { "tests": [ { - "id": "885", + "id": "888", "name": "Game Death Event Component should match snapshot when rendered." }, { - "id": "886", + "id": "889", "name": "Game Death Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "887", + "id": "890", "name": "Game Death Event Component should play death sound effect when rendered." }, { - "id": "888", + "id": "891", "name": "Game Death Event Component Player Dies Event Texts should pass event texts when rendered." }, { - "id": "889", + "id": "892", "name": "Game Death Event Component Player Dies Event Texts should pass can't find dead player texts when player is not found in event." }, { - "id": "890", + "id": "893", "name": "Game Death Event Component Player Dies Event Texts should pass can't find dead player texts when there are not players defined in event." }, { - "id": "891", + "id": "894", "name": "Game Death Event Component Player Dies Event Texts should pass event texts with player role remaining hidden when the options is activated." }, { - "id": "892", + "id": "895", "name": "Game Death Event Component Player Dies Event Texts On text change event should not call play sound effect when new game event text is not a death text." }, { - "id": "893", + "id": "896", "name": "Game Death Event Component Player Dies Event Texts On text change event should call play sound effect when new game event text is a death text." }, { - "id": "894", + "id": "897", "name": "Game Death Event Component Player Dies Event Role Image should render player role image when dead player is found in event." } ], @@ -231112,39 +231569,39 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameSeerHasSeenEvent/GameSeerHasSeenEvent.nuxt.spec.ts": { "tests": [ { - "id": "895", + "id": "898", "name": "Game Seer Has Seen Event Component should match snapshot when rendered." }, { - "id": "896", + "id": "899", "name": "Game Seer Has Seen Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "897", + "id": "900", "name": "Game Seer Has Seen Event Component should play seer has seen sound effect when rendered." }, { - "id": "898", + "id": "901", "name": "Game Seer Has Seen Event Component Seer Has Seen Event Texts should pass default event texts when game options are default ones." }, { - "id": "899", + "id": "902", "name": "Game Seer Has Seen Event Component Seer Has Seen Event Texts should pass not found targeted player texts when there are no players in event." }, { - "id": "900", + "id": "903", "name": "Game Seer Has Seen Event Component Seer Has Seen Event Texts should pass not found targeted player texts when players in event are undefined." }, { - "id": "901", + "id": "904", "name": "Game Seer Has Seen Event Component Seer Has Seen Event Texts should add game master mime text when seer is not talking in game options." }, { - "id": "902", + "id": "905", "name": "Game Seer Has Seen Event Component Seer Has Seen Event Texts should pass seen see side texts when seer is seeing target's side only in game options." }, { - "id": "903", + "id": "906", "name": "Game Seer Has Seen Event Component Seer Has Seen Event Texts should add game master mime text when seer is not talking and seeing target's side only in game options." } ], @@ -231153,51 +231610,51 @@ "tests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventPreviousTextButton/GameEventPreviousTextButton.nuxt.spec.ts": { "tests": [ { - "id": "904", + "id": "907", "name": "Game Event Previous Text Button Component should match snapshot when rendered." }, { - "id": "905", + "id": "908", "name": "Game Event Previous Text Button Component Previous Game Event Text button should be disabled when cannot go to previous game event." }, { - "id": "906", + "id": "909", "name": "Game Event Previous Text Button Component Previous Game Event Text button should not have tooltip when cannot go to previous game event." }, { - "id": "907", + "id": "910", "name": "Game Event Previous Text Button Component Previous Game Event Text button should have gray color when cannot go to previous game event." }, { - "id": "908", + "id": "911", "name": "Game Event Previous Text Button Component Previous Game Event Text button should be disabled when making game play status is pending." }, { - "id": "909", + "id": "912", "name": "Game Event Previous Text Button Component Previous Game Event Text button should be enabled when can go to previous game event." }, { - "id": "910", + "id": "913", "name": "Game Event Previous Text Button Component Previous Game Event Text button should have tooltip when can go to previous game event." }, { - "id": "911", + "id": "914", "name": "Game Event Previous Text Button Component Previous Game Event Text button Emits should emit click event when clicked." }, { - "id": "912", + "id": "915", "name": "Game Event Previous Text Button Component Previous Game Event Text button Keyboard should emit click event when 'ArrowLeft' key is pressed." }, { - "id": "913", + "id": "916", "name": "Game Event Previous Text Button Component Previous Game Event Text button Keyboard should not emit click event when 'ArrowLeft' key is unpressed." }, { - "id": "914", + "id": "917", "name": "Game Event Previous Text Button Component Previous Game Event Text button Keyboard should animate button when 'ArrowLeft' key is pressed." }, { - "id": "915", + "id": "918", "name": "Game Event Previous Text Button Component Previous Game Event Text button Keyboard should not animate button when 'ArrowLeft' key is unpressed." } ], @@ -231206,59 +231663,59 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGridElement/GameLobbyRolePickerGridElement.nuxt.spec.ts": { "tests": [ { - "id": "916", + "id": "919", "name": "Game Lobby Role Picker Grid Element Component should match snapshot when rendered." }, { - "id": "917", + "id": "920", "name": "Game Lobby Role Picker Grid Element Component Button should not have bright border when role is not picked." }, { - "id": "918", + "id": "921", "name": "Game Lobby Role Picker Grid Element Component Button should not have bright border when role is not defined." }, { - "id": "919", + "id": "922", "name": "Game Lobby Role Picker Grid Element Component Button should have bright border when role is picked." }, { - "id": "920", + "id": "923", "name": "Game Lobby Role Picker Grid Element Component Role Label should translate role label when role is defined." }, { - "id": "921", + "id": "924", "name": "Game Lobby Role Picker Grid Element Component Role Label should translate random role label when role is not defined." }, { - "id": "922", + "id": "925", "name": "Game Lobby Role Picker Grid Element Component Role Label should display shuffle icon when role is not defined." }, { - "id": "923", + "id": "926", "name": "Game Lobby Role Picker Grid Element Component Role Label should not display shuffle icon when role is defined." }, { - "id": "924", + "id": "927", "name": "Game Lobby Role Picker Grid Element Component Role Label should have italic gray classes when role is not defined." }, { - "id": "925", + "id": "928", "name": "Game Lobby Role Picker Grid Element Component Emits should emit pickRole event when clicked on button." }, { - "id": "926", + "id": "929", "name": "Game Lobby Role Picker Grid Element Component Emits should emit pickRole event when clicked on role name." }, { - "id": "927", + "id": "930", "name": "Game Lobby Role Picker Grid Element Component Emits should emit random role when role is not defined and no role is picked yet." }, { - "id": "928", + "id": "931", "name": "Game Lobby Role Picker Grid Element Component Emits should emit random role which can't be the same as the picked role when role is not defined but picked role is defined." }, { - "id": "929", + "id": "932", "name": "Game Lobby Role Picker Grid Element Component Emits should not emit role pick event when roles are not defined in store." } ], @@ -231267,39 +231724,39 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsDisclaimer/RecipientRoleAdditionalCardsDisclaimer.spec.ts": { "tests": [ { - "id": "930", + "id": "933", "name": "Recipient Role Additional Cards Disclaimer Component should match snapshot when rendered." }, { - "id": "931", + "id": "934", "name": "Recipient Role Additional Cards Disclaimer Component Disclaimer icon should set success icon when there are additional cards for thief." }, { - "id": "932", + "id": "935", "name": "Recipient Role Additional Cards Disclaimer Component Disclaimer icon should set text success class when there are additional cards for thief." }, { - "id": "933", + "id": "936", "name": "Recipient Role Additional Cards Disclaimer Component Disclaimer icon should set error icon when there are no additional cards for thief." }, { - "id": "934", + "id": "937", "name": "Recipient Role Additional Cards Disclaimer Component Disclaimer icon should set text-error and beat classes when there are no additional cards for thief." }, { - "id": "935", + "id": "938", "name": "Recipient Role Additional Cards Disclaimer Component Disclaimer icon should set error icon when there are no additional cards for actor, recipient is actor but there are cards for thief." }, { - "id": "936", + "id": "939", "name": "Recipient Role Additional Cards Disclaimer Component Disclaimer text should set success text when there are additional cards for thief." }, { - "id": "937", + "id": "940", "name": "Recipient Role Additional Cards Disclaimer Component Disclaimer text should set error text when there are no additional cards for thief." }, { - "id": "938", + "id": "941", "name": "Recipient Role Additional Cards Disclaimer Component Disclaimer text should set error text when there are no additional cards for actor, recipient is actor but there are cards for thief." } ], @@ -231308,55 +231765,55 @@ "tests/unit/specs/components/layouts/default/MuteButton/MuteButton.nuxt.spec.ts": { "tests": [ { - "id": "939", + "id": "942", "name": "Mute Button Component should match snapshot when rendered." }, { - "id": "940", + "id": "943", "name": "Mute Button Component should animate mute button when rendered and audio is initially muted after 10ms." }, { - "id": "941", + "id": "944", "name": "Mute Button Component should not animate mute button when rendered and audio is initially not muted." }, { - "id": "942", + "id": "945", "name": "Mute Button Component should not animate mute button when rendered before 10ms." }, { - "id": "943", + "id": "946", "name": "Mute Button Component Button should have tooltip for mute text when audio is not muted." }, { - "id": "944", + "id": "947", "name": "Mute Button Component Button should have tooltip for unmute text when audio is muted." }, { - "id": "945", + "id": "948", "name": "Mute Button Component Button should throw error when sound lottie is not found in refs." }, { - "id": "946", + "id": "949", "name": "Mute Button Component Button should set direction to reverse when audio is muted." }, { - "id": "947", + "id": "950", "name": "Mute Button Component Button should set direction to forward when audio is not muted." }, { - "id": "948", + "id": "951", "name": "Mute Button Component Button should play unmute segment when audio is muted." }, { - "id": "949", + "id": "952", "name": "Mute Button Component Button should play mute segment when audio is not muted." }, { - "id": "950", + "id": "953", "name": "Mute Button Component Button should toggle audio mute state when clicked." }, { - "id": "951", + "id": "954", "name": "Mute Button Component Button Lottie should set size when rendered." } ], @@ -231365,39 +231822,39 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMayHaveMarkedEvent/GameScandalmongerMayHaveMarkedEvent.nuxt.spec.ts": { "tests": [ { - "id": "952", + "id": "955", "name": "Game Scandalmonger May Have Marked Event Component should match snapshot when rendered." }, { - "id": "953", + "id": "956", "name": "Game Scandalmonger May Have Marked Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "954", + "id": "957", "name": "Game Scandalmonger May Have Marked Event Component Sound Effect should play raven flying sound effect when scandalmonger didn't mark anyone." }, { - "id": "955", + "id": "958", "name": "Game Scandalmonger May Have Marked Event Component Sound Effect should play raven cry sound effect when scandalmonger marked someone." }, { - "id": "956", + "id": "959", "name": "Game Scandalmonger May Have Marked Event Component Game Event Texts should pass raven didn't mark anyone texts when scandalmonger didn't mark anyone." }, { - "id": "957", + "id": "960", "name": "Game Scandalmonger May Have Marked Event Component Game Event Texts should pass raven didn't mark anyone texts when players are undefined in game event." }, { - "id": "958", + "id": "961", "name": "Game Scandalmonger May Have Marked Event Component Game Event Texts should pass raven marked someone texts when scandalmonger marked someone." }, { - "id": "959", + "id": "962", "name": "Game Scandalmonger May Have Marked Event Component Game Event Texts Event Flipping Last Play Targets Card should not pass svg icon path when scandalmonger didn't mark anyone." }, { - "id": "960", + "id": "963", "name": "Game Scandalmonger May Have Marked Event Component Game Event Texts Event Flipping Last Play Targets Card should pass svg icon path when scandalmonger marked someone." } ], @@ -231406,47 +231863,47 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabElder/GameLobbyOptionsHubRolesTabElder.nuxt.spec.ts": { "tests": [ { - "id": "961", + "id": "964", "name": "Game Lobby Options Hub Roles Tab Elder Component should match snapshot when rendered." }, { - "id": "962", + "id": "965", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder Lives against Werewolves options should translate option label when rendered." }, { - "id": "963", + "id": "966", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder Lives against Werewolves options should translate option description with option value when rendered." }, { - "id": "964", + "id": "967", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder Lives against Werewolves options should translate option float label when rendered." }, { - "id": "965", + "id": "968", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder Lives against Werewolves options should update the create game dto store when the option is changed by the input number." }, { - "id": "966", + "id": "969", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder Lives against Werewolves options should update the create game dto store when the option is changed by the slider." }, { - "id": "967", + "id": "970", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder Lives against Werewolves options should not update the create game dto store when the option is changed by the input number and the value is null." }, { - "id": "968", + "id": "971", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder takes his revenge option should translate option label when rendered." }, { - "id": "969", + "id": "972", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder takes his revenge option should translate option description when the option is activated." }, { - "id": "970", + "id": "973", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder takes his revenge option should translate option description when the option is deactivated." }, { - "id": "971", + "id": "974", "name": "Game Lobby Options Hub Roles Tab Elder Component Elder takes his revenge option should update the create game dto store when the option is toggled." } ], @@ -231455,39 +231912,39 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSide.nuxt.spec.ts": { "tests": [ { - "id": "972", + "id": "975", "name": "Game Team Side Component should match snapshot when rendered." }, { - "id": "973", + "id": "976", "name": "Game Team Side Component Team Side Image should render the werewolves image when the side is werewolves." }, { - "id": "974", + "id": "977", "name": "Game Team Side Component Team Side Image should render the villagers image when the side is villagers." }, { - "id": "975", + "id": "978", "name": "Game Team Side Component Title should render the werewolves title when the side is werewolves." }, { - "id": "976", + "id": "979", "name": "Game Team Side Component Title should render the villagers title when the side is villagers." }, { - "id": "977", + "id": "980", "name": "Game Team Side Component Alive text should render the number of alive werewolves when the side is werewolves." }, { - "id": "978", + "id": "981", "name": "Game Team Side Component Alive text should render the number of alive villagers when the side is villagers." }, { - "id": "979", + "id": "982", "name": "Game Team Side Component Game Team Side Players should render the werewolves players with alive players first when the side is werewolves." }, { - "id": "980", + "id": "983", "name": "Game Team Side Component Game Team Side Players should render the villagers players with alive players first when the side is villagers." } ], @@ -231496,43 +231953,43 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GamePlaygroundContent.nuxt.spec.ts": { "tests": [ { - "id": "981", + "id": "984", "name": "Game Playground Content Component should match snapshot when rendered." }, { - "id": "982", + "id": "985", "name": "Game Playground Content Component Game Playground Component should render game use potions playground component when current game play is use potions type." }, { - "id": "983", + "id": "986", "name": "Game Playground Content Component Game Playground Component should render game choose card playground component when current game play is choose card type." }, { - "id": "984", + "id": "987", "name": "Game Playground Content Component Game Playground Component should render game choose side playground component when current game play is choose side type." }, { - "id": "985", + "id": "988", "name": "Game Playground Content Component Game Playground Component should render game no action playground component when current game play is no action type." }, { - "id": "986", + "id": "989", "name": "Game Playground Content Component Game Playground Component should render game request another vote playground component when current game play is request another vote type." }, { - "id": "987", + "id": "990", "name": "Game Playground Content Component Game Playground Component should render game target playground component when current game play is target type." }, { - "id": "988", + "id": "991", "name": "Game Playground Content Component Game Playground Component should render game vote playground component when current game play is vote type." }, { - "id": "989", + "id": "992", "name": "Game Playground Content Component Game Playground Component should render game bury dead bodies playground component when current game play is bury dead bodies type." }, { - "id": "990", + "id": "993", "name": "Game Playground Content Component Game Playground Component should not render any game playground component when current game play type is not defined." } ], @@ -231541,35 +231998,35 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecord.nuxt.spec.ts": { "tests": [ { - "id": "991", + "id": "994", "name": "Game Over History Record Component should match snapshot when rendered." }, { - "id": "992", + "id": "995", "name": "Game Over History Record Component Game History Record Decision should not display game over history record decision when type is no-action." }, { - "id": "993", + "id": "996", "name": "Game Over History Record Component Game History Record Decision should not display game over history record decision when play is skipped." }, { - "id": "994", + "id": "997", "name": "Game Over History Record Component Game History Record Decision should display game over history record decision when type is vote and play is not skipped." }, { - "id": "995", + "id": "998", "name": "Game Over History Record Component Game History Record Decision should display game over history record decision when type is target and play is not skipped." }, { - "id": "996", + "id": "999", "name": "Game Over History Record Component Game History Record Decision should display game over history record decision when type is bury-dead-bodies and play is not skipped." }, { - "id": "997", + "id": "1000", "name": "Game Over History Record Component Game History Record Decision should display game over history record decision when type is choose-card and play is not skipped." }, { - "id": "998", + "id": "1001", "name": "Game Over History Record Component Game History Record Decision should display game over history record decision when type is choose-side and play is not skipped." } ], @@ -231578,43 +232035,43 @@ "tests/unit/specs/components/pages/about/AboutAvailableRoles/AboutAvailableRoles.nuxt.spec.ts": { "tests": [ { - "id": "999", + "id": "1002", "name": "About Available Roles Component should match snapshot when rendered." }, { - "id": "1000", + "id": "1003", "name": "About Available Roles Component Title should display role image with angel when rendered." }, { - "id": "1001", + "id": "1004", "name": "About Available Roles Component Title should translate title when rendered." }, { - "id": "1002", + "id": "1005", "name": "About Available Roles Component Available Roles Accordion Roles are not set yet should display loading roles container when roles are not set yet." }, { - "id": "1003", + "id": "1006", "name": "About Available Roles Component Available Roles Accordion Roles are not set yet should translate loading roles text when roles are not set yet." }, { - "id": "1004", + "id": "1007", "name": "About Available Roles Component Available Roles Accordion Roles are set should translate first section when roles are set." }, { - "id": "1005", + "id": "1008", "name": "About Available Roles Component Available Roles Accordion Roles are set should display 3 available roles accordion panels when 3 roles are set." }, { - "id": "1006", + "id": "1009", "name": "About Available Roles Component Available Roles Accordion Roles are set should render roles accordion panels with header aria labels when roles are set." }, { - "id": "1007", + "id": "1010", "name": "About Available Roles Component Available Roles Accordion Roles are set should render roles accordion panels with header images when roles are set." }, { - "id": "1008", + "id": "1011", "name": "About Available Roles Component Available Roles Accordion Roles are set should display werewolf role description for first accordion panel when first accordion panel is for werewolf role." } ], @@ -231623,47 +232080,47 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSidePlayer/GameTeamSidePlayer.nuxt.spec.ts": { "tests": [ { - "id": "1009", + "id": "1012", "name": "Game Team Side Player Component should match snapshot when rendered." }, { - "id": "1010", + "id": "1013", "name": "Game Team Side Player Component Game Team Side Player should glow as emerald when side is villagers." }, { - "id": "1011", + "id": "1014", "name": "Game Team Side Player Component Game Team Side Player should glow as red when side is werewolves." }, { - "id": "1012", + "id": "1015", "name": "Game Team Side Player Component Game Team Side Player should not glow when player is dead." }, { - "id": "1013", + "id": "1016", "name": "Game Team Side Player Component Game Team Side Player Player role image should display player role image on the left when side is villagers." }, { - "id": "1014", + "id": "1017", "name": "Game Team Side Player Component Game Team Side Player Player role image should display player role image on the right when side is werewolves." }, { - "id": "1015", + "id": "1018", "name": "Game Team Side Player Component Game Team Side Player Player role image should have a emerald border glow class when side is villagers." }, { - "id": "1016", + "id": "1019", "name": "Game Team Side Player Component Game Team Side Player Player role image should have a red border glow class when side is werewolves." }, { - "id": "1017", + "id": "1020", "name": "Game Team Side Player Component Game Team Side Player Player role image should not have border glow class when player is dead." }, { - "id": "1018", + "id": "1021", "name": "Game Team Side Player Component Game Team Side Player Player role image should have grayscale class when player is dead." }, { - "id": "1019", + "id": "1022", "name": "Game Team Side Player Component Game Team Side Player Player attributes should display player attributes when rendered." } ], @@ -231672,43 +232129,43 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubVotesTab/GameLobbyOptionsHubVotesTab.nuxt.spec.ts": { "tests": [ { - "id": "1020", + "id": "1023", "name": "Game Lobby Options Hub Votes Tab Component should match snapshot when rendered." }, { - "id": "1021", + "id": "1024", "name": "Game Lobby Options Hub Votes Tab Component Can Votes be Skipped option should translate option label when rendered." }, { - "id": "1022", + "id": "1025", "name": "Game Lobby Options Hub Votes Tab Component Can Votes be Skipped option should translate option description when the option is activated." }, { - "id": "1023", + "id": "1026", "name": "Game Lobby Options Hub Votes Tab Component Can Votes be Skipped option should translate option description when the option is deactivated." }, { - "id": "1024", + "id": "1027", "name": "Game Lobby Options Hub Votes Tab Component Can Votes be Skipped option should update create game dto store when the option is toggled." }, { - "id": "1025", + "id": "1028", "name": "Game Lobby Options Hub Votes Tab Component Votes duration should translate option label when rendered." }, { - "id": "1026", + "id": "1029", "name": "Game Lobby Options Hub Votes Tab Component Votes duration should translate option description with selected value when rendered." }, { - "id": "1027", + "id": "1030", "name": "Game Lobby Options Hub Votes Tab Component Votes duration should update create game dto store when the option is changed by the input number." }, { - "id": "1028", + "id": "1031", "name": "Game Lobby Options Hub Votes Tab Component Votes duration should update create game dto store when the option is changed by the slider." }, { - "id": "1029", + "id": "1032", "name": "Game Lobby Options Hub Votes Tab Component Votes duration should not update create game dto store when the option is changed by the input number and the value is null." } ], @@ -231717,39 +232174,39 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameIdiotIsSparedEvent/GameIdiotIsSparedEvent.nuxt.spec.ts": { "tests": [ { - "id": "1030", + "id": "1033", "name": "Game Idiot Is Spared Event Component should match snapshot when rendered." }, { - "id": "1031", + "id": "1034", "name": "Game Idiot Is Spared Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1032", + "id": "1035", "name": "Game Idiot Is Spared Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1033", + "id": "1036", "name": "Game Idiot Is Spared Event Component Game Event Texts should pass can't find idiot player texts when idiot player is not found." }, { - "id": "1034", + "id": "1037", "name": "Game Idiot Is Spared Event Component Flipping Player Card should not render flipping player card when idiot player is not found." }, { - "id": "1035", + "id": "1038", "name": "Game Idiot Is Spared Event Component Sound Effects should play death sound effect when rendered." }, { - "id": "1036", + "id": "1039", "name": "Game Idiot Is Spared Event Component Sound Effects should play death sound effect when game event with texts component emits event text change to first text." }, { - "id": "1037", + "id": "1040", "name": "Game Idiot Is Spared Event Component Sound Effects should play dumb huh sound effect when game event with texts component emits event text change to second text." }, { - "id": "1038", + "id": "1041", "name": "Game Idiot Is Spared Event Component Sound Effects should not play sound effect when game event with texts component emits event text change to last text." } ], @@ -231758,39 +232215,39 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWolfHound/GameLobbyOptionsHubRolesTabWolfHound.nuxt.spec.ts": { "tests": [ { - "id": "1039", + "id": "1042", "name": "Game Lobby Options Hub Roles Tab Wolf Hound Component should match snapshot when rendered." }, { - "id": "1040", + "id": "1043", "name": "Game Lobby Options Hub Roles Tab Wolf Hound Component Is Chosen Side Revealed option should translate option label when rendered." }, { - "id": "1041", + "id": "1044", "name": "Game Lobby Options Hub Roles Tab Wolf Hound Component Is Chosen Side Revealed option should translate option description when the option is activated." }, { - "id": "1042", + "id": "1045", "name": "Game Lobby Options Hub Roles Tab Wolf Hound Component Is Chosen Side Revealed option should translate option description when the option is deactivated." }, { - "id": "1043", + "id": "1046", "name": "Game Lobby Options Hub Roles Tab Wolf Hound Component Is Chosen Side Revealed option should update the create game dto store when the option is changed by the affirmative toggle button." }, { - "id": "1044", + "id": "1047", "name": "Game Lobby Options Hub Roles Tab Wolf Hound Component Is Side randomly chosen option should translate option label when rendered." }, { - "id": "1045", + "id": "1048", "name": "Game Lobby Options Hub Roles Tab Wolf Hound Component Is Side randomly chosen option should translate option description when the option is activated." }, { - "id": "1046", + "id": "1049", "name": "Game Lobby Options Hub Roles Tab Wolf Hound Component Is Side randomly chosen option should translate option description when the option is deactivated." }, { - "id": "1047", + "id": "1050", "name": "Game Lobby Options Hub Roles Tab Wolf Hound Component Is Side randomly chosen option should update the create game dto store when the option is changed by the affirmative toggle button." } ], @@ -231799,31 +232256,31 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameVillagerVillagerIntroductionEvent/GameVillagerVillagerIntroductionEvent.nuxt.spec.ts": { "tests": [ { - "id": "1048", + "id": "1051", "name": "Game Villager Villager Introduction Event Component should match snapshot when rendered." }, { - "id": "1049", + "id": "1052", "name": "Game Villager Villager Introduction Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1050", + "id": "1053", "name": "Game Villager Villager Introduction Event Component should play clearing throat and dings effect when rendered." }, { - "id": "1051", + "id": "1054", "name": "Game Villager Villager Introduction Event Component Villager Villager Event Texts should pass default texts when villager villager is in the game." }, { - "id": "1052", + "id": "1055", "name": "Game Villager Villager Introduction Event Component Villager Villager Event Texts should pass can't find villager villager texts when villager villager is not in the game." }, { - "id": "1053", + "id": "1056", "name": "Game Villager Villager Introduction Event Component Game Event Flipping Card should pass villager-villager player when villager villager is in the game." }, { - "id": "1054", + "id": "1057", "name": "Game Villager Villager Introduction Event Component Game Event Flipping Card should not render flipping card when villager villager is not in the game." } ], @@ -231832,27 +232289,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameDevotedServantStealsRolePlayground/GameDevotedServantStealsRolePlayground.nuxt.spec.ts": { "tests": [ { - "id": "1055", + "id": "1058", "name": "Game Devoted Servant Steals Role Playground Component should match snapshot when rendered." }, { - "id": "1056", + "id": "1059", "name": "Game Devoted Servant Steals Role Playground Component Devoted Servant steals role question should translate devoted servant steals role question when there are multiple players defined." }, { - "id": "1057", + "id": "1060", "name": "Game Devoted Servant Steals Role Playground Component Devoted Servant steals role question should translate devoted servant steals role question when there is only one player defined." }, { - "id": "1058", + "id": "1061", "name": "Game Devoted Servant Steals Role Playground Component Devoted Servant steals role question should translate devoted servant steals role question as singular when there is no interaction." }, { - "id": "1059", + "id": "1062", "name": "Game Devoted Servant Steals Role Playground Component Devoted Servant steals role question should translate devoted servant steals role question as singular when there is no eliminated players." }, { - "id": "1060", + "id": "1063", "name": "Game Devoted Servant Steals Role Playground Component Targets should render targets when there are multiple eligible targets for devoted servant." } ], @@ -231861,19 +232318,19 @@ "tests/unit/specs/composables/api/game/game-history-record/useGameLastHistoryRecord.spec.ts": { "tests": [ { - "id": "1061", + "id": "1064", "name": "Use Game Last History Record Composable lastTargetedPlayers 'should return empty array when called…'" }, { - "id": "1062", + "id": "1065", "name": "Use Game Last History Record Composable lastTargetedPlayers 'should return array with two players …'" }, { - "id": "1063", + "id": "1066", "name": "Use Game Last History Record Composable doesHavePlayerAttributeAlteration 'should return true when there is a pl…'" }, { - "id": "1064", + "id": "1067", "name": "Use Game Last History Record Composable doesHavePlayerAttributeAlteration 'should return false when there is no …'" } ], @@ -231882,27 +232339,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GamePiedPiperHasCharmedEvent/GamePiedPiperHasCharmedEvent.nuxt.spec.ts": { "tests": [ { - "id": "1065", + "id": "1068", "name": "Game Pied Piper Has Charmed Event Component should match snapshot when rendered." }, { - "id": "1066", + "id": "1069", "name": "Game Pied Piper Has Charmed Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1067", + "id": "1070", "name": "Game Pied Piper Has Charmed Event Component should play pan flute sound effect when rendered." }, { - "id": "1068", + "id": "1071", "name": "Game Pied Piper Has Charmed Event Component Game Event Texts should pass default event texts when rendered." }, { - "id": "1069", + "id": "1072", "name": "Game Pied Piper Has Charmed Event Component Game Event Texts should pass revealed charmed players when game options says that charmed people are revealed." }, { - "id": "1070", + "id": "1073", "name": "Game Pied Piper Has Charmed Event Component Game Event Texts should pass empty names charmed players when game options says that charmed people are revealed but there are no players in event." } ], @@ -231911,27 +232368,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameAccursedWolfFatherMayHaveInfectedEvent/GameAccursedWolfFatherMayHaveInfectedEvent.nuxt.spec.ts": { "tests": [ { - "id": "1071", + "id": "1074", "name": "Game Accursed Wolf Father May Have Infected Event Component should match snapshot when rendered." }, { - "id": "1072", + "id": "1075", "name": "Game Accursed Wolf Father May Have Infected Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1073", + "id": "1076", "name": "Game Accursed Wolf Father May Have Infected Event Component Game Event Texts should pass game accursed wolf father may have infected event texts when rendered." }, { - "id": "1074", + "id": "1077", "name": "Game Accursed Wolf Father May Have Infected Event Component Event Flipping Last Play Targets Card should not pass svg icon path when accursed wolf father didn't infect anyone." }, { - "id": "1075", + "id": "1078", "name": "Game Accursed Wolf Father May Have Infected Event Component Event Flipping Last Play Targets Card should pass svg icon path when accursed wolf father infected someone." }, { - "id": "1076", + "id": "1079", "name": "Game Accursed Wolf Father May Have Infected Event Component Sound Effect should play evil demonic laugh sound effect when rendered." } ], @@ -231940,43 +232397,43 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabGeneral/GameLobbyOptionsHubRolesTabGeneral.nuxt.spec.ts": { "tests": [ { - "id": "1077", + "id": "1080", "name": "Game Lobby Options Hub Roles Tab General Component should match snapshot when rendered." }, { - "id": "1078", + "id": "1081", "name": "Game Lobby Options Hub Roles Tab General Component Legend should translate legend when rendered." }, { - "id": "1079", + "id": "1082", "name": "Game Lobby Options Hub Roles Tab General Component Do Skip call if no target option should translate option label when rendered." }, { - "id": "1080", + "id": "1083", "name": "Game Lobby Options Hub Roles Tab General Component Do Skip call if no target option should translate option description when the option is activated." }, { - "id": "1081", + "id": "1084", "name": "Game Lobby Options Hub Roles Tab General Component Do Skip call if no target option should translate option description when the option is deactivated." }, { - "id": "1082", + "id": "1085", "name": "Game Lobby Options Hub Roles Tab General Component Do Skip call if no target option should update the create game dto store when the option is toggled." }, { - "id": "1083", + "id": "1086", "name": "Game Lobby Options Hub Roles Tab General Component Are revealed on death option should translate option label when rendered." }, { - "id": "1084", + "id": "1087", "name": "Game Lobby Options Hub Roles Tab General Component Are revealed on death option should translate option description when the option is activated." }, { - "id": "1085", + "id": "1088", "name": "Game Lobby Options Hub Roles Tab General Component Are revealed on death option should translate option description when the option is deactivated." }, { - "id": "1086", + "id": "1089", "name": "Game Lobby Options Hub Roles Tab General Component Are revealed on death option should update create game dto store when the option is toggled." } ], @@ -231985,31 +232442,31 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordDecision/GameOverHistoryRecordDecisionBuriedPlayers/GameOverHistoryRecordDecisionBuriedPlayer/GameOverHistoryRecordDecisionBuriedPlayer.nuxt.spec.ts": { "tests": [ { - "id": "1087", + "id": "1090", "name": "Game Over History Record Decision Buried Player Component should match snapshot when rendered." }, { - "id": "1088", + "id": "1091", "name": "Game Over History Record Decision Buried Player Component Player Card should render Player Card with the buried player name and role when rendered." }, { - "id": "1089", + "id": "1092", "name": "Game Over History Record Decision Buried Player Component Devoted Servant Tag should render Devoted Servant Tag when the target is the buried player." }, { - "id": "1090", + "id": "1093", "name": "Game Over History Record Decision Buried Player Component Devoted Servant Tag should not render Devoted Servant Tag when there is no targets." }, { - "id": "1091", + "id": "1094", "name": "Game Over History Record Decision Buried Player Component Devoted Servant Tag should not render Devoted Servant Tag when the target is not the buried player." }, { - "id": "1092", + "id": "1095", "name": "Game Over History Record Decision Buried Player Component Devoted Servant Tag Devoted Servant Tag Content should render the tag icon when rendered." }, { - "id": "1093", + "id": "1096", "name": "Game Over History Record Decision Buried Player Component Devoted Servant Tag Devoted Servant Tag Content should render the tag text when rendered." } ], @@ -232018,47 +232475,47 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContainer.nuxt.spec.ts": { "tests": [ { - "id": "1094", + "id": "1097", "name": "Game Lobby Start Game Confirm Dialog Container Component should match snapshot when rendered." }, { - "id": "1095", + "id": "1098", "name": "Game Lobby Start Game Confirm Dialog Container Component Header should translate header text when rendered." }, { - "id": "1096", + "id": "1099", "name": "Game Lobby Start Game Confirm Dialog Container Component Dialog Content should pass current confirm step as prop when rendered." }, { - "id": "1097", + "id": "1100", "name": "Game Lobby Start Game Confirm Dialog Container Component Dialog Content should handle confirm step event when dialog content emits the event." }, { - "id": "1098", + "id": "1101", "name": "Game Lobby Start Game Confirm Dialog Container Component Dialog Content should handle reject players position step event when dialog content emits the event." }, { - "id": "1099", + "id": "1102", "name": "Game Lobby Start Game Confirm Dialog Container Component Dialog Content should handle reject thief additional cards placed step event when dialog content emits the event." }, { - "id": "1100", + "id": "1103", "name": "Game Lobby Start Game Confirm Dialog Container Component Dialog Content should handle reject actor additional cards placed step event when dialog content emits the event." }, { - "id": "1101", + "id": "1104", "name": "Game Lobby Start Game Confirm Dialog Container Component Dialog Content should handle reject game options changed step event when dialog content emits the event." }, { - "id": "1102", + "id": "1105", "name": "Game Lobby Start Game Confirm Dialog Container Component Dialog Footer should pass current confirm step as prop when rendered." }, { - "id": "1103", + "id": "1106", "name": "Game Lobby Start Game Confirm Dialog Container Component Dialog Footer should handle confirm start game event when dialog footer emits the event." }, { - "id": "1104", + "id": "1107", "name": "Game Lobby Start Game Confirm Dialog Container Component Dialog Footer should handle reject start game event when dialog footer emits the event." } ], @@ -232067,39 +232524,39 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThief/GameLobbyOptionsHubRolesTabThief.nuxt.spec.ts": { "tests": [ { - "id": "1105", + "id": "1108", "name": "Game Lobby Options Hub Roles Tab Thief Component should match snapshot when rendered." }, { - "id": "1106", + "id": "1109", "name": "Game Lobby Options Hub Roles Tab Thief Component Must choose between Werewolves option should translate option label when rendered." }, { - "id": "1107", + "id": "1110", "name": "Game Lobby Options Hub Roles Tab Thief Component Must choose between Werewolves option should translate option description when the option is activated." }, { - "id": "1108", + "id": "1111", "name": "Game Lobby Options Hub Roles Tab Thief Component Must choose between Werewolves option should translate option description when the option is deactivated." }, { - "id": "1109", + "id": "1112", "name": "Game Lobby Options Hub Roles Tab Thief Component Must choose between Werewolves option should update the create game dto store when the option is toggled." }, { - "id": "1110", + "id": "1113", "name": "Game Lobby Options Hub Roles Tab Thief Component Is Chosen Card revealed should translate option label when rendered." }, { - "id": "1111", + "id": "1114", "name": "Game Lobby Options Hub Roles Tab Thief Component Is Chosen Card revealed should translate option description when the option is activated." }, { - "id": "1112", + "id": "1115", "name": "Game Lobby Options Hub Roles Tab Thief Component Is Chosen Card revealed should translate option description when the option is deactivated." }, { - "id": "1113", + "id": "1116", "name": "Game Lobby Options Hub Roles Tab Thief Component Is Chosen Card revealed should update the create game dto store when the option is toggled." } ], @@ -232108,51 +232565,51 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyPositionCoordinator/GameLobbyPositionCoordinator.nuxt.spec.ts": { "tests": [ { - "id": "1114", + "id": "1117", "name": "Game Lobby Position Coordinator Component should match snapshot when rendered." }, { - "id": "1115", + "id": "1118", "name": "Game Lobby Position Coordinator Component Dialog not open should set dialog to invisible when rendered." }, { - "id": "1116", + "id": "1119", "name": "Game Lobby Position Coordinator Component Dialog not open Dialog Header Title Only should not render dialog header title only when dialog is not open." }, { - "id": "1117", + "id": "1120", "name": "Game Lobby Position Coordinator Component Dialog not open Coordinator Content should not render coordinator chat when dialog is not open." }, { - "id": "1118", + "id": "1121", "name": "Game Lobby Position Coordinator Component Dialog not open Coordinator Content should not render coordinator sorter when dialog is not open." }, { - "id": "1119", + "id": "1122", "name": "Game Lobby Position Coordinator Component Dialog not open Dialog Footer Close Button Only should not render dialog footer close button only when dialog is not open." }, { - "id": "1120", + "id": "1123", "name": "Game Lobby Position Coordinator Component Dialog open should set dialog to visible when opened." }, { - "id": "1121", + "id": "1124", "name": "Game Lobby Position Coordinator Component Dialog open Dialog Header Title Only should render dialog header title only when dialog is open." }, { - "id": "1122", + "id": "1125", "name": "Game Lobby Position Coordinator Component Dialog open Coordinator Content should render coordinator chat when dialog is open." }, { - "id": "1123", + "id": "1126", "name": "Game Lobby Position Coordinator Component Dialog open Coordinator Content should render coordinator sorter when dialog is open." }, { - "id": "1124", + "id": "1127", "name": "Game Lobby Position Coordinator Component Dialog open Dialog Footer Close Button Only should render dialog footer close button only when dialog is open." }, { - "id": "1125", + "id": "1128", "name": "Game Lobby Position Coordinator Component Dialog open Dialog Footer Close Button Only should close dialog when footer emits event." } ], @@ -232161,35 +232618,35 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayingBeforeLeaveConfirmDialog/GamePlayingBeforeLeaveConfirmDialog.nuxt.spec.ts": { "tests": [ { - "id": "1126", + "id": "1129", "name": "Game Playing Before Leave Confirm Dialog Component should match snapshot when rendered." }, { - "id": "1127", + "id": "1130", "name": "Game Playing Before Leave Confirm Dialog Component On Before Route Leaving should return false when confirm to leave is false." }, { - "id": "1128", + "id": "1131", "name": "Game Playing Before Leave Confirm Dialog Component On Before Route Leaving should return true when confirm to leave is true." }, { - "id": "1129", + "id": "1132", "name": "Game Playing Before Leave Confirm Dialog Component On Before Route Leaving should not set desired destination full path when confirm to leave is true." }, { - "id": "1130", + "id": "1133", "name": "Game Playing Before Leave Confirm Dialog Component On Before Route Leaving should set desired destination full path to guard full path when confirm to leave is false." }, { - "id": "1131", + "id": "1134", "name": "Game Playing Before Leave Confirm Dialog Component Confirm should set confirm parameters to confirm composable when open." }, { - "id": "1132", + "id": "1135", "name": "Game Playing Before Leave Confirm Dialog Component Confirm On Leaving should set confirm to leave to true when accept leaving." }, { - "id": "1133", + "id": "1136", "name": "Game Playing Before Leave Confirm Dialog Component Confirm On Leaving should push to desired destination full path when accept leaving." } ], @@ -232198,27 +232655,27 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordDecision/GameOverHistoryRecordDecisionNominatedPlayers/GameOverHistoryRecordDecisionNominatedPlayers.nuxt.spec.ts": { "tests": [ { - "id": "1134", + "id": "1137", "name": "Game Over History Record Decision Nominated Players Component should match snapshot when rendered." }, { - "id": "1135", + "id": "1138", "name": "Game Over History Record Decision Nominated Players Component Nominated Players should render the truncated nominated players when there are more than 3 nominated players." }, { - "id": "1136", + "id": "1139", "name": "Game Over History Record Decision Nominated Players Component Nominated Players should render the full nominated players when there are less than 3 nominated players." }, { - "id": "1137", + "id": "1140", "name": "Game Over History Record Decision Nominated Players Component Nominated Players should not render the nominated players when there are no voting results." }, { - "id": "1138", + "id": "1141", "name": "Game Over History Record Decision Nominated Players Component Nominated Players should not render the nominated players when there are no nominated players." }, { - "id": "1139", + "id": "1142", "name": "Game Over History Record Decision Nominated Players Component Overflow Tag should render Overflow Tag when rendered." } ], @@ -232227,43 +232684,43 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogThiefAdditionalCardsPlaced/GameLobbyStartGameConfirmDialogThiefAdditionalCardsPlaced.nuxt.spec.ts": { "tests": [ { - "id": "1140", + "id": "1143", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component should match snapshot when rendered." }, { - "id": "1141", + "id": "1144", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component should match snapshot when rendered without shallow rendering." }, { - "id": "1142", + "id": "1145", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component Thief Icon should set size to thief icon when rendered." }, { - "id": "1143", + "id": "1146", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component Thief Icon should set src to thief icon when rendered." }, { - "id": "1144", + "id": "1147", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component Thief Additional Cards should render thief additional cards when rendered." }, { - "id": "1145", + "id": "1148", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component Confirm Dialog Text should translate confirm dialog text when rendered." }, { - "id": "1146", + "id": "1149", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component Step Actions should translate reject step button label when rendered." }, { - "id": "1147", + "id": "1150", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component Step Actions should emit reject step event when reject step button clicked." }, { - "id": "1148", + "id": "1151", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component Step Actions should translate confirm step button label when rendered." }, { - "id": "1149", + "id": "1152", "name": "Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component Step Actions should emit confirm step event when confirm step button clicked." } ], @@ -232272,43 +232729,43 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogActorAdditionalCardsPlaced/GameLobbyStartGameConfirmDialogActorAdditionalCardsPlaced.nuxt.spec.ts": { "tests": [ { - "id": "1150", + "id": "1153", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component should match snapshot when rendered." }, { - "id": "1151", + "id": "1154", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component should match snapshot when rendered without shallow rendering." }, { - "id": "1152", + "id": "1155", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component Actor Icon should set size to actor icon when rendered." }, { - "id": "1153", + "id": "1156", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component Actor Icon should set src to actor icon when rendered." }, { - "id": "1154", + "id": "1157", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component Actor Additional Cards should render actor additional cards when rendered." }, { - "id": "1155", + "id": "1158", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component Confirm Dialog Text should translate confirm dialog text when rendered." }, { - "id": "1156", + "id": "1159", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component Step Actions should translate reject step button label when rendered." }, { - "id": "1157", + "id": "1160", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component Step Actions should emit reject step event when reject step button clicked." }, { - "id": "1158", + "id": "1161", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component Step Actions should translate confirm step button label when rendered." }, { - "id": "1159", + "id": "1162", "name": "Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component Step Actions should emit confirm step event when confirm step button clicked." } ], @@ -232317,39 +232774,39 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabCupid/GameLobbyOptionsHubRolesTabCupid.nuxt.spec.ts": { "tests": [ { - "id": "1160", + "id": "1163", "name": "Game Lobby Options Hub Roles Tab Cupid Component should match snapshot when rendered." }, { - "id": "1161", + "id": "1164", "name": "Game Lobby Options Hub Roles Tab Cupid Component Cupid must win with Lovers option should translate option label when rendered." }, { - "id": "1162", + "id": "1165", "name": "Game Lobby Options Hub Roles Tab Cupid Component Cupid must win with Lovers option should translate option description when the option is activated." }, { - "id": "1163", + "id": "1166", "name": "Game Lobby Options Hub Roles Tab Cupid Component Cupid must win with Lovers option should translate option description when the option is deactivated." }, { - "id": "1164", + "id": "1167", "name": "Game Lobby Options Hub Roles Tab Cupid Component Cupid must win with Lovers option should update the create game dto store when the option is toggled." }, { - "id": "1165", + "id": "1168", "name": "Game Lobby Options Hub Roles Tab Cupid Component Do Lovers reveal role to each other option should translate option label when rendered." }, { - "id": "1166", + "id": "1169", "name": "Game Lobby Options Hub Roles Tab Cupid Component Do Lovers reveal role to each other option should translate option description when the option is activated." }, { - "id": "1167", + "id": "1170", "name": "Game Lobby Options Hub Roles Tab Cupid Component Do Lovers reveal role to each other option should translate option description when the option is deactivated." }, { - "id": "1168", + "id": "1171", "name": "Game Lobby Options Hub Roles Tab Cupid Component Do Lovers reveal role to each other option should update the create game dto store when the option is toggled." } ], @@ -232358,39 +232815,39 @@ "tests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventTextsManager.nuxt.spec.ts": { "tests": [ { - "id": "1169", + "id": "1172", "name": "Game Event Texts Manager Component should match snapshot when rendered." }, { - "id": "1170", + "id": "1173", "name": "Game Event Texts Manager Component Game Event Previous Text Button should decrement current text index when clicked." }, { - "id": "1171", + "id": "1174", "name": "Game Event Texts Manager Component Game Event Previous Text Button should not decrement current text index when clicked and current text index is 0." }, { - "id": "1172", + "id": "1175", "name": "Game Event Texts Manager Component Current Event Text should display first game event text when rendered." }, { - "id": "1173", + "id": "1176", "name": "Game Event Texts Manager Component Game Event Next Text Button should increment current text index when clicked." }, { - "id": "1174", + "id": "1177", "name": "Game Event Texts Manager Component Game Event Next Text Button should not increment current text index when can't go to next game text." }, { - "id": "1175", + "id": "1178", "name": "Game Event Texts Manager Component Game Event Next Text Button should go to next game text when it was the last game text." }, { - "id": "1176", + "id": "1179", "name": "Game Event Texts Manager Component Game Event Next Text Button should not increment current text index when clicked and current text index is the last text index." }, { - "id": "1177", + "id": "1180", "name": "Game Event Texts Manager Component Game Event Next Text Button should emit game event text change event when clicked." } ], @@ -232399,23 +232856,23 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordDecision/GameOverHistoryRecordDecisionTargets/GameOverHistoryRecordDecisionTargets.nuxt.spec.ts": { "tests": [ { - "id": "1178", + "id": "1181", "name": "Game Over History Record Decision Targets Component should match snapshot when rendered." }, { - "id": "1179", + "id": "1182", "name": "Game Over History Record Decision Targets Component Targets should render the truncated targets when there are more than 3 targets." }, { - "id": "1180", + "id": "1183", "name": "Game Over History Record Decision Targets Component Targets should render the full targets when there are less than 3 targets." }, { - "id": "1181", + "id": "1184", "name": "Game Over History Record Decision Targets Component Targets should not render the targets when there are no targets." }, { - "id": "1182", + "id": "1185", "name": "Game Over History Record Decision Targets Component Overflow Tag should display the overflow tag when rendered." } ], @@ -232424,55 +232881,55 @@ "tests/unit/specs/components/shared/role/RoleImage/RoleFlippingImage/RoleFlippingImage.nuxt.spec.ts": { "tests": [ { - "id": "1183", + "id": "1186", "name": "Role Flipping Image Component should match snapshot when rendered." }, { - "id": "1184", + "id": "1187", "name": "Role Flipping Image Component Flip Container should set flipped to false when rendered." }, { - "id": "1185", + "id": "1188", "name": "Role Flipping Image Component Flip Container should set height and width from props when rendered." }, { - "id": "1186", + "id": "1189", "name": "Role Flipping Image Component Flip Container Front Role Image should set front image role from props when rendered." }, { - "id": "1187", + "id": "1190", "name": "Role Flipping Image Component Flip Container Front Role Image should set back flip to false when the role is updated twice in props." }, { - "id": "1188", + "id": "1191", "name": "Role Flipping Image Component Flip Container Front Role Image should set front image role as the new role when the role is updated twice in props." }, { - "id": "1189", + "id": "1192", "name": "Role Flipping Image Component Flip Container Front Role Image should not render svg icon when icon path is not defined in props." }, { - "id": "1190", + "id": "1193", "name": "Role Flipping Image Component Flip Container Front Role Image should render svg icon when icon path is defined in props." }, { - "id": "1191", + "id": "1194", "name": "Role Flipping Image Component Flip Container Back Role Image should set back image role as undefined when rendered." }, { - "id": "1192", + "id": "1195", "name": "Role Flipping Image Component Flip Container Back Role Image should flip the card when the role is updated in props." }, { - "id": "1193", + "id": "1196", "name": "Role Flipping Image Component Flip Container Back Role Image should set back image role as the new role when the role is updated in props." }, { - "id": "1194", + "id": "1197", "name": "Role Flipping Image Component Flip Container Back Role Image should not render svg icon when icon path is not defined in props." }, { - "id": "1195", + "id": "1198", "name": "Role Flipping Image Component Flip Container Back Role Image should render svg icon when icon path is defined in props." } ], @@ -232481,39 +232938,39 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabSeer/GameLobbyOptionsHubRolesTabSeer.nuxt.spec.ts": { "tests": [ { - "id": "1196", + "id": "1199", "name": "Game Lobby Options Hub Roles Tab Seer Component should match snapshot when rendered." }, { - "id": "1197", + "id": "1200", "name": "Game Lobby Options Hub Roles Tab Seer Component Is talkative option should translate option label when rendered." }, { - "id": "1198", + "id": "1201", "name": "Game Lobby Options Hub Roles Tab Seer Component Is talkative option should translate option description when the option is activated." }, { - "id": "1199", + "id": "1202", "name": "Game Lobby Options Hub Roles Tab Seer Component Is talkative option should translate option description when the option is deactivated." }, { - "id": "1200", + "id": "1203", "name": "Game Lobby Options Hub Roles Tab Seer Component Is talkative option should update the create game dto store when the option is toggled." }, { - "id": "1201", + "id": "1204", "name": "Game Lobby Options Hub Roles Tab Seer Component Can see Roles option should translate option label when rendered." }, { - "id": "1202", + "id": "1205", "name": "Game Lobby Options Hub Roles Tab Seer Component Can see Roles option should translate option description when the option is activated." }, { - "id": "1203", + "id": "1206", "name": "Game Lobby Options Hub Roles Tab Seer Component Can see Roles option should translate option description when the option is deactivated." }, { - "id": "1204", + "id": "1207", "name": "Game Lobby Options Hub Roles Tab Seer Component Can see Roles option should update the create game dto store when the option is toggled." } ], @@ -232522,39 +232979,39 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordDecision/GameOverHistoryRecordDecisionTargets/GameOverHistoryRecordDecisionTarget/GameOverHistoryRecordDecisionTarget.nuxt.spec.ts": { "tests": [ { - "id": "1205", + "id": "1208", "name": "Game Over History Record Decision Target Component should match snapshot when rendered." }, { - "id": "1206", + "id": "1209", "name": "Game Over History Record Decision Target Component Player Card should render Player Card with the target player name when rendered." }, { - "id": "1207", + "id": "1210", "name": "Game Over History Record Decision Target Component Drank potion tag should not render drank potion tag when the target did not drink a potion." }, { - "id": "1208", + "id": "1211", "name": "Game Over History Record Decision Target Component Drank potion tag Target drank life potion should set severity to success when the target drank a life potion." }, { - "id": "1209", + "id": "1212", "name": "Game Over History Record Decision Target Component Drank potion tag Target drank life potion should render drank life potion tag icon when the target drank a life potion." }, { - "id": "1210", + "id": "1213", "name": "Game Over History Record Decision Target Component Drank potion tag Target drank life potion should render drank life potion tag text when the target drank a life potion." }, { - "id": "1211", + "id": "1214", "name": "Game Over History Record Decision Target Component Drank potion tag Target drank death potion should set severity to danger when the target drank a death potion." }, { - "id": "1212", + "id": "1215", "name": "Game Over History Record Decision Target Component Drank potion tag Target drank death potion should render drank death potion tag icon when the target drank a death potion." }, { - "id": "1213", + "id": "1216", "name": "Game Over History Record Decision Target Component Drank potion tag Target drank death potion should render drank death potion tag text when the target drank a death potion." } ], @@ -232563,27 +233020,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameWildChildHasTransformedEvent/GameWildChildHasTransformedEvent.nuxt.spec.ts": { "tests": [ { - "id": "1214", + "id": "1217", "name": "Game Wild Child Has Transformed Event Component should match snapshot when rendered." }, { - "id": "1215", + "id": "1218", "name": "Game Wild Child Has Transformed Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1216", + "id": "1219", "name": "Game Wild Child Has Transformed Event Component Sound Effects should not play sound effects when transformation is not revealed." }, { - "id": "1217", + "id": "1220", "name": "Game Wild Child Has Transformed Event Component Sound Effects should play sound effects when transformation is revealed in game options." }, { - "id": "1218", + "id": "1221", "name": "Game Wild Child Has Transformed Event Component Game Event Texts should pass game wild child has quietly transformed event texts when transformation is not revealed." }, { - "id": "1219", + "id": "1222", "name": "Game Wild Child Has Transformed Event Component Game Event Texts should pass game wild child has transformed event texts when transformation is revealed." } ], @@ -232592,43 +233049,43 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManager.nuxt.spec.ts": { "tests": [ { - "id": "1220", + "id": "1223", "name": "Game Lobby Additional Cards Manager Component should match snapshot when rendered." }, { - "id": "1221", + "id": "1224", "name": "Game Lobby Additional Cards Manager Component Dialog not open should set dialog to invisible when rendered." }, { - "id": "1222", + "id": "1225", "name": "Game Lobby Additional Cards Manager Component Dialog not open Dialog Header Title Only should not render dialog header title only when dialog is not open." }, { - "id": "1223", + "id": "1226", "name": "Game Lobby Additional Cards Manager Component Dialog not open Additional Cards Manager Content should not render additional cards manager content when dialog is not open." }, { - "id": "1224", + "id": "1227", "name": "Game Lobby Additional Cards Manager Component Dialog not open Dialog Footer Close Button Only should not render dialog footer close button only when dialog is not open." }, { - "id": "1225", + "id": "1228", "name": "Game Lobby Additional Cards Manager Component Dialog open should set dialog to visible when rendered." }, { - "id": "1226", + "id": "1229", "name": "Game Lobby Additional Cards Manager Component Dialog open Dialog Header Title Only should render dialog header title only when dialog is open." }, { - "id": "1227", + "id": "1230", "name": "Game Lobby Additional Cards Manager Component Dialog open Additional Cards Manager Content should render additional cards manager content when dialog is open." }, { - "id": "1228", + "id": "1231", "name": "Game Lobby Additional Cards Manager Component Dialog open Dialog Footer Close Button Only should render dialog footer close button only when dialog is open." }, { - "id": "1229", + "id": "1232", "name": "Game Lobby Additional Cards Manager Component Dialog open Dialog Footer Close Button Only should close dialog when footer emits event." } ], @@ -232637,27 +233094,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameActorMayHaveChosenCardEvent/GameActorMayHaveChosenCardEvent.nuxt.spec.ts": { "tests": [ { - "id": "1230", + "id": "1233", "name": "Game Actor May Have Chosen Card Event Component should match snapshot when rendered." }, { - "id": "1231", + "id": "1234", "name": "Game Actor May Have Chosen Card Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1232", + "id": "1235", "name": "Game Actor May Have Chosen Card Event Component Sound Effect should play actor clear throat and knocks sound effect when rendered." }, { - "id": "1233", + "id": "1236", "name": "Game Actor May Have Chosen Card Event Component Game Event Texts should set default event texts when rendered." }, { - "id": "1234", + "id": "1237", "name": "Game Actor May Have Chosen Card Event Component Flipping Card should set svg icon path to undefined when chosen card is undefined." }, { - "id": "1235", + "id": "1238", "name": "Game Actor May Have Chosen Card Event Component Flipping Card should set svg icon path to actor svg role when chosen card is defined." } ], @@ -232666,31 +233123,31 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlaygroundTargets/GameTargetPlaygroundTargets.nuxt.spec.ts": { "tests": [ { - "id": "1236", + "id": "1239", "name": "Game Target Playground Targets Component should match snapshot when rendered." }, { - "id": "1237", + "id": "1240", "name": "Game Target Playground Targets Component No targets should render no targets message when current play is not defined." }, { - "id": "1238", + "id": "1241", "name": "Game Target Playground Targets Component No targets should render no targets message when current play is defined but there are no eligible targets." }, { - "id": "1239", + "id": "1242", "name": "Game Target Playground Targets Component No targets should render no targets message when current play is defined but interactions are undefined." }, { - "id": "1240", + "id": "1243", "name": "Game Target Playground Targets Component No targets should render no targets message when current play is defined but interactions are empty." }, { - "id": "1241", + "id": "1244", "name": "Game Target Playground Targets Component No targets should render translated no targets message when current play is not defined." }, { - "id": "1242", + "id": "1245", "name": "Game Target Playground Targets Component Targets should render targets when current play is defined and there are eligible targets in first interaction." } ], @@ -232699,35 +233156,35 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameBearGrowlsOrSleepsEvent/GameBearGrowlsOrSleepsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1243", + "id": "1246", "name": "Game Bear Growl Or Sleeps Event Component should match snapshot when rendered." }, { - "id": "1244", + "id": "1247", "name": "Game Bear Growl Or Sleeps Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1245", + "id": "1248", "name": "Game Bear Growl Or Sleeps Event Component Sound effect should play bear growling sound effect when bear growls." }, { - "id": "1246", + "id": "1249", "name": "Game Bear Growl Or Sleeps Event Component Sound effect should play calm bear eating sound effect when bear sleeps." }, { - "id": "1247", + "id": "1250", "name": "Game Bear Growl Or Sleeps Event Component Game Event Texts should pass bear tamer growls text when bear growls." }, { - "id": "1248", + "id": "1251", "name": "Game Bear Growl Or Sleeps Event Component Game Event Texts should pass bear tamer sleeps text when bear sleeps." }, { - "id": "1249", + "id": "1252", "name": "Game Bear Growl Or Sleeps Event Component Game Event Texts Event Flipping Players Card should pass angry bear svg for svg icon path when bear growls." }, { - "id": "1250", + "id": "1253", "name": "Game Bear Growl Or Sleeps Event Component Game Event Texts Event Flipping Players Card should pass sleeping bear svg for svg icon path when bear sleeps." } ], @@ -232736,27 +233193,27 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.nuxt.spec.ts": { "tests": [ { - "id": "1251", + "id": "1254", "name": "Changed Game Options List Component should match snapshot when rendered." }, { - "id": "1252", + "id": "1255", "name": "Changed Game Options List Component Changed Game Options List should render 2 list items when there are 2 changed game options." }, { - "id": "1253", + "id": "1256", "name": "Changed Game Options List Component Changed Game Options List Reset Button should have an alt text for each button of list items when rendered." }, { - "id": "1254", + "id": "1257", "name": "Changed Game Options List Component Changed Game Options List Reset Button should not reset the game option when game option text is not recognized." }, { - "id": "1255", + "id": "1258", "name": "Changed Game Options List Component Changed Game Options List Reset Button should reset the game option when clicked on the reset button." }, { - "id": "1256", + "id": "1259", "name": "Changed Game Options List Component Changed Game Options List Reset Button should reset both turn and phase name options for sheriff election when clicked on the reset button for the sheriff election time." } ], @@ -232765,43 +233222,43 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHub.nuxt.spec.ts": { "tests": [ { - "id": "1257", + "id": "1260", "name": "Game Lobby Options Hub Component should match snapshot when rendered." }, { - "id": "1258", + "id": "1261", "name": "Game Lobby Options Hub Component Dialog not open should set dialog to invisible when rendered." }, { - "id": "1259", + "id": "1262", "name": "Game Lobby Options Hub Component Dialog not open Game Lobby Options Hub Header should not render game lobby options hub header when dialog is not open." }, { - "id": "1260", + "id": "1263", "name": "Game Lobby Options Hub Component Dialog not open Game Lobby Options Hub Content should not render game lobby options hub content when dialog is not open." }, { - "id": "1261", + "id": "1264", "name": "Game Lobby Options Hub Component Dialog not open Game Lobby Options Hub Footer should not render game lobby options hub footer when dialog is not open." }, { - "id": "1262", + "id": "1265", "name": "Game Lobby Options Hub Component Dialog open should set dialog to visible when opened." }, { - "id": "1263", + "id": "1266", "name": "Game Lobby Options Hub Component Dialog open Game Lobby Options Hub Header should render game lobby options hub header when opened." }, { - "id": "1264", + "id": "1267", "name": "Game Lobby Options Hub Component Dialog open Game Lobby Options Hub Content should render game lobby options hub content when opened." }, { - "id": "1265", + "id": "1268", "name": "Game Lobby Options Hub Component Dialog open Game Lobby Options Hub Footer should render game lobby options hub footer when opened." }, { - "id": "1266", + "id": "1269", "name": "Game Lobby Options Hub Component Dialog open Game Lobby Options Hub Footer should close options hub when option hub footer emits event." } ], @@ -232810,23 +233267,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseCardPlayground/GameChooseCardPlayground.nuxt.spec.ts": { "tests": [ { - "id": "1267", + "id": "1270", "name": "Game Choose Card Playground Component should match snapshot when rendered." }, { - "id": "1268", + "id": "1271", "name": "Game Choose Card Playground Component should match snapshot without shallow rendering when render." }, { - "id": "1269", + "id": "1272", "name": "Game Choose Card Playground Component Recipient Game Additional Cards should display the game additional cards for the recipient when rendered." }, { - "id": "1270", + "id": "1273", "name": "Game Choose Card Playground Component Recipient Game Additional Cards should unset card when the card is clicked on already chosen in make game play dto." }, { - "id": "1271", + "id": "1274", "name": "Game Choose Card Playground Component Recipient Game Additional Cards should set card when the card is clicked on not already chosen in make game play dto." } ], @@ -232835,31 +233292,31 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWerewolvesTurnStartsEvent/GameWerewolvesTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1272", + "id": "1275", "name": "Game Werewolves Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1273", + "id": "1276", "name": "Game Werewolves Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1274", + "id": "1277", "name": "Game Werewolves Turn Starts Event Component should play werewolf howling sound effect when rendered." }, { - "id": "1275", + "id": "1278", "name": "Game Werewolves Turn Starts Event Component Game Event Texts should pass event texts when it's the first night." }, { - "id": "1276", + "id": "1279", "name": "Game Werewolves Turn Starts Event Component Game Event Texts should pass event texts when it's first night and werewolves can eat each other." }, { - "id": "1277", + "id": "1280", "name": "Game Werewolves Turn Starts Event Component Game Event Texts should pass event texts when it's not the first night." }, { - "id": "1278", + "id": "1281", "name": "Game Werewolves Turn Starts Event Component Game Event Texts should pass event texts when it's not the first night and werewolves can eat each other." } ], @@ -232868,23 +233325,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/RecipientRoleAdditionalCardsManager/RecipientRoleAdditionalCardsManager.spec.ts": { "tests": [ { - "id": "1279", + "id": "1282", "name": "Recipient Role Additional Cards Manager Component should match snapshot when rendered." }, { - "id": "1280", + "id": "1283", "name": "Recipient Role Additional Cards Manager Component should match snapshot when rendered without shallow." }, { - "id": "1281", + "id": "1284", "name": "Recipient Role Additional Cards Manager Component Recipient Additional Cards Placement Text should translate recipient additional cards faced down placement text when there are 2 additional cards for thief." }, { - "id": "1282", + "id": "1285", "name": "Recipient Role Additional Cards Manager Component Recipient Additional Cards Placement Text should translate recipient additional cards faced up placement text when there is 1 additional card for actor." }, { - "id": "1283", + "id": "1286", "name": "Recipient Role Additional Cards Manager Component Recipient Additional Cards Placement Text should not render recipient additional cards placement text when there are no additional cards for thief." } ], @@ -232893,51 +233350,51 @@ "tests/unit/specs/components/shared/game/player/PlayerCard/PlayerCard.nuxt.spec.ts": { "tests": [ { - "id": "1284", + "id": "1287", "name": "Player Card Component should match snapshot when rendered." }, { - "id": "1285", + "id": "1288", "name": "Player Card Component Selector Button should render selector button without aria label when not provided in props." }, { - "id": "1286", + "id": "1289", "name": "Player Card Component Selector Button should emit playerCardSelectorClick event when clicked." }, { - "id": "1287", + "id": "1290", "name": "Player Card Component Selector Button should have tooltip with aria label as value when doesShowSelectorTooltip prop is true." }, { - "id": "1288", + "id": "1291", "name": "Player Card Component Selector Button should not have tooltip when doesShowSelectorTooltip prop is false." }, { - "id": "1289", + "id": "1292", "name": "Player Card Component Selector Button should have border gray 100 class when selected." }, { - "id": "1290", + "id": "1293", "name": "Player Card Component Selector Button should not have border gray 100 class when not selected." }, { - "id": "1291", + "id": "1294", "name": "Player Card Component Selector Button should not have hover border gray 400 class when disabled." }, { - "id": "1292", + "id": "1295", "name": "Player Card Component Selector Button should have hover border gray 400 class when not disabled." }, { - "id": "1293", + "id": "1296", "name": "Player Card Component Selector Button should be disabled when isDisabled prop is true." }, { - "id": "1294", + "id": "1297", "name": "Player Card Component Selector Button should not be disabled when isDisabled prop is false." }, { - "id": "1295", + "id": "1298", "name": "Player Card Component Selector Button Flipping Role Image should render role image of player with correct alt when rendered." } ], @@ -232946,39 +233403,39 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/GameLobbyStartGameConfirmDialogGameOptionsChanged.nuxt.spec.ts": { "tests": [ { - "id": "1296", + "id": "1299", "name": "Game Lobby Start Game Confirm Dialog Game Options Changed Component should match snapshot when rendered." }, { - "id": "1297", + "id": "1300", "name": "Game Lobby Start Game Confirm Dialog Game Options Changed Component should match snapshot when rendered without shallow rendering." }, { - "id": "1298", + "id": "1301", "name": "Game Lobby Start Game Confirm Dialog Game Options Changed Component Step Svg should set size to step svg when rendered." }, { - "id": "1299", + "id": "1302", "name": "Game Lobby Start Game Confirm Dialog Game Options Changed Component Step Svg should set src to step svg when rendered." }, { - "id": "1300", + "id": "1303", "name": "Game Lobby Start Game Confirm Dialog Game Options Changed Component Text should translate step text when rendered." }, { - "id": "1301", + "id": "1304", "name": "Game Lobby Start Game Confirm Dialog Game Options Changed Component Step Actions should translate confirm step button label when rendered." }, { - "id": "1302", + "id": "1305", "name": "Game Lobby Start Game Confirm Dialog Game Options Changed Component Step Actions should emit confirm step event when confirm step button clicked." }, { - "id": "1303", + "id": "1306", "name": "Game Lobby Start Game Confirm Dialog Game Options Changed Component Step Actions should translate reject step button label when rendered." }, { - "id": "1304", + "id": "1307", "name": "Game Lobby Start Game Confirm Dialog Game Options Changed Component Step Actions should emit reject step event when reject step button clicked." } ], @@ -232987,31 +233444,31 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabThreeBrothers/GameLobbyOptionsHubRolesTabThreeBrothers.nuxt.spec.ts": { "tests": [ { - "id": "1305", + "id": "1308", "name": "Game Lobby Options Hub Roles Tab Three Brothers Component should match snapshot when rendered." }, { - "id": "1306", + "id": "1309", "name": "Game Lobby Options Hub Roles Tab Three Brothers Component Waking up Interval option should translate option label when rendered." }, { - "id": "1307", + "id": "1310", "name": "Game Lobby Options Hub Roles Tab Three Brothers Component Waking up Interval option should translate option description with selected value when rendered." }, { - "id": "1308", + "id": "1311", "name": "Game Lobby Options Hub Roles Tab Three Brothers Component Waking up Interval option should translate option float label when rendered." }, { - "id": "1309", + "id": "1312", "name": "Game Lobby Options Hub Roles Tab Three Brothers Component Waking up Interval option should update the create game dto store when the option is changed by the input number." }, { - "id": "1310", + "id": "1313", "name": "Game Lobby Options Hub Roles Tab Three Brothers Component Waking up Interval option should update the create game dto store when the option is changed by the slider." }, { - "id": "1311", + "id": "1314", "name": "Game Lobby Options Hub Roles Tab Three Brothers Component Waking up Interval option should not update the create game dto store when the option is changed by the input number and the value is null." } ], @@ -233020,31 +233477,31 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWhiteWerewolf/GameLobbyOptionsHubRolesTabWhiteWerewolf.nuxt.spec.ts": { "tests": [ { - "id": "1312", + "id": "1315", "name": "Game Lobby Options Hub Roles Tab White Werewolf Component should match snapshot when rendered." }, { - "id": "1313", + "id": "1316", "name": "Game Lobby Options Hub Roles Tab White Werewolf Component Waking up Interval option should translate option label when rendered." }, { - "id": "1314", + "id": "1317", "name": "Game Lobby Options Hub Roles Tab White Werewolf Component Waking up Interval option should translate option description with selected value when rendered." }, { - "id": "1315", + "id": "1318", "name": "Game Lobby Options Hub Roles Tab White Werewolf Component Waking up Interval option should translate option float label when rendered." }, { - "id": "1316", + "id": "1319", "name": "Game Lobby Options Hub Roles Tab White Werewolf Component Waking up Interval option should update the create game dto store when the option is changed by the input number." }, { - "id": "1317", + "id": "1320", "name": "Game Lobby Options Hub Roles Tab White Werewolf Component Waking up Interval option should update the create game dto store when the option is changed by the slider." }, { - "id": "1318", + "id": "1321", "name": "Game Lobby Options Hub Roles Tab White Werewolf Component Waking up Interval option should not update the create game dto store when the option is changed by the input number and the value is null." } ], @@ -233053,27 +233510,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThiefTurnStartsEvent/GameThiefTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1319", + "id": "1322", "name": "Game Thief Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1320", + "id": "1323", "name": "Game Thief Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1321", + "id": "1324", "name": "Game Thief Turn Starts Event Component should play evil laugh sound effect when rendered." }, { - "id": "1322", + "id": "1325", "name": "Game Thief Turn Starts Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1323", + "id": "1326", "name": "Game Thief Turn Starts Event Component Game Event Texts should pass event texts with 0 cards when additional cards are not set." }, { - "id": "1324", + "id": "1327", "name": "Game Thief Turn Starts Event Component Game Event Texts should pass event texts with thief not forced to choose between werewolves cards when game option is set." } ], @@ -233082,43 +233539,43 @@ "tests/unit/specs/stores/role/useRolesStore.spec.ts": { "tests": [ { - "id": "1325", + "id": "1328", "name": "Roles Store should have initial state when created." }, { - "id": "1326", + "id": "1329", "name": "Roles Store fetchAndSetRoles should fetch roles when called." }, { - "id": "1327", + "id": "1330", "name": "Roles Store fetchAndSetRoles should set roles when called." }, { - "id": "1328", + "id": "1331", "name": "Roles Store getRoleWithNameInRoles should return role with given name when found." }, { - "id": "1329", + "id": "1332", "name": "Roles Store getRoleWithNameInRoles should return undefined when role with given name is not found." }, { - "id": "1330", + "id": "1333", "name": "Roles Store getRolesForRecipientRoleName should return roles that are eligible for given recipient role name when called." }, { - "id": "1331", + "id": "1334", "name": "Roles Store getRolesForRecipientRoleName should return an empty array when no roles are eligible for given recipient role name." }, { - "id": "1332", + "id": "1335", "name": "Roles Store getRolesForRecipientRoleName should return an empty array when roles are not set." }, { - "id": "1333", + "id": "1336", "name": "Roles Store getRoleSideForRoleName should return role side for given role name when found." }, { - "id": "1334", + "id": "1337", "name": "Roles Store getRoleSideForRoleName should return undefined when role side for given role name is not found." } ], @@ -233127,31 +233584,31 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabTwoSisters/GameLobbyOptionsHubRolesTabTwoSisters.nuxt.spec.ts": { "tests": [ { - "id": "1335", + "id": "1338", "name": "Game Lobby Options Hub Roles Tab Two Sisters Component should match snapshot when rendered." }, { - "id": "1336", + "id": "1339", "name": "Game Lobby Options Hub Roles Tab Two Sisters Component Waking up Interval option should translate option label when rendered." }, { - "id": "1337", + "id": "1340", "name": "Game Lobby Options Hub Roles Tab Two Sisters Component Waking up Interval option should translate option description with selected value when rendered." }, { - "id": "1338", + "id": "1341", "name": "Game Lobby Options Hub Roles Tab Two Sisters Component Waking up Interval option should translate option float label when rendered." }, { - "id": "1339", + "id": "1342", "name": "Game Lobby Options Hub Roles Tab Two Sisters Component Waking up Interval option should update the create game dto store when the option is changed by the input number." }, { - "id": "1340", + "id": "1343", "name": "Game Lobby Options Hub Roles Tab Two Sisters Component Waking up Interval option should update the create game dto store when the option is changed by the slider." }, { - "id": "1341", + "id": "1344", "name": "Game Lobby Options Hub Roles Tab Two Sisters Component Waking up Interval option should not update the create game dto store when the option is changed by the input number and the value is null." } ], @@ -233160,39 +233617,39 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameChooseSidePlayground/GameChooseSidePlayground.nuxt.spec.ts": { "tests": [ { - "id": "1342", + "id": "1345", "name": "Game Choose Side Playground Component should match snapshot when rendered." }, { - "id": "1343", + "id": "1346", "name": "Game Choose Side Playground Component Choose Villager Side Button should select the villager side when clicked." }, { - "id": "1344", + "id": "1347", "name": "Game Choose Side Playground Component Choose Villager Side Button should have emerald border when side is villagers." }, { - "id": "1345", + "id": "1348", "name": "Game Choose Side Playground Component Choose Villager Side Button Villagers Button Image should have emerald border when side is villagers." }, { - "id": "1346", + "id": "1349", "name": "Game Choose Side Playground Component Choose Villager Side Button Villagers Button Text should have translated text when rendered." }, { - "id": "1347", + "id": "1350", "name": "Game Choose Side Playground Component Choose Werewolves Side button should select the werewolves side when clicked." }, { - "id": "1348", + "id": "1351", "name": "Game Choose Side Playground Component Choose Werewolves Side button should have red border when side is werewolves." }, { - "id": "1349", + "id": "1352", "name": "Game Choose Side Playground Component Choose Werewolves Side button Werewolves Button Image should have red border when side is werewolves." }, { - "id": "1350", + "id": "1353", "name": "Game Choose Side Playground Component Choose Werewolves Side button Werewolves Button Text should have translated text when rendered." } ], @@ -233201,47 +233658,47 @@ "tests/unit/specs/stores/game/useGameStore.spec.ts": { "tests": [ { - "id": "1351", + "id": "1354", "name": "Game Store should have initial state when created." }, { - "id": "1352", + "id": "1355", "name": "Game Store resetGame should reset game when called." }, { - "id": "1353", + "id": "1356", "name": "Game Store fetchAndSetGame should fetch game when called." }, { - "id": "1354", + "id": "1357", "name": "Game Store fetchAndSetGame should reset game current event index when called." }, { - "id": "1355", + "id": "1358", "name": "Game Store fetchAndSetGame should set game when called." }, { - "id": "1356", + "id": "1359", "name": "Game Store cancelGame should cancel game when called." }, { - "id": "1357", + "id": "1360", "name": "Game Store cancelGame should set game when called." }, { - "id": "1358", + "id": "1361", "name": "Game Store makeGamePlay should make game play when called." }, { - "id": "1359", + "id": "1362", "name": "Game Store makeGamePlay should reset game event indes when called." }, { - "id": "1360", + "id": "1363", "name": "Game Store makeGamePlay should set game when called." }, { - "id": "1361", + "id": "1364", "name": "Game Store skipGamePlay should skip game play when called." } ], @@ -233250,35 +233707,35 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayerCard/GameLobbyPlayerCard.nuxt.spec.ts": { "tests": [ { - "id": "1362", + "id": "1365", "name": "Game Lobby Player Card Component should match snapshot when rendered." }, { - "id": "1363", + "id": "1366", "name": "Game Lobby Player Card Component should match snapshot when rendered without shallow." }, { - "id": "1364", + "id": "1367", "name": "Game Lobby Player Card Component Delete button should have translated tooltip with player name when rendered." }, { - "id": "1365", + "id": "1368", "name": "Game Lobby Player Card Component Delete button should remove player from party when clicked." }, { - "id": "1366", + "id": "1369", "name": "Game Lobby Player Card Component Delete button should remove obsolete additional cards when player is removed from party." }, { - "id": "1367", + "id": "1370", "name": "Game Lobby Player Card Component Role should translate role not selected when player doesn't have role yet." }, { - "id": "1368", + "id": "1371", "name": "Game Lobby Player Card Component Role should translate role when player has role." }, { - "id": "1369", + "id": "1372", "name": "Game Lobby Player Card Component Emits should emit pickRoleForPlayer event when player card is selected." } ], @@ -233287,31 +233744,31 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameRequestAnotherVotePlayground/GameRequestAnotherVotePlayground.nuxt.spec.ts": { "tests": [ { - "id": "1370", + "id": "1373", "name": "Game Request Another Vote Playground Component should match snapshot when rendered." }, { - "id": "1371", + "id": "1374", "name": "Game Request Another Vote Playground Component Toggle Button Icon should set thumbs-up icon to the toggle button when judge requests another vote." }, { - "id": "1372", + "id": "1375", "name": "Game Request Another Vote Playground Component Toggle Button Icon should set thumbs-down icon to the toggle button when judge doesn't request another vote." }, { - "id": "1373", + "id": "1376", "name": "Game Request Another Vote Playground Component Toggle Button should translate off button label when rendered." }, { - "id": "1374", + "id": "1377", "name": "Game Request Another Vote Playground Component Toggle Button should translate on button label when rendered." }, { - "id": "1375", + "id": "1378", "name": "Game Request Another Vote Playground Component Toggle Button should set the does request another vote value to true in dto when the toggle button emits true change event." }, { - "id": "1376", + "id": "1379", "name": "Game Request Another Vote Playground Component Toggle Button should set the does request another vote value to false in dto when the toggle button emits first true then false change event." } ], @@ -233320,31 +233777,31 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabStutteringJudge/GameLobbyOptionsHubRolesTabStutteringJudge.nuxt.spec.ts": { "tests": [ { - "id": "1377", + "id": "1380", "name": "Game Lobby Options Hub Roles Tab Stuttering Judge Component should match snapshot when rendered." }, { - "id": "1378", + "id": "1381", "name": "Game Lobby Options Hub Roles Tab Stuttering Judge Component Vote Requests Count option should translate option label when rendered." }, { - "id": "1379", + "id": "1382", "name": "Game Lobby Options Hub Roles Tab Stuttering Judge Component Vote Requests Count option should translate option description with selected option value when rendered." }, { - "id": "1380", + "id": "1383", "name": "Game Lobby Options Hub Roles Tab Stuttering Judge Component Vote Requests Count option should translate option float label when rendered." }, { - "id": "1381", + "id": "1384", "name": "Game Lobby Options Hub Roles Tab Stuttering Judge Component Vote Requests Count option should update the create game dto store when the option is changed by the input number." }, { - "id": "1382", + "id": "1385", "name": "Game Lobby Options Hub Roles Tab Stuttering Judge Component Vote Requests Count option should update the create game dto store when the option is changed by the slider." }, { - "id": "1383", + "id": "1386", "name": "Game Lobby Options Hub Roles Tab Stuttering Judge Component Vote Requests Count option should not update the create game dto store when the option is changed by the input number and the value is null." } ], @@ -233353,31 +233810,31 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabScandalmonger/GameLobbyOptionsHubRolesTabScandalmonger.nuxt.spec.ts": { "tests": [ { - "id": "1384", + "id": "1387", "name": "Game Lobby Options Hub Roles Tab Scandalmonger Component should match snapshot when rendered." }, { - "id": "1385", + "id": "1388", "name": "Game Lobby Options Hub Roles Tab Scandalmonger Component Mark Penalty option should translate option label when rendered." }, { - "id": "1386", + "id": "1389", "name": "Game Lobby Options Hub Roles Tab Scandalmonger Component Mark Penalty option should translate option description with selected value when rendered." }, { - "id": "1387", + "id": "1390", "name": "Game Lobby Options Hub Roles Tab Scandalmonger Component Mark Penalty option should translate option float label when rendered." }, { - "id": "1388", + "id": "1391", "name": "Game Lobby Options Hub Roles Tab Scandalmonger Component Mark Penalty option should update the create game dto store when the option is changed by the input number." }, { - "id": "1389", + "id": "1392", "name": "Game Lobby Options Hub Roles Tab Scandalmonger Component Mark Penalty option should update the create game dto store when the option is changed by the slider." }, { - "id": "1390", + "id": "1393", "name": "Game Lobby Options Hub Roles Tab Scandalmonger Component Mark Penalty option should not update the create game dto store when the option is changed by the slider and the value is null." } ], @@ -233386,51 +233843,51 @@ "tests/unit/specs/pages/game/game-page.nuxt.spec.ts": { "tests": [ { - "id": "1391", + "id": "1394", "name": "Game Page should match snapshot when rendered." }, { - "id": "1392", + "id": "1395", "name": "Game Page should set head title and meta tags when rendered." }, { - "id": "1393", + "id": "1396", "name": "Game Page should fetch and set game in store when rendered with valid game id as string." }, { - "id": "1394", + "id": "1397", "name": "Game Page should fetch and set game in store when rendered with valid game id as array of strings." }, { - "id": "1395", + "id": "1398", "name": "Game Page should load all audios when rendered." }, { - "id": "1396", + "id": "1399", "name": "Game Page Game Status Containers should render game is loading container when game fetching status is pending." }, { - "id": "1397", + "id": "1400", "name": "Game Page Game Status Containers should render loading game spinner with text when game fetching status is pending." }, { - "id": "1398", + "id": "1401", "name": "Game Page Game Status Containers should render game not found when game fetching status is error." }, { - "id": "1399", + "id": "1402", "name": "Game Page Game Status Containers should render playing game when game fetching status is success and game status is playing." }, { - "id": "1400", + "id": "1403", "name": "Game Page Game Status Containers should render game over when game fetching status is success and game status is over." }, { - "id": "1401", + "id": "1404", "name": "Game Page Game Status Containers should render game canceled when game fetching status is success and game status is canceled." }, { - "id": "1402", + "id": "1405", "name": "Game Page Unmount should fade out playing background audio when unmounted." } ], @@ -233439,23 +233896,23 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverActions/GameOverCreateNewGameButton/GameOverCreateNewGameButton.nuxt.spec.ts": { "tests": [ { - "id": "1403", + "id": "1406", "name": "Game Over Create New Game Button Component should match snapshot when rendered." }, { - "id": "1404", + "id": "1407", "name": "Game Over Create New Game Button Component Create New Game Button should translate button label when rendered." }, { - "id": "1405", + "id": "1408", "name": "Game Over Create New Game Button Component Create New Game Button Click on Button should confirm action when button is clicked." }, { - "id": "1406", + "id": "1409", "name": "Game Over Create New Game Button Component Create New Game Button Click on Button should navigate to create game page with existing players when confirmed." }, { - "id": "1407", + "id": "1410", "name": "Game Over Create New Game Button Component Create New Game Button Click on Button should navigate to create page with new players when rejected." } ], @@ -233464,23 +233921,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameUsePotionsPlayground/GameUsePotionsPlayground.nuxt.spec.ts": { "tests": [ { - "id": "1408", + "id": "1411", "name": "Game Use Potions Playground Component should match snapshot when rendered." }, { - "id": "1409", + "id": "1412", "name": "Game Use Potions Playground Component No potion left should render no potion container when witch has no potion left." }, { - "id": "1410", + "id": "1413", "name": "Game Use Potions Playground Component No potion left should translate no potion text when witch has no potion left." }, { - "id": "1411", + "id": "1414", "name": "Game Use Potions Playground Component At least one potion left should render witch use potions tab view when witch has her life potion." }, { - "id": "1412", + "id": "1415", "name": "Game Use Potions Playground Component At least one potion left should render witch use potions tab view when witch has her death potion." } ], @@ -233489,43 +233946,43 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistory.nuxt.spec.ts": { "tests": [ { - "id": "1413", + "id": "1416", "name": "Game Over History Component should match snapshot when rendered." }, { - "id": "1414", + "id": "1417", "name": "Game Over History Component Dialog not open should set dialog to invisible when rendered." }, { - "id": "1415", + "id": "1418", "name": "Game Over History Component Dialog not open Game Over History Header should not render game over history header when dialog is not open." }, { - "id": "1416", + "id": "1419", "name": "Game Over History Component Dialog not open Game Over History Records should not render game over history records when dialog is not open." }, { - "id": "1417", + "id": "1420", "name": "Game Over History Component Dialog not open Game Over History Footer should not render game over history footer when dialog is not open." }, { - "id": "1418", + "id": "1421", "name": "Game Over History Component Dialog open should set dialog to visible when showGameHistory is called." }, { - "id": "1419", + "id": "1422", "name": "Game Over History Component Dialog open Game Over History Header should render game over history header when dialog is open." }, { - "id": "1420", + "id": "1423", "name": "Game Over History Component Dialog open Game Over History Records should render game over history records when dialog is open." }, { - "id": "1421", + "id": "1424", "name": "Game Over History Component Dialog open Game Over History Footer should render game over history footer when dialog is open." }, { - "id": "1422", + "id": "1425", "name": "Game Over History Component Dialog open Game Over History Footer should close game history when game over history footer emits event." } ], @@ -233534,39 +233991,39 @@ "tests/unit/specs/components/shared/game/game-event/GameEventFlippingPlayersCard/GameEventFlippingPlayerCard/GameEventFlippingPlayerCard.nuxt.spec.ts": { "tests": [ { - "id": "1423", + "id": "1426", "name": "Game Event Flipping Player Card Component should match snapshot when rendered." }, { - "id": "1424", + "id": "1427", "name": "Game Event Flipping Player Card Component Game Event Player Flipping Role should set interval of 1500ms for flipping player card when rendered." }, { - "id": "1425", + "id": "1428", "name": "Game Event Flipping Player Card Component Game Event Player Flipping Role should render the first player role to display when rendered." }, { - "id": "1426", + "id": "1429", "name": "Game Event Flipping Player Card Component Game Event Player Flipping Role should not set interval when there are no players to display." }, { - "id": "1427", + "id": "1430", "name": "Game Event Flipping Player Card Component Game Event Player Flipping Role should render undefined role when there are no players to display." }, { - "id": "1428", + "id": "1431", "name": "Game Event Flipping Player Card Component Game Event Player Flipping Role should render the next player role when interval is over." }, { - "id": "1429", + "id": "1432", "name": "Game Event Flipping Player Card Component Game Event Player Flipping Role should reset to the first player when interval is over for the max number of players." }, { - "id": "1430", + "id": "1433", "name": "Game Event Flipping Player Card Component Game Event Player Name should render the first player name when rendered." }, { - "id": "1431", + "id": "1434", "name": "Game Event Flipping Player Card Component Game Event Player Name should not render player name when there are no players to display." } ], @@ -233575,23 +234032,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameBuryDeadBodiesPlayground/GameBuryDeadBodiesPlayground.nuxt.spec.ts": { "tests": [ { - "id": "1432", + "id": "1435", "name": "Game Bury Dead Bodies Playground Component should match snapshot when rendered." }, { - "id": "1433", + "id": "1436", "name": "Game Bury Dead Bodies Playground Component Devoted Servant Playground should render devoted servant playground when one interaction for her is available." }, { - "id": "1434", + "id": "1437", "name": "Game Bury Dead Bodies Playground Component Devoted Servant Playground should not render devoted servant playground when no interaction for her is available." }, { - "id": "1435", + "id": "1438", "name": "Game Bury Dead Bodies Playground Component No Action needed should render no action needed when no interaction for devoted servant is available." }, { - "id": "1436", + "id": "1439", "name": "Game Bury Dead Bodies Playground Component No Action needed should not render no action needed when one interaction for her is available." } ], @@ -233600,27 +234057,27 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.nuxt.spec.ts": { "tests": [ { - "id": "1437", + "id": "1440", "name": "Game Lobby Header Options Button Component should match snapshot when rendered." }, { - "id": "1438", + "id": "1441", "name": "Game Lobby Header Options Button Component Options Button should translate button label when rendered." }, { - "id": "1439", + "id": "1442", "name": "Game Lobby Header Options Button Component Options Button should render changed option badge when game options have been changed." }, { - "id": "1440", + "id": "1443", "name": "Game Lobby Header Options Button Component Options Button should not render changed option badge when game options have not been changed." }, { - "id": "1441", + "id": "1444", "name": "Game Lobby Header Options Button Component Options Button should attach tooltip to badge when rendered." }, { - "id": "1442", + "id": "1445", "name": "Game Lobby Header Options Button Component Options Button Click on button should emit 'gameOptionsButtonClick' event when clicked." } ], @@ -233629,23 +234086,23 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordSource/GameOverHistoryRecordSource.nuxt.spec.ts": { "tests": [ { - "id": "1443", + "id": "1446", "name": "Game Over History Record Source Component should match snapshot when rendered." }, { - "id": "1444", + "id": "1447", "name": "Game Over History Record Source Component Source Name should display source name when rendered." }, { - "id": "1445", + "id": "1448", "name": "Game Over History Record Source Component Source Players should display truncated players when there are more than 3 players in source." }, { - "id": "1446", + "id": "1449", "name": "Game Over History Record Source Component Source Players should display all players when there are less than 4 players in source." }, { - "id": "1447", + "id": "1450", "name": "Game Over History Record Source Component Overflow tag should display overflow when rendered." } ], @@ -233654,27 +234111,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSheriffTurnStartsEvent/GameSheriffTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1448", + "id": "1451", "name": "Game Sheriff Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1449", + "id": "1452", "name": "Game Sheriff Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1450", + "id": "1453", "name": "Game Sheriff Turn Starts Event Component should play dramatic drums sound effect when rendered." }, { - "id": "1451", + "id": "1454", "name": "Game Sheriff Turn Starts Event Component Game Event Texts should not pass any event texts when current play is null." }, { - "id": "1452", + "id": "1455", "name": "Game Sheriff Turn Starts Event Component Game Event Texts should pass event texts when current play is settle votes." }, { - "id": "1453", + "id": "1456", "name": "Game Sheriff Turn Starts Event Component Game Event Texts should pass event texts when current play is delegate sheriff role." } ], @@ -233683,39 +234140,39 @@ "tests/unit/specs/components/pages/about/AboutWerewolvesAssistant/AboutWerewolvesAssistant.nuxt.spec.ts": { "tests": [ { - "id": "1454", + "id": "1457", "name": "About Werewolves Assistant Component should match snapshot when rendered." }, { - "id": "1455", + "id": "1458", "name": "About Werewolves Assistant Component Title should display translated title when rendered." }, { - "id": "1456", + "id": "1459", "name": "About Werewolves Assistant Component Sections should translate first section when rendered." }, { - "id": "1457", + "id": "1460", "name": "About Werewolves Assistant Component Sections should translate second section when rendered." }, { - "id": "1458", + "id": "1461", "name": "About Werewolves Assistant Component Sections should translate third section for each bullet item when rendered." }, { - "id": "1459", + "id": "1462", "name": "About Werewolves Assistant Component Sections should translate fourth section when rendered." }, { - "id": "1460", + "id": "1463", "name": "About Werewolves Assistant Component Sections Disclaimer should translate disclaimer title when rendered." }, { - "id": "1461", + "id": "1464", "name": "About Werewolves Assistant Component Sections Disclaimer should translate disclaimer first section when rendered." }, { - "id": "1462", + "id": "1465", "name": "About Werewolves Assistant Component Sections Disclaimer should translate disclaimer second section when rendered." } ], @@ -233724,35 +234181,35 @@ "tests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventTextsManager/GameEventNextTextButton/GameEventNextTextButton.nuxt.spec.ts": { "tests": [ { - "id": "1463", + "id": "1466", "name": "Game Event Next Text Button Component should match snapshot when rendered." }, { - "id": "1464", + "id": "1467", "name": "Game Event Next Text Button Component Next Game Event Text button should have tooltip when rendered." }, { - "id": "1465", + "id": "1468", "name": "Game Event Next Text Button Component Next Game Event Text button should be disabled when making game play status is pending." }, { - "id": "1466", + "id": "1469", "name": "Game Event Next Text Button Component Next Game Event Text button Emits should emits click event when clicked." }, { - "id": "1467", + "id": "1470", "name": "Game Event Next Text Button Component Next Game Event Text button Keyboard should emits click event when right arrow key is pressed." }, { - "id": "1468", + "id": "1471", "name": "Game Event Next Text Button Component Next Game Event Text button Keyboard should animate button when right arrow key is pressed." }, { - "id": "1469", + "id": "1472", "name": "Game Event Next Text Button Component Next Game Event Text button Keyboard should not emits click event when can't go to next game event." }, { - "id": "1470", + "id": "1473", "name": "Game Event Next Text Button Component Next Game Event Text button Keyboard should not emits click event when right arrow key is unpressed." } ], @@ -233761,35 +234218,35 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubFooter/GameLobbyOptionsHubFooter.nuxt.spec.ts": { "tests": [ { - "id": "1471", + "id": "1474", "name": "Game Lobby Options Hub Footer Component should match snapshot when rendered." }, { - "id": "1472", + "id": "1475", "name": "Game Lobby Options Hub Footer Component Reset Options Button should not render reset options button when no options have been changed based on default game options." }, { - "id": "1473", + "id": "1476", "name": "Game Lobby Options Hub Footer Component Reset Options Button Button is rendered should render reset options button when options have been changed." }, { - "id": "1474", + "id": "1477", "name": "Game Lobby Options Hub Footer Component Reset Options Button Button is rendered should translate label of reset options button when rendered." }, { - "id": "1475", + "id": "1478", "name": "Game Lobby Options Hub Footer Component Reset Options Button Button is rendered should attach tooltip to reset options button when rendered." }, { - "id": "1476", + "id": "1479", "name": "Game Lobby Options Hub Footer Component Reset Options Button Button is rendered should reset options when reset options button is clicked." }, { - "id": "1477", + "id": "1480", "name": "Game Lobby Options Hub Footer Component Close Button should translate close button when rendered." }, { - "id": "1478", + "id": "1481", "name": "Game Lobby Options Hub Footer Component Close Button should emit close event when close button is clicked." } ], @@ -233798,23 +234255,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameElderHasTakenRevengeEvent/GameElderHasTakenRevengeEvent.nuxt.spec.ts": { "tests": [ { - "id": "1479", + "id": "1482", "name": "Game Elder Has Taken Revenge Event Component should match snapshot when rendered." }, { - "id": "1480", + "id": "1483", "name": "Game Elder Has Taken Revenge Event Component should play thunder sound when rendered." }, { - "id": "1481", + "id": "1484", "name": "Game Elder Has Taken Revenge Event Component Game Event Texts should pass texts when rendered." }, { - "id": "1482", + "id": "1485", "name": "Game Elder Has Taken Revenge Event Component Flipping Player Card should pass elder player when rendered." }, { - "id": "1483", + "id": "1486", "name": "Game Elder Has Taken Revenge Event Component Flipping Player Card should not render flipping player card when elder player is not found." } ], @@ -233823,31 +234280,31 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderCard/GamePlaygroundHeaderCard.nuxt.spec.ts": { "tests": [ { - "id": "1484", + "id": "1487", "name": "Game Playground Header Card Component should match snapshot when rendered." }, { - "id": "1485", + "id": "1488", "name": "Game Playground Header Card Component Role Image 'should pass the villager role name to…'" }, { - "id": "1486", + "id": "1489", "name": "Game Playground Header Card Component Role Image 'should pass the werewolf role name to…'" }, { - "id": "1487", + "id": "1490", "name": "Game Playground Header Card Component Role Image 'should pass the witch role name to th…'" }, { - "id": "1488", + "id": "1491", "name": "Game Playground Header Card Component Role Image 'should pass the seer role name to the…'" }, { - "id": "1489", + "id": "1492", "name": "Game Playground Header Card Component Role Image 'should pass the hunter role name to t…'" }, { - "id": "1490", + "id": "1493", "name": "Game Playground Header Card Component Role Image should pass undefined to the role image component when the current play is not set." } ], @@ -233856,23 +234313,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameScandalmongerMarkIsActiveEvent/GameScandalmongerMarkIsActiveEvent.nuxt.spec.ts": { "tests": [ { - "id": "1491", + "id": "1494", "name": "Game Scandalmonger Mark Is Active Event Component should match snapshot when rendered." }, { - "id": "1492", + "id": "1495", "name": "Game Scandalmonger Mark Is Active Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1493", + "id": "1496", "name": "Game Scandalmonger Mark Is Active Event Component Sound Effect should play raven cry sound effect when rendered." }, { - "id": "1494", + "id": "1497", "name": "Game Scandalmonger Mark Is Active Event Component Game Events Texts should pass can't find marked player when marked player is not in game events." }, { - "id": "1495", + "id": "1498", "name": "Game Scandalmonger Mark Is Active Event Component Game Events Texts should pass default event texts when rendered." } ], @@ -233881,23 +234338,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabPrejudicedManipulator/GameLobbyOptionsHubRolesTabPrejudicedManipulator.nuxt.spec.ts": { "tests": [ { - "id": "1496", + "id": "1499", "name": "Game Lobby Options Hub Roles Tab Prejudiced Manipulator Component should match snapshot when rendered." }, { - "id": "1497", + "id": "1500", "name": "Game Lobby Options Hub Roles Tab Prejudiced Manipulator Component Is powerless on Werewolves Side option should translate option label when rendered." }, { - "id": "1498", + "id": "1501", "name": "Game Lobby Options Hub Roles Tab Prejudiced Manipulator Component Is powerless on Werewolves Side option should translate option description when the option is activated." }, { - "id": "1499", + "id": "1502", "name": "Game Lobby Options Hub Roles Tab Prejudiced Manipulator Component Is powerless on Werewolves Side option should translate option description when the option is deactivated." }, { - "id": "1500", + "id": "1503", "name": "Game Lobby Options Hub Roles Tab Prejudiced Manipulator Component Is powerless on Werewolves Side option should update the create game dto store when the option is toggled." } ], @@ -233906,23 +234363,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlaygroundVoters/GameVotePlaygroundVoters.nuxt.spec.ts": { "tests": [ { - "id": "1501", + "id": "1504", "name": "Game Vote Playground Voter Component should match snapshot when rendered." }, { - "id": "1502", + "id": "1505", "name": "Game Vote Playground Voter Component No voters should render no voters message when current play is not defined." }, { - "id": "1503", + "id": "1506", "name": "Game Vote Playground Voter Component No voters should render no voters message when current play is defined but there are no expected players to vote." }, { - "id": "1504", + "id": "1507", "name": "Game Vote Playground Voter Component No voters should render translated no voters message when current play is not defined." }, { - "id": "1505", + "id": "1508", "name": "Game Vote Playground Voter Component Voters should render shuffled voters when current play is defined and there are expected players to vote." } ], @@ -233931,27 +234388,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameLoversTurnStartsEvent/GameLoversTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1506", + "id": "1509", "name": "Game Lovers Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1507", + "id": "1510", "name": "Game Lovers Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1508", + "id": "1511", "name": "Game Lovers Turn Starts Event Component should play heartbeat sound effect when rendered." }, { - "id": "1509", + "id": "1512", "name": "Game Lovers Turn Starts Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1510", + "id": "1513", "name": "Game Lovers Turn Starts Event Component Game Event Texts should pass event texts with cupid when game option is activated." }, { - "id": "1511", + "id": "1514", "name": "Game Lovers Turn Starts Event Component Game Event Texts should pass event texts with lovers reveal each other roles when option is activated." } ], @@ -233960,27 +234417,27 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyPlayersParty/GameLobbyPlayersParty.nuxt.spec.ts": { "tests": [ { - "id": "1512", + "id": "1515", "name": "Game Lobby Players Party Component should match snapshot when rendered." }, { - "id": "1513", + "id": "1516", "name": "Game Lobby Players Party Component Player Cards should render add player with input message when there are no players in the create game dto." }, { - "id": "1514", + "id": "1517", "name": "Game Lobby Players Party Component Player Cards should render no players in lobby when there are no players in the create game dto." }, { - "id": "1515", + "id": "1518", "name": "Game Lobby Players Party Component Player Cards should render 4 players cards when there are 4 players in the create game dto." }, { - "id": "1516", + "id": "1519", "name": "Game Lobby Players Party Component Emits should emit pickRoleForPlayer event when game lobby player card emits pick role for player event." }, { - "id": "1517", + "id": "1520", "name": "Game Lobby Players Party Component Emits should not emit pickRoleForPlayer event when game lobby player card emits pick role for player event with undefined player." } ], @@ -233989,23 +234446,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWildChild/GameLobbyOptionsHubRolesTabWildChild.nuxt.spec.ts": { "tests": [ { - "id": "1518", + "id": "1521", "name": "Game Lobby Options Hub Roles Tab Wild Child Component should match snapshot when rendered." }, { - "id": "1519", + "id": "1522", "name": "Game Lobby Options Hub Roles Tab Wild Child Component Is Transformation revealed option should translate option label when rendered." }, { - "id": "1520", + "id": "1523", "name": "Game Lobby Options Hub Roles Tab Wild Child Component Is Transformation revealed option should translate option description when the option is activated." }, { - "id": "1521", + "id": "1524", "name": "Game Lobby Options Hub Roles Tab Wild Child Component Is Transformation revealed option should translate option description when the option is deactivated." }, { - "id": "1522", + "id": "1525", "name": "Game Lobby Options Hub Roles Tab Wild Child Component Is Transformation revealed option should update the create game dto store when the option is changed by the affirmative toggle button." } ], @@ -234014,23 +234471,23 @@ "tests/unit/specs/composables/api/game/game-history-record/useGameHistoryRecord.spec.ts": { "tests": [ { - "id": "1523", + "id": "1526", "name": "Use Game History Record Spec didSourceSkipped 'should return true when called with v…'" }, { - "id": "1524", + "id": "1527", "name": "Use Game History Record Spec didSourceSkipped 'should return true when called with t…'" }, { - "id": "1525", + "id": "1528", "name": "Use Game History Record Spec didSourceSkipped 'should return true when called with r…'" }, { - "id": "1526", + "id": "1529", "name": "Use Game History Record Spec didSourceSkipped 'should return true when called with c…'" }, { - "id": "1527", + "id": "1530", "name": "Use Game History Record Spec didSourceSkipped 'should return false when called with …'" } ], @@ -234039,23 +234496,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameCharmedTurnStartsEvent/GameCharmedTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1528", + "id": "1531", "name": "Game Charmed Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1529", + "id": "1532", "name": "Game Charmed Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1530", + "id": "1533", "name": "Game Charmed Turn Starts Event Component should play magic mood sound effect when rendered." }, { - "id": "1531", + "id": "1534", "name": "Game Charmed Turn Starts Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1532", + "id": "1535", "name": "Game Charmed Turn Starts Event Component Game Event Texts should pass event texts with first meeting of charmed people text when it's the first turn of the game." } ], @@ -234064,23 +234521,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWerewolf/GameLobbyOptionsHubRolesTabWerewolf.nuxt.spec.ts": { "tests": [ { - "id": "1533", + "id": "1536", "name": "Game Lobby Options Hub Roles Tab Werewolf Component should match snapshot when rendered." }, { - "id": "1534", + "id": "1537", "name": "Game Lobby Options Hub Roles Tab Werewolf Component Can eat each other option should translate option label when rendered." }, { - "id": "1535", + "id": "1538", "name": "Game Lobby Options Hub Roles Tab Werewolf Component Can eat each other option should translate option description when the option is activated." }, { - "id": "1536", + "id": "1539", "name": "Game Lobby Options Hub Roles Tab Werewolf Component Can eat each other option should translate option description when the option is deactivated." }, { - "id": "1537", + "id": "1540", "name": "Game Lobby Options Hub Roles Tab Werewolf Component Can eat each other option should update the create game dto store when the option is changed by the affirmative toggle button." } ], @@ -234089,23 +234546,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBearTamer/GameLobbyOptionsHubRolesTabBearTamer.nuxt.spec.ts": { "tests": [ { - "id": "1538", + "id": "1541", "name": "Game Lobby Options Hub Tab Bear Tamer Component should match snapshot when rendered." }, { - "id": "1539", + "id": "1542", "name": "Game Lobby Options Hub Tab Bear Tamer Component Does Growl on Werewolves Side option should translate option label when rendered." }, { - "id": "1540", + "id": "1543", "name": "Game Lobby Options Hub Tab Bear Tamer Component Does Growl on Werewolves Side option should translate option description when the option is activated." }, { - "id": "1541", + "id": "1544", "name": "Game Lobby Options Hub Tab Bear Tamer Component Does Growl on Werewolves Side option should translate option description when the option is deactivated." }, { - "id": "1542", + "id": "1545", "name": "Game Lobby Options Hub Tab Bear Tamer Component Does Growl on Werewolves Side option should update create game dto store when the option is toggled." } ], @@ -234114,27 +234571,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameDefenderTurnStartsEvent/GameDefenderTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1543", + "id": "1546", "name": "Game Defender Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1544", + "id": "1547", "name": "Game Defender Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1545", + "id": "1548", "name": "Game Defender Turn Starts Event Component should play sword sound effect when rendered." }, { - "id": "1546", + "id": "1549", "name": "Game Defender Turn Starts Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1547", + "id": "1550", "name": "Game Defender Turn Starts Event Component Game Event Texts should pass event texts with defender protects anyone text when the option is activated even if it's not first turn." }, { - "id": "1548", + "id": "1551", "name": "Game Defender Turn Starts Event Component Game Event Texts should pass event texts with defender can protect anyone but the last protected player text when it's second turn." } ], @@ -234143,23 +234600,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabBigBadWolf/GameLobbyOptionsHubRolesTabBigBadWolf.nuxt.spec.ts": { "tests": [ { - "id": "1549", + "id": "1552", "name": "Game Lobby Options Hub Roles Tab Big Bad Wolf Component should match snapshot when rendered." }, { - "id": "1550", + "id": "1553", "name": "Game Lobby Options Hub Roles Tab Big Bad Wolf Component Is Powerless if one Werewolf dies option should translate option label when rendered." }, { - "id": "1551", + "id": "1554", "name": "Game Lobby Options Hub Roles Tab Big Bad Wolf Component Is Powerless if one Werewolf dies option should translate option description when the option is activated." }, { - "id": "1552", + "id": "1555", "name": "Game Lobby Options Hub Roles Tab Big Bad Wolf Component Is Powerless if one Werewolf dies option should translate option description when the option is deactivated." }, { - "id": "1553", + "id": "1556", "name": "Game Lobby Options Hub Roles Tab Big Bad Wolf Component Is Powerless if one Werewolf dies option should update the create game dto store when the option is toggled." } ], @@ -234168,23 +234625,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderAdditionalCardsManagerButton/GameLobbyHeaderAdditionalCardsManagerButton.nuxt.spec.ts": { "tests": [ { - "id": "1554", + "id": "1557", "name": "Game Lobby Header Additional Manager Button Component should match snapshot when rendered." }, { - "id": "1555", + "id": "1558", "name": "Game Lobby Header Additional Manager Button Component Button should show warning icon when additional cards are not set." }, { - "id": "1556", + "id": "1559", "name": "Game Lobby Header Additional Manager Button Component Button should not show warning icon when additional cards are set." }, { - "id": "1557", + "id": "1560", "name": "Game Lobby Header Additional Manager Button Component Button should translate button text when rendered." }, { - "id": "1558", + "id": "1561", "name": "Game Lobby Header Additional Manager Button Component Button should emit additional cards manager button click event when clicked." } ], @@ -234193,23 +234650,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabWitch/GameLobbyOptionsHubRolesTabWitch.nuxt.spec.ts": { "tests": [ { - "id": "1559", + "id": "1562", "name": "Game Lobby Options Hub Roles Tab Witch Component should match snapshot when rendered." }, { - "id": "1560", + "id": "1563", "name": "Game Lobby Options Hub Roles Tab Witch Component Does know Werewolves targets option should translate option label when rendered." }, { - "id": "1561", + "id": "1564", "name": "Game Lobby Options Hub Roles Tab Witch Component Does know Werewolves targets option should translate option description when the option is activated." }, { - "id": "1562", + "id": "1565", "name": "Game Lobby Options Hub Roles Tab Witch Component Does know Werewolves targets option should translate option description when the option is deactivated." }, { - "id": "1563", + "id": "1566", "name": "Game Lobby Options Hub Roles Tab Witch Component Does know Werewolves targets option should update the create game dto store when the option is changed by the affirmative toggle button." } ], @@ -234218,23 +234675,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabActor/GameLobbyOptionsHubRolesTabActor.nuxt.spec.ts": { "tests": [ { - "id": "1564", + "id": "1567", "name": "Game Lobby Options Hub Roles Tab Actor Component should match snapshot when rendered." }, { - "id": "1565", + "id": "1568", "name": "Game Lobby Options Hub Roles Tab Actor Component Is powerless on werewolves side option should translate option label when rendered." }, { - "id": "1566", + "id": "1569", "name": "Game Lobby Options Hub Roles Tab Actor Component Is powerless on werewolves side option should translate option description when the option is activated." }, { - "id": "1567", + "id": "1570", "name": "Game Lobby Options Hub Roles Tab Actor Component Is powerless on werewolves side option should translate option description when the option is deactivated." }, { - "id": "1568", + "id": "1571", "name": "Game Lobby Options Hub Roles Tab Actor Component Is powerless on werewolves side option should update create game dto store when the option is toggled." } ], @@ -234243,27 +234700,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooter.nuxt.spec.ts": { "tests": [ { - "id": "1569", + "id": "1572", "name": "Game Playground Footer Component should match snapshot when rendered." }, { - "id": "1570", + "id": "1573", "name": "Game Playground Footer Component Countdown should render countdown when current game play action is vote." }, { - "id": "1571", + "id": "1574", "name": "Game Playground Footer Component Countdown should render countdown when current game play action is meet each other." }, { - "id": "1572", + "id": "1575", "name": "Game Playground Footer Component Countdown should render countdown when current game play action is elect sheriff." }, { - "id": "1573", + "id": "1576", "name": "Game Playground Footer Component Countdown should not render countdown when current game play action is not vote, meet each other or elect sheriff." }, { - "id": "1574", + "id": "1577", "name": "Game Playground Footer Component Countdown should not render countdown when current game play is null." } ], @@ -234272,23 +234729,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyPositionCoordinator/GameLobbyPositionCoordinatorSorter/GameLobbyPositionCoordinatorSorter.nuxt.spec.ts": { "tests": [ { - "id": "1575", + "id": "1578", "name": "Game Lobby Position Coordinator Sorter Component should match snapshot when rendered." }, { - "id": "1576", + "id": "1579", "name": "Game Lobby Position Coordinator Sorter Component should match snapshot when shallow rendered." }, { - "id": "1577", + "id": "1580", "name": "Game Lobby Position Coordinator Sorter Component Left Neighbors Disclaimer should translate left neighbors disclaimer text when rendered." }, { - "id": "1578", + "id": "1581", "name": "Game Lobby Position Coordinator Sorter Component Sorter should update players in store when update model value event is emitted." }, { - "id": "1579", + "id": "1582", "name": "Game Lobby Position Coordinator Sorter Component Right Neighbors Disclaimer should translate right neighbors disclaimer text when rendered." } ], @@ -234297,23 +234754,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabIdiot/GameLobbyOptionsHubRolesTabIdiot.nuxt.spec.ts": { "tests": [ { - "id": "1580", + "id": "1583", "name": "Game Lobby Options Hub Roles Tab Idiot Component should match snapshot when rendered." }, { - "id": "1581", + "id": "1584", "name": "Game Lobby Options Hub Roles Tab Idiot Component Die on Elder death option should translate option label when rendered." }, { - "id": "1582", + "id": "1585", "name": "Game Lobby Options Hub Roles Tab Idiot Component Die on Elder death option should translate option description when the option is activated." }, { - "id": "1583", + "id": "1586", "name": "Game Lobby Options Hub Roles Tab Idiot Component Die on Elder death option should translate option description when the option is deactivated." }, { - "id": "1584", + "id": "1587", "name": "Game Lobby Options Hub Roles Tab Idiot Component Die on Elder death option should update the create game dto store when the option is toggled." } ], @@ -234322,15 +234779,15 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyPositionCoordinator/GameLobbyPositionCoordinatorChart/GameLobbyPositionCoordinatorChart.nuxt.spec.ts": { "tests": [ { - "id": "1585", + "id": "1588", "name": "Game Lobby Position Coordinator Chart Component should match snapshot when rendered." }, { - "id": "1586", + "id": "1589", "name": "Game Lobby Position Coordinator Chart Component Chart should set chart data when rendered." }, { - "id": "1587", + "id": "1590", "name": "Game Lobby Position Coordinator Chart Component Chart should set chart options when rendered." } ], @@ -234339,23 +234796,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubCompositionTab/GameLobbyOptionsHubCompositionTab.nuxt.spec.ts": { "tests": [ { - "id": "1588", + "id": "1591", "name": "Game Lobby Options Hub Composition Tab Component should match snapshot when rendered." }, { - "id": "1589", + "id": "1592", "name": "Game Lobby Options Hub Composition Tab Component Is Composition hidden option should translate option label when rendered." }, { - "id": "1590", + "id": "1593", "name": "Game Lobby Options Hub Composition Tab Component Is Composition hidden option should translate option description when the option is activated." }, { - "id": "1591", + "id": "1594", "name": "Game Lobby Options Hub Composition Tab Component Is Composition hidden option should translate option description when the option is deactivated." }, { - "id": "1592", + "id": "1595", "name": "Game Lobby Options Hub Composition Tab Component Is Composition hidden option should update create game dto when the option is toggled." } ], @@ -234364,23 +234821,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabLittleGirl/GameLobbyOptionsHubRolesTabLittleGirl.nuxt.spec.ts": { "tests": [ { - "id": "1593", + "id": "1596", "name": "Game Lobby Options Hub Roles Tab Little Girl Component should match snapshot when rendered." }, { - "id": "1594", + "id": "1597", "name": "Game Lobby Options Hub Roles Tab Little Girl Component Is Protected by Defender Option should translate option label when rendered." }, { - "id": "1595", + "id": "1598", "name": "Game Lobby Options Hub Roles Tab Little Girl Component Is Protected by Defender Option should translate option description when the option is activated." }, { - "id": "1596", + "id": "1599", "name": "Game Lobby Options Hub Roles Tab Little Girl Component Is Protected by Defender Option should translate option description when the option is deactivated." }, { - "id": "1597", + "id": "1600", "name": "Game Lobby Options Hub Roles Tab Little Girl Component Is Protected by Defender Option should update the create game dto store when the option is toggled." } ], @@ -234389,23 +234846,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabFox/GameLobbyOptionsHubRolesTabFox.nuxt.spec.ts": { "tests": [ { - "id": "1598", + "id": "1601", "name": "Game Lobby Options Hub Roles Tab Fox Component should match snapshot when rendered." }, { - "id": "1599", + "id": "1602", "name": "Game Lobby Options Hub Roles Tab Fox Component Fox Powerless if misses Werewolf option should translate option label when rendered." }, { - "id": "1600", + "id": "1603", "name": "Game Lobby Options Hub Roles Tab Fox Component Fox Powerless if misses Werewolf option should translate option description when the option is activated." }, { - "id": "1601", + "id": "1604", "name": "Game Lobby Options Hub Roles Tab Fox Component Fox Powerless if misses Werewolf option should translate option description when the option is deactivated." }, { - "id": "1602", + "id": "1605", "name": "Game Lobby Options Hub Roles Tab Fox Component Fox Powerless if misses Werewolf option should update the create game dto store when the option is toggled." } ], @@ -234414,35 +234871,35 @@ "tests/unit/specs/composables/api/game/useFetchGames.spec.ts": { "tests": [ { - "id": "1603", + "id": "1606", "name": "Use Fetch Game Composable createGame should create game when called." }, { - "id": "1604", + "id": "1607", "name": "Use Fetch Game Composable createGame should return null when create game throws." }, { - "id": "1605", + "id": "1608", "name": "Use Fetch Game Composable getGame should get game when called." }, { - "id": "1606", + "id": "1609", "name": "Use Fetch Game Composable getGame should return null when get game throws." }, { - "id": "1607", + "id": "1610", "name": "Use Fetch Game Composable cancelGame should cancel game when called." }, { - "id": "1608", + "id": "1611", "name": "Use Fetch Game Composable cancelGame should return null when cancel game throws." }, { - "id": "1609", + "id": "1612", "name": "Use Fetch Game Composable makeGamePlay should make game play when called." }, { - "id": "1610", + "id": "1613", "name": "Use Fetch Game Composable makeGamePlay should return null when make game play throws." } ], @@ -234451,23 +234908,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTabDefender/GameLobbyOptionsHubRolesTabDefender.nuxt.spec.ts": { "tests": [ { - "id": "1611", + "id": "1614", "name": "Game Lobby Options Hub Roles Tab Defender Component should match snapshot when rendered." }, { - "id": "1612", + "id": "1615", "name": "Game Lobby Options Hub Roles Tab Defender Component Can Defender protect twice option should translate option label when rendered." }, { - "id": "1613", + "id": "1616", "name": "Game Lobby Options Hub Roles Tab Defender Component Can Defender protect twice option should translate option description when the option is activated." }, { - "id": "1614", + "id": "1617", "name": "Game Lobby Options Hub Roles Tab Defender Component Can Defender protect twice option should translate option description when the option is deactivated." }, { - "id": "1615", + "id": "1618", "name": "Game Lobby Options Hub Roles Tab Defender Component Can Defender protect twice option should update the create game dto store when the option is toggled." } ], @@ -234476,19 +234933,19 @@ "tests/unit/specs/components/shared/game/game-event/GameEventFlippingPlayersCard/GameEventFlippingPlayerCard/GameEventFlippingPlaySourcePlayersCard/GameEventFlippingPlaySourcePlayersCard.nuxt.spec.ts": { "tests": [ { - "id": "1616", + "id": "1619", "name": "Game Event Flipping Play Source Players Card Component should match snapshot when rendered." }, { - "id": "1617", + "id": "1620", "name": "Game Event Flipping Play Source Players Card Component Game Event Flipping Player Card should pass expected players to play for current play when rendered." }, { - "id": "1618", + "id": "1621", "name": "Game Event Flipping Play Source Players Card Component Game Event Flipping Player Card should pass empty array when there is no current play." }, { - "id": "1619", + "id": "1622", "name": "Game Event Flipping Play Source Players Card Component Game Event Flipping Player Card should pass empty array when there is no source players." } ], @@ -234497,31 +234954,31 @@ "tests/unit/specs/components/layouts/default/NavBar.nuxt.spec.ts": { "tests": [ { - "id": "1620", + "id": "1623", "name": "NavBar Component should match snapshot when rendered." }, { - "id": "1621", + "id": "1624", "name": "NavBar Component Home Page Link should have the prop 'to' set to home page when rendered." }, { - "id": "1622", + "id": "1625", "name": "NavBar Component Home Page Link Werewolves Assistant Logo should have the prop 'src' set to the small logo when rendered." }, { - "id": "1623", + "id": "1626", "name": "NavBar Component Home Page Link Werewolves Assistant Logo Text should translate the logo text when rendered." }, { - "id": "1624", + "id": "1627", "name": "NavBar Component Mute Button should render when on game page." }, { - "id": "1625", + "id": "1628", "name": "NavBar Component Mute Button should not render when not on game page." }, { - "id": "1626", + "id": "1629", "name": "NavBar Component Parameters Menu should have left tooltip when rendered." } ], @@ -234530,35 +234987,35 @@ "tests/unit/specs/components/shared/role/RoleImage/RoleImage.nuxt.spec.ts": { "tests": [ { - "id": "1627", + "id": "1630", "name": "Role Image Component should match snapshot when rendered." }, { - "id": "1628", + "id": "1631", "name": "Role Image Component Image Size should have default width and height from props sizes when rendered." }, { - "id": "1629", + "id": "1632", "name": "Role Image Component Image Src should have back src when prop role image is undefined." }, { - "id": "1630", + "id": "1633", "name": "Role Image Component Image Src should have src based on role name from props when rendered." }, { - "id": "1631", + "id": "1634", "name": "Role Image Component Image Src should have small suffix for src when definition from props is small." }, { - "id": "1632", + "id": "1635", "name": "Role Image Component Image Alt should have alt from props when rendered." }, { - "id": "1633", + "id": "1636", "name": "Role Image Component Image Alt should have alt from role name when alt from props is undefined but role name is defined." }, { - "id": "1634", + "id": "1637", "name": "Role Image Component Image Alt should have back alt when alt from props is undefined and role name is undefined." } ], @@ -234567,27 +235024,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameTeamSide/GameTeamSidePlayer/GameTeamSidePlayerName/GameTeamSidePlayerName.nuxt.spec.ts": { "tests": [ { - "id": "1635", + "id": "1638", "name": "Game Team Side Player Name Component should match snapshot when rendered." }, { - "id": "1636", + "id": "1639", "name": "Game Team Side Player Name Component Player death should display player death logo when player is dead." }, { - "id": "1637", + "id": "1640", "name": "Game Team Side Player Name Component Player death should not display player death logo when player is alive." }, { - "id": "1638", + "id": "1641", "name": "Game Team Side Player Name Component Player death should attach tooltip to player death logo when player is dead." }, { - "id": "1639", + "id": "1642", "name": "Game Team Side Player Name Component Player name should display player name when rendered." }, { - "id": "1640", + "id": "1643", "name": "Game Team Side Player Name Component Player name should be lined through when player is dead." } ], @@ -234596,39 +235053,39 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogPlayersPositioned/GameLobbyStartGameConfirmDialogPlayersPositioned.nuxt.spec.ts": { "tests": [ { - "id": "1641", + "id": "1644", "name": "Game Lobby Start Game Confirm Dialog Players Positioned Component should match snapshot when rendered." }, { - "id": "1642", + "id": "1645", "name": "Game Lobby Start Game Confirm Dialog Players Positioned Component should match snapshot when rendered without shallow rendering." }, { - "id": "1643", + "id": "1646", "name": "Game Lobby Start Game Confirm Dialog Players Positioned Component Step Svg should set size to step svg when rendered." }, { - "id": "1644", + "id": "1647", "name": "Game Lobby Start Game Confirm Dialog Players Positioned Component Step Svg should set src to step svg when rendered." }, { - "id": "1645", + "id": "1648", "name": "Game Lobby Start Game Confirm Dialog Players Positioned Component Text should translate step text when rendered." }, { - "id": "1646", + "id": "1649", "name": "Game Lobby Start Game Confirm Dialog Players Positioned Component Step Actions should translate reject step button label when rendered." }, { - "id": "1647", + "id": "1650", "name": "Game Lobby Start Game Confirm Dialog Players Positioned Component Step Actions should emit reject step event when reject step button clicked." }, { - "id": "1648", + "id": "1651", "name": "Game Lobby Start Game Confirm Dialog Players Positioned Component Step Actions should translate confirm step button label when rendered." }, { - "id": "1649", + "id": "1652", "name": "Game Lobby Start Game Confirm Dialog Players Positioned Component Step Actions should emit confirm step event when confirm step button clicked." } ], @@ -234637,23 +235094,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameBigBadWolfTurnStartsEvent/GameBigBadWolfTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1650", + "id": "1653", "name": "Game Big Bad Wolf Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1651", + "id": "1654", "name": "Game Big Bad Wolf Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1652", + "id": "1655", "name": "Game Big Bad Wolf Turn Starts Event Component should play werewolf growling sound effect when rendered." }, { - "id": "1653", + "id": "1656", "name": "Game Big Bad Wolf Turn Starts Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1654", + "id": "1657", "name": "Game Big Bad Wolf Turn Starts Event Component Game Event Texts should pass event texts with cannibal big bad wolf when game option is enabled." } ], @@ -234662,23 +235119,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameCupidTurnStartsEvent/GameCupidTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1655", + "id": "1658", "name": "Game Cupid Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1656", + "id": "1659", "name": "Game Cupid Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1657", + "id": "1660", "name": "Game Cupid Turn Starts Event Component should play love arrow shot sound effect when rendered." }, { - "id": "1658", + "id": "1661", "name": "Game Cupid Turn Starts Event Component Game Event Texts should pass event texts with cupid must win with lovers text when the options is activated." }, { - "id": "1659", + "id": "1662", "name": "Game Cupid Turn Starts Event Component Game Event Texts should pass event texts when rendered." } ], @@ -234687,19 +235144,19 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerGrid/GameLobbyRolePickerGrid.nuxt.spec.ts": { "tests": [ { - "id": "1660", + "id": "1663", "name": "Game Lobby Role Picker Grid Component should match snapshot when rendered." }, { - "id": "1661", + "id": "1664", "name": "Game Lobby Role Picker Grid Component Available roles should render sorted available roles plus random role when rendered." }, { - "id": "1662", + "id": "1665", "name": "Game Lobby Role Picker Grid Component Available roles should render only random role when there are no available roles." }, { - "id": "1663", + "id": "1666", "name": "Game Lobby Role Picker Grid Component Emits should emit pickRole event when role element emits a pick role event." } ], @@ -234708,27 +235165,27 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescription.nuxt.spec.ts": { "tests": [ { - "id": "1664", + "id": "1667", "name": "Game Lobby Role Picker Description Component should match snapshot when rendered." }, { - "id": "1665", + "id": "1668", "name": "Game Lobby Role Picker Description Component Main Content should render no picked role container when picked role is not defined." }, { - "id": "1666", + "id": "1669", "name": "Game Lobby Role Picker Description Component Main Content should translate no picked role text when picked role is not defined." }, { - "id": "1667", + "id": "1670", "name": "Game Lobby Role Picker Description Component Main Content should render description content when picked role is defined." }, { - "id": "1668", + "id": "1671", "name": "Game Lobby Role Picker Description Component Main Content should initialize smooth scrolling when rendered." }, { - "id": "1669", + "id": "1672", "name": "Game Lobby Role Picker Description Component Main Content should scroll back to top when picked role is changed." } ], @@ -234737,19 +235194,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/CurrentPlayExpectedPlayersToAct/CurrentPlayExpectedPlayersToAct.nuxt.spec.ts": { "tests": [ { - "id": "1670", + "id": "1673", "name": "Current Play Expected Players To Act Component should match snapshot when rendered." }, { - "id": "1671", + "id": "1674", "name": "Current Play Expected Players To Act Component should not render the expected players to act when there is no current play." }, { - "id": "1672", + "id": "1675", "name": "Current Play Expected Players To Act Component should not render the expected players to act when there is no source players in current play." }, { - "id": "1673", + "id": "1676", "name": "Current Play Expected Players To Act Component should render the expected players to act when there is a current play." } ], @@ -234758,11 +235215,11 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyAdditionalCardsManager/GameLobbyAdditionalCardsManagerContent/GameLobbyAdditionalCardsManagerContent.spec.ts": { "tests": [ { - "id": "1674", + "id": "1677", "name": "Game Lobby Additional Cards Manager Component should match snapshot when rendered." }, { - "id": "1675", + "id": "1678", "name": "Game Lobby Additional Cards Manager Component Recipient Role Additional Cards Managers should render a recipient role additional cards manager for each recipient role present in the create game dto when render." } ], @@ -234771,11 +235228,11 @@ "tests/unit/specs/composables/api/game/game.class.spec.ts": { "tests": [ { - "id": "1676", + "id": "1679", "name": "Game Class create should create a game when called." }, { - "id": "1677", + "id": "1680", "name": "Game Class toJSON should return the JSON representation of the Game when called." } ], @@ -234784,31 +235241,31 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerHeader/GameLobbyRolePickerHeader.nuxt.spec.ts": { "tests": [ { - "id": "1678", + "id": "1681", "name": "Game Lobby Role Picker Header Component should match snapshot when rendered." }, { - "id": "1679", + "id": "1682", "name": "Game Lobby Role Picker Header Component Current Role should translate current role title when rendered." }, { - "id": "1680", + "id": "1683", "name": "Game Lobby Role Picker Header Component Current Role should translate current role when rendered." }, { - "id": "1681", + "id": "1684", "name": "Game Lobby Role Picker Header Component Current Role should translate no role text when player is not defined." }, { - "id": "1682", + "id": "1685", "name": "Game Lobby Role Picker Header Component Current Role should translate no role text when player doesn't have any role yet." }, { - "id": "1683", + "id": "1686", "name": "Game Lobby Role Picker Header Component Title should translate title when rendered." }, { - "id": "1684", + "id": "1687", "name": "Game Lobby Role Picker Header Component Title should translate title without player name when player is not defined." } ], @@ -234817,15 +235274,15 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecords.nuxt.spec.ts": { "tests": [ { - "id": "1685", + "id": "1688", "name": "Game Over History Records Component should match snapshot when rendered." }, { - "id": "1686", + "id": "1689", "name": "Game Over History Records Component Timeline should render game history records from store in record for each when rendered." }, { - "id": "1687", + "id": "1690", "name": "Game Over History Records Component Timeline should render game history records from stores in phase for each when rendered." } ], @@ -234834,23 +235291,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameThreeBrothersTurnStartsEvent/GameThreeBrothersTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1688", + "id": "1691", "name": "Game Three Brothers Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1689", + "id": "1692", "name": "Game Three Brothers Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1690", + "id": "1693", "name": "Game Three Brothers Turn Starts Event Component should play boys playing sound effect when rendered." }, { - "id": "1691", + "id": "1694", "name": "Game Three Brothers Turn Starts Event Component Game Event Texts should pass event texts when it's the first night." }, { - "id": "1692", + "id": "1695", "name": "Game Three Brothers Turn Starts Event Component Game Event Texts should pass event texts when it's not the first night." } ], @@ -234859,27 +235316,27 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterCountdown/GamePlaygroundFooterCountdownEllipseProgress/GamePlaygroundFooterCountdownEllipseProgress.nuxt.spec.ts": { "tests": [ { - "id": "1693", + "id": "1696", "name": "Game Playground Footer Countdown Ellipse Progress Component should match snapshot when rendered." }, { - "id": "1694", + "id": "1697", "name": "Game Playground Footer Countdown Ellipse Progress Component Progress should set progress to 50% when total is 100 and remaining is 50." }, { - "id": "1695", + "id": "1698", "name": "Game Playground Footer Countdown Ellipse Progress Component Progress 'should set color to red when total is…'" }, { - "id": "1696", + "id": "1699", "name": "Game Playground Footer Countdown Ellipse Progress Component Progress 'should set color to purple when total…'" }, { - "id": "1697", + "id": "1700", "name": "Game Playground Footer Countdown Ellipse Progress Component Progress 'should set color to light purple when…'" }, { - "id": "1698", + "id": "1701", "name": "Game Playground Footer Countdown Ellipse Progress Component Progress 'should set color to blue when total i…'" } ], @@ -234888,23 +235345,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameTwoSistersTurnStartsEvent/GameTwoSistersTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1699", + "id": "1702", "name": "Game Two Sisters Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1700", + "id": "1703", "name": "Game Two Sisters Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1701", + "id": "1704", "name": "Game Two Sisters Turn Starts Event Component should play girls playing sound effect when rendered." }, { - "id": "1702", + "id": "1705", "name": "Game Two Sisters Turn Starts Event Component Game Event Texts should pass event texts when it's the first night." }, { - "id": "1703", + "id": "1706", "name": "Game Two Sisters Turn Starts Event Component Game Event Texts should pass event texts when it's not the first night." } ], @@ -234913,39 +235370,39 @@ "tests/unit/specs/pages/index/index.nuxt.spec.ts": { "tests": [ { - "id": "1704", + "id": "1707", "name": "Index Page Component should match snapshot when rendered." }, { - "id": "1705", + "id": "1708", "name": "Index Page Component Title should display translated title when rendered." }, { - "id": "1706", + "id": "1709", "name": "Index Page Component Subtitle should translate subtitle when rendered." }, { - "id": "1707", + "id": "1710", "name": "Index Page Component Play button should display play button with translated label when rendered." }, { - "id": "1708", + "id": "1711", "name": "Index Page Component Play button Play Button Icon should not have animation class when not hovered." }, { - "id": "1709", + "id": "1712", "name": "Index Page Component Play button Play Button Icon should have animation class when hovered." }, { - "id": "1710", + "id": "1713", "name": "Index Page Component About button should display about button with translated label when rendered." }, { - "id": "1711", + "id": "1714", "name": "Index Page Component About button About Button Icon should not have animation class when not hovered." }, { - "id": "1712", + "id": "1715", "name": "Index Page Component About button About Button Icon should have animation class when hovered." } ], @@ -234954,23 +235411,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWolfHoundTurnStartsEvent/GameWolfHoundTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1713", + "id": "1716", "name": "Game Wolf Hound Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1714", + "id": "1717", "name": "Game Wolf Hound Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1715", + "id": "1718", "name": "Game Wolf Hound Turn Starts Event Component should play dog barking sound effect when rendered." }, { - "id": "1716", + "id": "1719", "name": "Game Wolf Hound Turn Starts Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1717", + "id": "1720", "name": "Game Wolf Hound Turn Starts Event Component Game Event Texts should pass event texts with random side when rendered when game option is active." } ], @@ -234979,19 +235436,19 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordDecision/GameOverHistoryRecordDecisionChosenSide/GameOverHistoryRecordDecisionChosenSide.nuxt.spec.ts": { "tests": [ { - "id": "1718", + "id": "1721", "name": "Game Over History Record Decision Chosen Side Component should match snapshot when rendered." }, { - "id": "1719", + "id": "1722", "name": "Game Over History Record Decision Chosen Side Component Chosen Side Text should render the chosen side text when rendered." }, { - "id": "1720", + "id": "1723", "name": "Game Over History Record Decision Chosen Side Component Chosen Side Icon should render the chosen werewolves side icon when rendered." }, { - "id": "1721", + "id": "1724", "name": "Game Over History Record Decision Chosen Side Component Chosen Side Icon should render the chosen villagers side icon when rendered." } ], @@ -235000,23 +235457,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWitchTurnStartsEvent/GameWitchTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1722", + "id": "1725", "name": "Game Witch Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1723", + "id": "1726", "name": "Game Witch Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1724", + "id": "1727", "name": "Game Witch Turn Starts Event Component should play witch laughing sound effect when rendered." }, { - "id": "1725", + "id": "1728", "name": "Game Witch Turn Starts Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1726", + "id": "1729", "name": "Game Witch Turn Starts Event Component Game Event Texts should pass event texts with game master disclaimer when game's turn is not 1." } ], @@ -235025,31 +235482,31 @@ "tests/unit/specs/components/shared/game/game-options/GameOptionInputGroup/GameOptionInputGroup.nuxt.spec.ts": { "tests": [ { - "id": "1727", + "id": "1730", "name": "Game Option Input Group Component should match snapshot when rendered." }, { - "id": "1728", + "id": "1731", "name": "Game Option Input Group Component Label Icon should pass the icon name from props to the label icon when rendered." }, { - "id": "1729", + "id": "1732", "name": "Game Option Input Group Component Label Icon should pass the icon class from props to the label icon when rendered." }, { - "id": "1730", + "id": "1733", "name": "Game Option Input Group Component Label Text should pass the label text from props to the label text when rendered." }, { - "id": "1731", + "id": "1734", "name": "Game Option Input Group Component Description should pass the description text from props to the description when rendered." }, { - "id": "1732", + "id": "1735", "name": "Game Option Input Group Component Bottom Divider should not render the bottom divider when doesHaveBottomDivider prop is not provided." }, { - "id": "1733", + "id": "1736", "name": "Game Option Input Group Component Bottom Divider should render the bottom divider when doesHaveBottomDivider prop is provided as true." } ], @@ -235058,23 +235515,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameSeerTurnStartsEvent/GameSeerTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1734", + "id": "1737", "name": "Game Seer Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1735", + "id": "1738", "name": "Game Seer Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1736", + "id": "1739", "name": "Game Seer Turn Starts Event Component should play mystical mood sound effect when rendered." }, { - "id": "1737", + "id": "1740", "name": "Game Seer Turn Starts Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1738", + "id": "1741", "name": "Game Seer Turn Starts Event Component Game Event Texts should pass event texts with seer can see side of the player when the option is activated." } ], @@ -235083,23 +235540,23 @@ "tests/unit/specs/composables/prime-vue/usePrimeVueToasts.spec.ts": { "tests": [ { - "id": "1739", + "id": "1742", "name": "Use Prime Vue Toasts Composable addToast should add a toast with default options when called." }, { - "id": "1740", + "id": "1743", "name": "Use Prime Vue Toasts Composable addSuccessToast should add a success toast with default options when called." }, { - "id": "1741", + "id": "1744", "name": "Use Prime Vue Toasts Composable addInfoToast should add an info toast with default options when called." }, { - "id": "1742", + "id": "1745", "name": "Use Prime Vue Toasts Composable addWarnToast should add a warn toast with default options when called." }, { - "id": "1743", + "id": "1746", "name": "Use Prime Vue Toasts Composable addErrorToast should add an error toast with default options when called." } ], @@ -235108,31 +235565,31 @@ "tests/unit/specs/error.nuxt.spec.ts": { "tests": [ { - "id": "1744", + "id": "1747", "name": "Error Component should match snapshot when rendered." }, { - "id": "1745", + "id": "1748", "name": "Error Component Error Title should set head title of error title when rendered." }, { - "id": "1746", + "id": "1749", "name": "Error Component Error Title should render page not found title when error status code is 404." }, { - "id": "1747", + "id": "1750", "name": "Error Component Error Title should render unexpected error title when error status code is not 404." }, { - "id": "1748", + "id": "1751", "name": "Error Component Lottie Error should set size to lottie when rendered." }, { - "id": "1749", + "id": "1752", "name": "Error Component Error description should render page not found description when error status code is 404." }, { - "id": "1750", + "id": "1753", "name": "Error Component Error description should render unexpected error description when error status code is not 404." } ], @@ -235141,15 +235598,15 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordIcon/GameOverHistoryRecordIcon.nuxt.spec.ts": { "tests": [ { - "id": "1751", + "id": "1754", "name": "Game Over History Record Icon Component should match snapshot when rendered." }, { - "id": "1752", + "id": "1755", "name": "Game Over History Record Icon Component Icon should display the game history record icon when rendered." }, { - "id": "1753", + "id": "1756", "name": "Game Over History Record Icon Component Icon should return question mark icon when the game history record icon is not found." } ], @@ -235158,23 +235615,23 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlaying.nuxt.spec.ts": { "tests": [ { - "id": "1754", + "id": "1757", "name": "Game Playing Component should match snapshot when rendered." }, { - "id": "1755", + "id": "1758", "name": "Game Playing Component should play random game phase background audio when rendered." }, { - "id": "1756", + "id": "1759", "name": "Game Playing Component Game Events Monitor should not render game events monitor when there is no current game event." }, { - "id": "1757", + "id": "1760", "name": "Game Playing Component Game Events Monitor should render game events monitor when there is a current game event." }, { - "id": "1758", + "id": "1761", "name": "Game Playing Component Unmount should fade out playing background audio when unmounted." } ], @@ -235183,31 +235640,31 @@ "tests/unit/specs/components/shared/role/RoleTypeBadge/RoleTypeBadge.nuxt.spec.ts": { "tests": [ { - "id": "1759", + "id": "1762", "name": "Role Type Badge Component should match snapshot when rendered." }, { - "id": "1760", + "id": "1763", "name": "Role Type Badge Component Badge should have tooltip when rendered." }, { - "id": "1761", + "id": "1764", "name": "Role Type Badge Component Badge should translate role type when rendered." }, { - "id": "1762", + "id": "1765", "name": "Role Type Badge Component Badge 'should have severity of danger when r…'" }, { - "id": "1763", + "id": "1766", "name": "Role Type Badge Component Badge 'should have severity of success when …'" }, { - "id": "1764", + "id": "1767", "name": "Role Type Badge Component Badge 'should have severity of warning when …'" }, { - "id": "1765", + "id": "1768", "name": "Role Type Badge Component Badge 'should have severity of info when rol…'" } ], @@ -235216,27 +235673,27 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverActions/GameOverActions.nuxt.spec.ts": { "tests": [ { - "id": "1766", + "id": "1769", "name": "Game Over Actions Component should match snapshot when rendered." }, { - "id": "1767", + "id": "1770", "name": "Game Over Actions Component should match snapshot when rendered without shallowing." }, { - "id": "1768", + "id": "1771", "name": "Game Over Actions Component Show Game History Button should be in loading state when the game history is empty." }, { - "id": "1769", + "id": "1772", "name": "Game Over Actions Component Show Game History Button should translate loading show game history button text when the game history is empty." }, { - "id": "1770", + "id": "1773", "name": "Game Over Actions Component Show Game History Button should translate show game history button text when the game history records have been fetched." }, { - "id": "1771", + "id": "1774", "name": "Game Over Actions Component Emits should emit show game history event when the show game history button is clicked." } ], @@ -235245,19 +235702,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameCupidHasCharmedEvent/GameCupidHasCharmedEvent.nuxt.spec.ts": { "tests": [ { - "id": "1772", + "id": "1775", "name": "Game Cupid Has Charmed Event Component should match snapshot when rendered." }, { - "id": "1773", + "id": "1776", "name": "Game Cupid Has Charmed Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1774", + "id": "1777", "name": "Game Cupid Has Charmed Event Component Game Event Texts should pass event texts when rendered." }, { - "id": "1775", + "id": "1778", "name": "Game Cupid Has Charmed Event Component Sound Effect should play love arrow shot sound effect when rendered." } ], @@ -235266,23 +235723,23 @@ "tests/unit/specs/components/shared/game/game-event/GameEventWithTexts/GameEventWithTexts.nuxt.spec.ts": { "tests": [ { - "id": "1776", + "id": "1779", "name": "Game Event With Texts Component should match snapshot when rendered." }, { - "id": "1777", + "id": "1780", "name": "Game Event With Texts Component should match snapshot without shallow when rendered." }, { - "id": "1778", + "id": "1781", "name": "Game Event With Texts Component Game Event Texts Manager should pass texts from props when rendered." }, { - "id": "1779", + "id": "1782", "name": "Game Event With Texts Component Emits should emit game event text change when game event texts manager emits the same event." }, { - "id": "1780", + "id": "1783", "name": "Game Event With Texts Component Emits should not emit game event text change when text is undefined." } ], @@ -235291,27 +235748,27 @@ "tests/unit/specs/components/pages/about/AboutAvailableRoles/AboutAvailableRoleDescription/AboutAvailableRoleDescription.nuxt.spec.ts": { "tests": [ { - "id": "1781", + "id": "1784", "name": "About Available Role Description Component should match snapshot when rendered." }, { - "id": "1782", + "id": "1785", "name": "About Available Role Description Component Role Left Description Role Image should display role image when rendered." }, { - "id": "1783", + "id": "1786", "name": "About Available Role Description Component Role Left Description Role Image should display role image with correct alt when rendered." }, { - "id": "1784", + "id": "1787", "name": "About Available Role Description Component Role Left Description should display role name when rendered." }, { - "id": "1785", + "id": "1788", "name": "About Available Role Description Component Role Left Description should display role type badge when rendered." }, { - "id": "1786", + "id": "1789", "name": "About Available Role Description Component Role Left Description should display role origin badge when rendered." } ], @@ -235320,31 +235777,31 @@ "tests/unit/specs/components/shared/game/game-phase/GamePhaseIcon/GamePhaseIcon.nuxt.spec.ts": { "tests": [ { - "id": "1787", + "id": "1790", "name": "Game Phase Icon Component should match snapshot when rendered." }, { - "id": "1788", + "id": "1791", "name": "Game Phase Icon Component Icon should set icon to moon when phase is night." }, { - "id": "1789", + "id": "1792", "name": "Game Phase Icon Component Icon should set icon to sun when phase is day." }, { - "id": "1790", + "id": "1793", "name": "Game Phase Icon Component Icon should set icon to sunset when phase is twilight." }, { - "id": "1791", + "id": "1794", "name": "Game Phase Icon Component Icon classes should display the night icon when the phase is night." }, { - "id": "1792", + "id": "1795", "name": "Game Phase Icon Component Icon classes should display the sun icon when the phase is day." }, { - "id": "1793", + "id": "1796", "name": "Game Phase Icon Component Icon classes should display the twilight icon when the phase is twilight." } ], @@ -235353,27 +235810,27 @@ "tests/unit/specs/components/pages/about/AboutWerewolvesGame/AboutWerewolvesGame.nuxt.spec.ts": { "tests": [ { - "id": "1794", + "id": "1797", "name": "About Werewolves Game Component should match snapshot when rendered." }, { - "id": "1795", + "id": "1798", "name": "About Werewolves Game Component Title should display translated title when rendered." }, { - "id": "1796", + "id": "1799", "name": "About Werewolves Game Component Watch tutorial on Youtube Anchor should have tooltip when rendered." }, { - "id": "1797", + "id": "1800", "name": "About Werewolves Game Component Watch tutorial on Youtube Anchor should have translated button when rendered." }, { - "id": "1798", + "id": "1801", "name": "About Werewolves Game Component Sections should translate first section when rendered." }, { - "id": "1799", + "id": "1802", "name": "About Werewolves Game Component Sections should translate second section when rendered." } ], @@ -235382,31 +235839,31 @@ "tests/unit/specs/components/pages/about/AboutCreator/AboutCreator.nuxt.spec.ts": { "tests": [ { - "id": "1800", + "id": "1803", "name": "About Creator Component should match snapshot when rendered." }, { - "id": "1801", + "id": "1804", "name": "About Creator Component Title should translate title when rendered." }, { - "id": "1802", + "id": "1805", "name": "About Creator Component Sections should translate first section when rendered." }, { - "id": "1803", + "id": "1806", "name": "About Creator Component Sections should translate portfolio button when rendered." }, { - "id": "1804", + "id": "1807", "name": "About Creator Component Sections should translate second section when rendered." }, { - "id": "1805", + "id": "1808", "name": "About Creator Component Sections should translate third section when rendered." }, { - "id": "1806", + "id": "1809", "name": "About Creator Component Sections should translate fourth section when rendered." } ], @@ -235415,19 +235872,19 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyPositionCoordinator/GameLobbyPositionCoordinatorSorter/GameLobbyPositionCoordinatorSorterElement/GameLobbyPositionCoordinatorSorterElement.nuxt.spec.ts": { "tests": [ { - "id": "1807", + "id": "1810", "name": "Game Lobby Position Coordinator Sorter Element Component should match snapshot when rendered." }, { - "id": "1808", + "id": "1811", "name": "Game Lobby Position Coordinator Sorter Element Component Player Square should set background color to square depending on player name when rendered." }, { - "id": "1809", + "id": "1812", "name": "Game Lobby Position Coordinator Sorter Element Component Role Image should set player role name to role image when rendered." }, { - "id": "1810", + "id": "1813", "name": "Game Lobby Position Coordinator Sorter Element Component Player Name should set player name to player name text when rendered." } ], @@ -235436,19 +235893,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScandalmongerTurnStartsEvent/GameScandalmongerTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1811", + "id": "1814", "name": "Game Scandalmonger Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1812", + "id": "1815", "name": "Game Scandalmonger Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1813", + "id": "1816", "name": "Game Scandalmonger Turn Starts Event Component should play raven cry sound effect when rendered." }, { - "id": "1814", + "id": "1817", "name": "Game Scandalmonger Turn Starts Event Component Game Event Texts should pass event texts when rendered." } ], @@ -235457,19 +235914,19 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverWinners/GameOverWinners.nuxt.spec.ts": { "tests": [ { - "id": "1815", + "id": "1818", "name": "Game Over Winners Component should match snapshot when rendered." }, { - "id": "1816", + "id": "1819", "name": "Game Over Winners Component Players Horizontal List should display players horizontal list when there are winners." }, { - "id": "1817", + "id": "1820", "name": "Game Over Winners Component Players Horizontal List should not display players horizontal list when there is no victory." }, { - "id": "1818", + "id": "1821", "name": "Game Over Winners Component Players Horizontal List should not display players horizontal list when there are no winners." } ], @@ -235478,19 +235935,19 @@ "tests/unit/specs/composables/api/game/useGamePlayers.spec.ts": { "tests": [ { - "id": "1819", + "id": "1822", "name": "Use Game Players Composable sheriffInPlayers should return sheriff player when sheriff is in players." }, { - "id": "1820", + "id": "1823", "name": "Use Game Players Composable sheriffInPlayers should return undefined when sheriff is not in players." }, { - "id": "1821", + "id": "1824", "name": "Use Game Players Composable getPlayersWithCurrentRole should return players with current role when called." }, { - "id": "1822", + "id": "1825", "name": "Use Game Players Composable getPlayersWithCurrentRole should return empty array when no player with current role." } ], @@ -235499,27 +235956,27 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogPlayersReady/GameLobbyStartGameConfirmDialogPlayersReady.nuxt.spec.ts": { "tests": [ { - "id": "1823", + "id": "1826", "name": "Game Lobby Start Game Confirm Dialog Players Ready Component should match snapshot when rendered." }, { - "id": "1824", + "id": "1827", "name": "Game Lobby Start Game Confirm Dialog Players Ready Component Step Svgs should set size to villager svg when rendered." }, { - "id": "1825", + "id": "1828", "name": "Game Lobby Start Game Confirm Dialog Players Ready Component Step Svgs should set source to villager svg when rendered." }, { - "id": "1826", + "id": "1829", "name": "Game Lobby Start Game Confirm Dialog Players Ready Component Step Svgs should set size to werewolf svg when rendered." }, { - "id": "1827", + "id": "1830", "name": "Game Lobby Start Game Confirm Dialog Players Ready Component Step Svgs should set source to werewolf svg when rendered." }, { - "id": "1828", + "id": "1831", "name": "Game Lobby Start Game Confirm Dialog Players Ready Component Text should translate text when rendered." } ], @@ -235528,23 +235985,23 @@ "tests/unit/specs/components/pages/about/AboutHowToContribute/AboutHowToContribute.nuxt.spec.ts": { "tests": [ { - "id": "1829", + "id": "1832", "name": "About How To Contribute Component should match snapshot when rendered." }, { - "id": "1830", + "id": "1833", "name": "About How To Contribute Component Title should translate title when rendered." }, { - "id": "1831", + "id": "1834", "name": "About How To Contribute Component Sections should translate first section when rendered." }, { - "id": "1832", + "id": "1835", "name": "About How To Contribute Component Sections should translate second section for each bullet item when rendered." }, { - "id": "1833", + "id": "1836", "name": "About How To Contribute Component Sections should translate gitHub text button when rendered." } ], @@ -235553,15 +236010,15 @@ "tests/unit/specs/components/shared/role/RoleDescriptionLines/RoleDescriptionLines.nuxt.spec.ts": { "tests": [ { - "id": "1834", + "id": "1837", "name": "Role Description Lines Component should match snapshot when rendered." }, { - "id": "1835", + "id": "1838", "name": "Role Description Lines Component Description Lines should display role description lines when rendered." }, { - "id": "1836", + "id": "1839", "name": "Role Description Lines Component Description Lines should not display role description lines when rendered if role description is not set in messages." } ], @@ -235570,27 +236027,27 @@ "tests/unit/specs/composables/animate-css/useAnimateCss.spec.ts": { "tests": [ { - "id": "1837", + "id": "1840", "name": "Use Animate Css Composable animateElementOnce should not add animate__animated and animate__bounce classes to element when element is not a ref and null." }, { - "id": "1838", + "id": "1841", "name": "Use Animate Css Composable animateElementOnce should not add animate__animated and animate__bounce classes to ref element when element ref and value is null." }, { - "id": "1839", + "id": "1842", "name": "Use Animate Css Composable animateElementOnce should add animate__animated and animate__bounce classes to element when called." }, { - "id": "1840", + "id": "1843", "name": "Use Animate Css Composable animateElementOnce should add animate__animated and animate__bounce classes to ref element when called." }, { - "id": "1841", + "id": "1844", "name": "Use Animate Css Composable animateElementOnce should remove animate__animated and animate__bounce classes from ref element when animation ends." }, { - "id": "1842", + "id": "1845", "name": "Use Animate Css Composable animateElementOnce should add event listener to ref element when called." } ], @@ -235599,19 +236056,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GamePiedPiperTurnStartsEvent/GamePiedPiperTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1843", + "id": "1846", "name": "Game Pied Piper Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1844", + "id": "1847", "name": "Game Pied Piper Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1845", + "id": "1848", "name": "Game Pied Piper Turn Starts Event Component should play flute and drums sound effect when rendered." }, { - "id": "1846", + "id": "1849", "name": "Game Pied Piper Turn Starts Event Component Game Event Texts should pass event texts when rendered." } ], @@ -235620,7 +236077,7 @@ "tests/unit/specs/composables/api/game/game-history-record/game-history-record-play/game-history-record-play.class.spec.ts": { "tests": [ { - "id": "1847", + "id": "1850", "name": "Game History Record Play Class Create should create a game history record play when called." } ], @@ -235629,15 +236086,15 @@ "tests/unit/specs/stores/game/game-history-record/useGameHistoryRecordsStore.spec.ts": { "tests": [ { - "id": "1848", + "id": "1851", "name": "Game History Records Store should have initial state when created." }, { - "id": "1849", + "id": "1852", "name": "Game History Records Store fetchAndSetGameHistoryRecords should fetch game history records when called." }, { - "id": "1850", + "id": "1853", "name": "Game History Records Store fetchAndSetGameHistoryRecords should set game history records when called." } ], @@ -235646,15 +236103,15 @@ "tests/unit/specs/components/shared/game/game-event/GameEventFlippingPlayersCard/GameEventFlippingPlayersCard.nuxt.spec.ts": { "tests": [ { - "id": "1851", + "id": "1854", "name": "Game Event Flipping Players Card Component should match snapshot when rendered." }, { - "id": "1852", + "id": "1855", "name": "Game Event Flipping Players Card Component Game Event Flipping Card should pass players when players are defined." }, { - "id": "1853", + "id": "1856", "name": "Game Event Flipping Players Card Component Game Event Flipping Card should pass empty array when players are undefined." } ], @@ -235663,23 +236120,23 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyFooter/GameLobbyFooter.nuxt.spec.ts": { "tests": [ { - "id": "1854", + "id": "1857", "name": "Game Lobby Footer Component should match snapshot when rendered." }, { - "id": "1855", + "id": "1858", "name": "Game Lobby Footer Component Game Lobby Start Game Button should emit reject players position step when game lobby start game button emits the same." }, { - "id": "1856", + "id": "1859", "name": "Game Lobby Footer Component Game Lobby Start Game Button should emit reject thief position step when game lobby start game button emits the same." }, { - "id": "1857", + "id": "1860", "name": "Game Lobby Footer Component Game Lobby Start Game Button should emit reject actor position step when game lobby start game button emits the same." }, { - "id": "1858", + "id": "1861", "name": "Game Lobby Footer Component Game Lobby Start Game Button should emit reject game options changed step when game lobby start game button emits the same." } ], @@ -235688,19 +236145,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent/GameAccursedWolfFatherTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1859", + "id": "1862", "name": "Game Accursed Wolf-Father Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1860", + "id": "1863", "name": "Game Accursed Wolf-Father Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1861", + "id": "1864", "name": "Game Accursed Wolf-Father Turn Starts Event Component should play werewolf transformation sound effect when rendered." }, { - "id": "1862", + "id": "1865", "name": "Game Accursed Wolf-Father Turn Starts Event Component Game Starts Turn Event Texts should pass event texts when rendered." } ], @@ -235709,19 +236166,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameStutteringJudgeTurnStartsEvent/GameStutteringJudgeTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1863", + "id": "1866", "name": "Game Stuttering Judge Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1864", + "id": "1867", "name": "Game Stuttering Judge Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1865", + "id": "1868", "name": "Game Stuttering Judge Turn Starts Event Component should play gavel hitting sound effect when rendered." }, { - "id": "1866", + "id": "1869", "name": "Game Stuttering Judge Turn Starts Event Component Game Stuttering Judge Turn Starts Event Texts should pass event texts when rendered." } ], @@ -235730,7 +236187,7 @@ "tests/unit/specs/composables/api/game/game-history-record/game-history-record.class.spec.ts": { "tests": [ { - "id": "1867", + "id": "1870", "name": "Game History Record Class Create should create a game history record when called." } ], @@ -235739,23 +236196,23 @@ "tests/unit/specs/components/shared/role/RoleSideBadge/RoleSideBadge.nuxt.spec.ts": { "tests": [ { - "id": "1868", + "id": "1871", "name": "Role Side Badge Component should match snapshot when rendered." }, { - "id": "1869", + "id": "1872", "name": "Role Side Badge Component Badge should translate role side when side is villagers." }, { - "id": "1870", + "id": "1873", "name": "Role Side Badge Component Badge should translate role side when side is werewolves." }, { - "id": "1871", + "id": "1874", "name": "Role Side Badge Component Badge should set severity to success when side is villagers." }, { - "id": "1872", + "id": "1875", "name": "Role Side Badge Component Badge should set severity to danger when side is werewolves." } ], @@ -235764,15 +236221,15 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeaderPhase/GamePlaygroundHeaderPhase.nuxt.spec.ts": { "tests": [ { - "id": "1873", + "id": "1876", "name": "Game Playground Header Phase should match snapshot when rendered." }, { - "id": "1874", + "id": "1877", "name": "Game Playground Header Phase Phase text should display night phase text with the turn number when the phase is night." }, { - "id": "1875", + "id": "1878", "name": "Game Playground Header Phase Phase text should display day phase text with the turn number when the phase is day." } ], @@ -235781,19 +236238,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWildChildTurnStartsEvent/GameWildChildTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1876", + "id": "1879", "name": "Game Wild Child Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1877", + "id": "1880", "name": "Game Wild Child Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1878", + "id": "1881", "name": "Game Wild Child Turn Starts Event Component should play monkey cry sound effect when rendered." }, { - "id": "1879", + "id": "1882", "name": "Game Wild Child Turn Starts Event Component Game Event Texts should pass event texts when rendered." } ], @@ -235802,19 +236259,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent/GameWhiteWerewolfTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1880", + "id": "1883", "name": "Game White Werewolf Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1881", + "id": "1884", "name": "Game White Werewolf Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1882", + "id": "1885", "name": "Game White Werewolf Turn Starts Event Component should play werewolf growling sound effect when rendered." }, { - "id": "1883", + "id": "1886", "name": "Game White Werewolf Turn Starts Event Component Game Event Texts should pass event texts when rendered." } ], @@ -235823,11 +236280,11 @@ "tests/unit/specs/composables/api/error/useWerewolvesAssistantApiError.spec.ts": { "tests": [ { - "id": "1884", + "id": "1887", "name": "Use Werewolves Assistant Api Error Composable handleWerewolvesAssistantApiError should log error in console when called." }, { - "id": "1885", + "id": "1888", "name": "Use Werewolves Assistant Api Error Composable handleWerewolvesAssistantApiError should add error toast when called." } ], @@ -235836,19 +236293,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameActorTurnStartsEvent/GameActorTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1886", + "id": "1889", "name": "Game Actor Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1887", + "id": "1890", "name": "Game Actor Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1888", + "id": "1891", "name": "Game Actor Turn Starts Event Component Sound Effect should play laughing clown exploding sound effect when rendered." }, { - "id": "1889", + "id": "1892", "name": "Game Actor Turn Starts Event Component Game Event Texts should pass event texts when rendered." } ], @@ -235857,19 +236314,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameScapegoatTurnStartsEvent/GameScapegoatTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1890", + "id": "1893", "name": "Game Scapegoat Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1891", + "id": "1894", "name": "Game Scapegoat Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1892", + "id": "1895", "name": "Game Scapegoat Turn Starts Event Component should play goat cry sound effect when rendered." }, { - "id": "1893", + "id": "1896", "name": "Game Scapegoat Turn Starts Event Component Game Starts Event Texts should pass event texts when rendered." } ], @@ -235878,11 +236335,11 @@ "tests/unit/specs/components/shared/game/player/PlayersHorizontalList/PlayersHorizontalList.nuxt.spec.ts": { "tests": [ { - "id": "1894", + "id": "1897", "name": "Players Horizontal List Component should match snapshot when rendered." }, { - "id": "1895", + "id": "1898", "name": "Players Horizontal List Component Players should render the expected players to act when rendered." } ], @@ -235891,15 +236348,15 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderPositionCoordinatorButton/GameLobbyHeaderPositionCoordinatorButton.nuxt.spec.ts": { "tests": [ { - "id": "1896", + "id": "1899", "name": "Game Lobby Header Position Coordinator Button Component should match snapshot when rendered." }, { - "id": "1897", + "id": "1900", "name": "Game Lobby Header Position Coordinator Button Component Position Coordinator button should translate button label when rendered." }, { - "id": "1898", + "id": "1901", "name": "Game Lobby Header Position Coordinator Button Component Position Coordinator button Click on button should emit 'positionCoordinatorButtonClick' event when clicked." } ], @@ -235908,19 +236365,19 @@ "tests/unit/specs/components/shared/dialogs/DialogHeaderTitleOnly/DialogHeaderTitleOnly.nuxt.spec.ts": { "tests": [ { - "id": "1899", + "id": "1902", "name": "Dialog Header Title Only Component should match snapshot when rendered." }, { - "id": "1900", + "id": "1903", "name": "Dialog Header Title Only Component Title should render icon when icon is set in props." }, { - "id": "1901", + "id": "1904", "name": "Dialog Header Title Only Component Title should render icon classes when icon classes are set in props." }, { - "id": "1902", + "id": "1905", "name": "Dialog Header Title Only Component Title should set title text when rendered." } ], @@ -235929,19 +236386,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameHunterTurnStartsEvent/GameHunterTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1903", + "id": "1906", "name": "Game Hunter Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1904", + "id": "1907", "name": "Game Hunter Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1905", + "id": "1908", "name": "Game Hunter Turn Starts Event Component should play gun shot sound effect when rendered." }, { - "id": "1906", + "id": "1909", "name": "Game Hunter Turn Starts Event Component Game Event Texts should pass event texts when rendered." } ], @@ -235950,19 +236407,19 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitorCurrentEvent/GameTurnStartsEvent/GameFoxTurnStartsEvent/GameFoxTurnStartsEvent.nuxt.spec.ts": { "tests": [ { - "id": "1907", + "id": "1910", "name": "Game Fox Turn Starts Event Component should match snapshot when rendered." }, { - "id": "1908", + "id": "1911", "name": "Game Fox Turn Starts Event Component should match snapshot when rendered without shallow rendering." }, { - "id": "1909", + "id": "1912", "name": "Game Fox Turn Starts Event Component should play fox sniffing sound effect when rendered." }, { - "id": "1910", + "id": "1913", "name": "Game Fox Turn Starts Event Component Game Event Texts should pass event texts when rendered." } ], @@ -235971,23 +236428,23 @@ "tests/unit/specs/app.nuxt.spec.ts": { "tests": [ { - "id": "1911", + "id": "1914", "name": "App Component should match snapshot when rendered." }, { - "id": "1912", + "id": "1915", "name": "App Component should render component without shallow and match snapshot when rendered." }, { - "id": "1913", + "id": "1916", "name": "App Component should set head title and meta tags when rendered." }, { - "id": "1914", + "id": "1917", "name": "App Component should fetch and set roles from store when rendered." }, { - "id": "1915", + "id": "1918", "name": "App Component should set howler audio settings from audio store when rendered." } ], @@ -235996,19 +236453,19 @@ "tests/unit/specs/components/shared/buttons/AffirmativeToggleButton/AffirmativeToggleButton.nuxt.spec.ts": { "tests": [ { - "id": "1916", + "id": "1919", "name": "Affirmative Toggle Button Component should match snapshot when rendered." }, { - "id": "1917", + "id": "1920", "name": "Affirmative Toggle Button Component Toggle Button should pass v-model value to the toggle button when rendered." }, { - "id": "1918", + "id": "1921", "name": "Affirmative Toggle Button Component Toggle Button should change v-model value when toggle button emits input event." }, { - "id": "1919", + "id": "1922", "name": "Affirmative Toggle Button Component Toggle Button should translate no label when rendered." } ], @@ -236017,11 +236474,11 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyRolePicker/GameLobbyRolePickerDescription/GameLobbyRolePickerDescriptionContent/GameLobbyRolePickerDescriptionContent.nuxt.spec.ts": { "tests": [ { - "id": "1920", + "id": "1923", "name": "Game Lobby Role Picker Description Content Component should match snapshot when rendered." }, { - "id": "1921", + "id": "1924", "name": "Game Lobby Role Picker Description Content Component Role Name should translate role name when rendered." } ], @@ -236030,15 +236487,15 @@ "tests/unit/specs/components/shared/role/RoleOriginBadge/RoleOriginBadge.nuxt.spec.ts": { "tests": [ { - "id": "1922", + "id": "1925", "name": "Role Origin Badge Component should match snapshot when rendered." }, { - "id": "1923", + "id": "1926", "name": "Role Origin Badge Component Badge should have tooltip when rendered." }, { - "id": "1924", + "id": "1927", "name": "Role Origin Badge Component Badge should translate role origin when rendered." } ], @@ -236047,11 +236504,11 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundFooter/GamePlaygroundFooterCountdown/GamePlaygroundFooterCountdownRemainingTime/GamePlaygroundFooterCountdownRemainingTime.nuxt.spec.ts": { "tests": [ { - "id": "1925", + "id": "1928", "name": "Game Playground Footer Countdown Remaining Time Component should match snapshot when rendered." }, { - "id": "1926", + "id": "1929", "name": "Game Playground Footer Countdown Remaining Time Component Remaining time should display remaining time with padded seconds when rendered." } ], @@ -236060,19 +236517,19 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubTabView.nuxt.spec.ts": { "tests": [ { - "id": "1927", + "id": "1930", "name": "Game Lobby Options Hub Tab View Component should match snapshot when rendered." }, { - "id": "1928", + "id": "1931", "name": "Game Lobby Options Hub Tab View Component Role Tab Panel should translate role tab panel title when rendered." }, { - "id": "1929", + "id": "1932", "name": "Game Lobby Options Hub Tab View Component Composition Tab Panel should translate composition tab panel title when rendered." }, { - "id": "1930", + "id": "1933", "name": "Game Lobby Options Hub Tab View Component Votes Tab Panel should translate votes tab panel title when rendered." } ], @@ -236081,15 +236538,15 @@ "tests/unit/specs/components/shared/game/game-options/GameOptionRoleLegend/GameOptionRoleLegend.nuxt.spec.ts": { "tests": [ { - "id": "1931", + "id": "1934", "name": "Game Option Role Legend Component should match snapshot when rendered." }, { - "id": "1932", + "id": "1935", "name": "Game Option Role Legend Component Role Image should pass the role name in props to role image component when rendered." }, { - "id": "1933", + "id": "1936", "name": "Game Option Role Legend Component Title should translate title as role name when rendered." } ], @@ -236098,11 +236555,11 @@ "tests/unit/specs/composables/api/game/dto/create-game/create-game.dto.spec.ts": { "tests": [ { - "id": "1934", + "id": "1937", "name": "Create Game Dto create should create a game when called." }, { - "id": "1935", + "id": "1938", "name": "Create Game Dto toJSON should return the JSON representation of the CreateGameDto when called." } ], @@ -236111,15 +236568,15 @@ "tests/unit/specs/components/shared/misc/OverflowTag/OverflowTag.nuxt.spec.ts": { "tests": [ { - "id": "1936", + "id": "1939", "name": "Overflow Tag Component should match snapshot when rendered." }, { - "id": "1937", + "id": "1940", "name": "Overflow Tag Component Overflow Tag should display the overflow number when the entities count is greater than the maximum entities displayed." }, { - "id": "1938", + "id": "1941", "name": "Overflow Tag Component Overflow Tag should not display the overflow number when the entities count is less than or equal to the maximum entities displayed." } ], @@ -236128,7 +236585,7 @@ "tests/unit/specs/components/pages/game/GameOver/GameOverHistory/GameOverHistoryRecords/GameOverHistoryRecord/GameOverHistoryRecordPhase/GameOverHistoryRecordPhase.nuxt.spec.ts": { "tests": [ { - "id": "1939", + "id": "1942", "name": "Game Over History Record Phase Component should match snapshot when rendered." } ], @@ -236137,15 +236594,15 @@ "tests/unit/specs/components/shared/dialogs/DialogFooterCloseButtonOnly/DialogFooterCloseButtonOnly.nuxt.spec.ts": { "tests": [ { - "id": "1940", + "id": "1943", "name": "Dialog Footer Close Button Only Component should match snapshot when rendered." }, { - "id": "1941", + "id": "1944", "name": "Dialog Footer Close Button Only Component Close Button should translate close button when rendered." }, { - "id": "1942", + "id": "1945", "name": "Dialog Footer Close Button Only Component Close Button should emit close event when close button is clicked." } ], @@ -236154,15 +236611,15 @@ "tests/unit/specs/components/shared/external/GitHubRepositoryButton/GitHubRepositoryButton.nuxt.spec.ts": { "tests": [ { - "id": "1943", + "id": "1946", "name": "GitHub Repository Button should match snapshot when rendered." }, { - "id": "1944", + "id": "1947", "name": "GitHub Repository Button Button Text should render button text with other text when text is passed as prop." }, { - "id": "1945", + "id": "1948", "name": "GitHub Repository Button Button Text should render button text with default text when text is not passed as prop." } ], @@ -236171,7 +236628,7 @@ "tests/unit/specs/composables/api/game/useFetchRandomGameComposition.spec.ts": { "tests": [ { - "id": "1946", + "id": "1949", "name": "Use Fetch Random Game Composition fetchRandomGameComposition should fetch random game composition when called." } ], @@ -236180,11 +236637,11 @@ "tests/unit/specs/composables/api/game/game-history-record/useFetchGameHistoryRecords.spec.ts": { "tests": [ { - "id": "1947", + "id": "1950", "name": "Use Fetch Game History Records getGameHistoryRecords should get game history records when called." }, { - "id": "1948", + "id": "1951", "name": "Use Fetch Game History Records getGameHistoryRecords should return null when an error is thrown." } ], @@ -236193,15 +236650,15 @@ "tests/unit/specs/components/shared/role/RoleImage/RoleFlippingImage/RoleFlippingImageSvgIcon/RoleFlippingImageSvgIcon.nuxt.spec.ts": { "tests": [ { - "id": "1949", + "id": "1952", "name": "Role Flipping Image Svg Icon Component should match snapshot when rendered." }, { - "id": "1950", + "id": "1953", "name": "Role Flipping Image Svg Icon Component Size should set height to 75 when rendered." }, { - "id": "1951", + "id": "1954", "name": "Role Flipping Image Svg Icon Component Size should set width to 75 when rendered." } ], @@ -236210,11 +236667,11 @@ "tests/unit/specs/composables/api/game/useGameSource.spec.ts": { "tests": [ { - "id": "1952", + "id": "1955", "name": "Use Game Source Composable getDefiniteGameSourceNameLabel 'should translate game source when cal…'" }, { - "id": "1953", + "id": "1956", "name": "Use Game Source Composable getDefiniteGameSourceNameLabel 'should translate definite role name w…'" } ], @@ -236223,19 +236680,19 @@ "tests/unit/specs/pages/about/about.nuxt.spec.ts": { "tests": [ { - "id": "1954", + "id": "1957", "name": "About Page Component should match snapshot when rendered." }, { - "id": "1955", + "id": "1958", "name": "About Page Component should set head title and meta tags when rendered." }, { - "id": "1956", + "id": "1959", "name": "About Page Component Title should display role image of werewolf when rendered." }, { - "id": "1957", + "id": "1960", "name": "About Page Component Title should display translated title when rendered." } ], @@ -236244,11 +236701,11 @@ "tests/unit/specs/composables/api/role/useFetchRoles.spec.ts": { "tests": [ { - "id": "1958", + "id": "1961", "name": "Use Fetch Roles Composable fetchRoles should fetch roles when called." }, { - "id": "1959", + "id": "1962", "name": "Use Fetch Roles Composable fetchRoles should return null when fetch roles throws." } ], @@ -236257,15 +236714,15 @@ "tests/unit/specs/components/shared/misc/TextProgressSpinner/TextProgressSpinner.nuxt.spec.ts": { "tests": [ { - "id": "1960", + "id": "1963", "name": "Text Progress Spinner Component should match snapshot when rendered." }, { - "id": "1961", + "id": "1964", "name": "Text Progress Spinner Component Spinner should render spinner with aria label as text prop when rendered." }, { - "id": "1962", + "id": "1965", "name": "Text Progress Spinner Component Text should render text with value as text prop when rendered." } ], @@ -236274,7 +236731,7 @@ "tests/unit/specs/composables/api/game/game-play/game-play-source/game-play-source-interaction/game-play-source-interaction.class.spec.ts": { "tests": [ { - "id": "1963", + "id": "1966", "name": "Game Play Source Interaction Class create should create a game play source interaction when called." } ], @@ -236283,7 +236740,7 @@ "tests/unit/specs/composables/api/game/player/player.class.spec.ts": { "tests": [ { - "id": "1964", + "id": "1967", "name": "Player Class create should create a player when called." } ], @@ -236292,7 +236749,7 @@ "tests/unit/specs/composables/api/game/dto/create-game/create-game-player/create-game-player.dto.spec.ts": { "tests": [ { - "id": "1965", + "id": "1968", "name": "Create Game Player Dto create should create a game player dto when called." } ], @@ -236301,15 +236758,15 @@ "tests/unit/specs/components/shared/buttons/CreateAnotherGameButton/CreateAnotherGameButton.nuxt.spec.ts": { "tests": [ { - "id": "1966", + "id": "1969", "name": "Create Another Game Button should match snapshot when rendered." }, { - "id": "1967", + "id": "1970", "name": "Create Another Game Button Button Navigation should have 'to' prop set to game lobby when rendered." }, { - "id": "1968", + "id": "1971", "name": "Create Another Game Button Button Text should translate button text when rendered." } ], @@ -236318,7 +236775,7 @@ "tests/unit/specs/composables/api/game/game-history-record/game-history-record-player-attribute-alteration/game-history-record-player-attribute-alteration.class.spec.ts": { "tests": [ { - "id": "1969", + "id": "1972", "name": "Game History Record Player Attribute Alteration Class create should create a game history record player attribute alteration when called." } ], @@ -236327,7 +236784,7 @@ "tests/unit/specs/composables/api/game/game-options/game-options.class.spec.ts": { "tests": [ { - "id": "1970", + "id": "1973", "name": "Game Options Class create should create a game options when called." } ], @@ -236336,7 +236793,7 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlayground.nuxt.spec.ts": { "tests": [ { - "id": "1971", + "id": "1974", "name": "Game Playground Component should match snapshot when rendered." } ], @@ -236345,7 +236802,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/sheriff-game-options/sheriff-game-options.class.spec.ts": { "tests": [ { - "id": "1972", + "id": "1975", "name": "Sheriff Game Options Class create should create a sheriff game options when called." } ], @@ -236354,15 +236811,15 @@ "tests/unit/specs/components/shared/buttons/BackToHomeButton/BackToHomeButton.nuxt.spec.ts": { "tests": [ { - "id": "1973", + "id": "1976", "name": "Back To Home Button should match snapshot when rendered." }, { - "id": "1974", + "id": "1977", "name": "Back To Home Button Button Navigation should have 'to' prop set to home when rendered." }, { - "id": "1975", + "id": "1978", "name": "Back To Home Button Button Text should translate button text when rendered." } ], @@ -236371,7 +236828,7 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameNoActionPlayground/GameNoActionPlayground.nuxt.spec.ts": { "tests": [ { - "id": "1976", + "id": "1979", "name": "Game No Action Playground Component should match snapshot when rendered." } ], @@ -236380,15 +236837,15 @@ "tests/unit/specs/components/pages/game/GameNotFound/GameNotFound.nuxt.spec.ts": { "tests": [ { - "id": "1977", + "id": "1980", "name": "Game Not Found Component should match snapshot when rendered." }, { - "id": "1978", + "id": "1981", "name": "Game Not Found Component should set head title and meta tags when rendered." }, { - "id": "1979", + "id": "1982", "name": "Game Not Found Component Game not found text should translate game not found text when rendered." } ], @@ -236397,7 +236854,7 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameTargetPlayground/GameTargetPlayground.nuxt.spec.ts": { "tests": [ { - "id": "1980", + "id": "1983", "name": "Game Target Playground Component should match snapshot when rendered." } ], @@ -236406,7 +236863,7 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundContent/GameVotePlayground/GameVotePlayground.nuxt.spec.ts": { "tests": [ { - "id": "1981", + "id": "1984", "name": "Game Vote Playground Component should match snapshot when rendered." } ], @@ -236415,7 +236872,7 @@ "tests/unit/specs/composables/api/game/game-history-record/game-history-record-play/game-history-record-play-voting/game-history-record-play-voting.class.spec.ts": { "tests": [ { - "id": "1982", + "id": "1985", "name": "Game History Record Play Voting Class Create should create a game history record play voting when called." } ], @@ -236424,15 +236881,15 @@ "tests/unit/specs/components/pages/game/GameCanceled/GameCanceled.nuxt.spec.ts": { "tests": [ { - "id": "1983", + "id": "1986", "name": "Game Canceled Component should match snapshot when rendered." }, { - "id": "1984", + "id": "1987", "name": "Game Canceled Component should set head title and meta tags when rendered." }, { - "id": "1985", + "id": "1988", "name": "Game Canceled Component Text should display translated text when rendered." } ], @@ -236441,11 +236898,11 @@ "tests/unit/specs/components/shared/external/BuyMeACoffeeButton/BuyMeACoffeeButton.nuxt.spec.ts": { "tests": [ { - "id": "1986", + "id": "1989", "name": "Buy Me A Coffee Button Component should match snapshot when rendered." }, { - "id": "1987", + "id": "1990", "name": "Buy Me A Coffee Button Component Link image should call link image with correct src when rendered." } ], @@ -236454,7 +236911,7 @@ "tests/unit/specs/composables/api/game/game-history-record/game-history-record-play/game-history-record-play-source/game-history-record-play-source.class.spec.ts": { "tests": [ { - "id": "1988", + "id": "1991", "name": "Game History Record Play Source Class Create should create a game history record play source when called." } ], @@ -236463,7 +236920,7 @@ "tests/unit/specs/components/shared/game/game-phase/GamePhaseLottie/GameNightPhaseLottie/GameNightPhaseLottie.nuxt.spec.ts": { "tests": [ { - "id": "1989", + "id": "1992", "name": "Game Night Phase Lottie Component should match snapshot without shallow rendering when rendered." } ], @@ -236472,7 +236929,7 @@ "tests/unit/specs/composables/api/game/player/player-attribute/player-attribute.class.spec.ts": { "tests": [ { - "id": "1990", + "id": "1993", "name": "Player Attribute Class create should create a player attribute when called." } ], @@ -236481,7 +236938,7 @@ "tests/unit/specs/components/pages/game-lobby/GameLobbyOptionsHub/GameLobbyOptionsHubTabView/GameLobbyOptionsHubRolesTab/GameLobbyOptionsHubRolesTab.nuxt.spec.ts": { "tests": [ { - "id": "1991", + "id": "1994", "name": "Game Lobby Options Hub Roles Tab Component should match snapshot when rendered." } ], @@ -236490,11 +236947,11 @@ "tests/unit/specs/composables/api/role/useRoleName.spec.ts": { "tests": [ { - "id": "1992", + "id": "1995", "name": "Use Role Name Composable getRoleNameLabel should translate role when called with role name." }, { - "id": "1993", + "id": "1996", "name": "Use Role Name Composable getDefiniteRoleNameLabel should translate definite role name when called with role name and count." } ], @@ -236503,11 +236960,11 @@ "tests/unit/specs/composables/route/useWerewolvesAssistantRoutes.spec.ts": { "tests": [ { - "id": "1994", + "id": "1997", "name": "Use Werewolves Assistant Routes Composable isOnGamePage should be set to true when route name is game." }, { - "id": "1995", + "id": "1998", "name": "Use Werewolves Assistant Routes Composable isOnGamePage should be set to false when route name is not game." } ], @@ -236516,7 +236973,7 @@ "tests/unit/specs/components/shared/game/game-phase/GamePhaseLottie/GameDayPhaseLottie/GameDayPhaseLottie.nuxt.spec.ts": { "tests": [ { - "id": "1996", + "id": "1999", "name": "Game Day Phase Lottie Component should match snapshot without shallow rendering when rendered." } ], @@ -236525,7 +236982,7 @@ "tests/unit/specs/composables/api/game/game-history-record/game-history-record-play/game-history-record-play-target/game-history-record-play-target.class.spec.ts": { "tests": [ { - "id": "1997", + "id": "2000", "name": "Game History Record Play Target Class Create should create a game history record play target when called." } ], @@ -236534,7 +236991,7 @@ "tests/unit/specs/composables/api/game/game-history-record/game-history-record-play/game-history-record-play-vote/game-history-record-play-vote.class.spec.ts": { "tests": [ { - "id": "1998", + "id": "2001", "name": "Game History Record Play Vote Class Create should create a game history record play vote when called." } ], @@ -236543,11 +237000,11 @@ "tests/unit/specs/components/shared/game/game-play/NoActionNeeded/NoActionNeeded.nuxt.spec.ts": { "tests": [ { - "id": "1999", + "id": "2002", "name": "No Action Needed Component should match snapshot when rendered." }, { - "id": "2000", + "id": "2003", "name": "No Action Needed Component Message should translate no action needed message when rendered." } ], @@ -236556,7 +237013,7 @@ "tests/unit/specs/composables/api/game/game-play/game-play-source/game-play-source-interaction/game-play-source-interaction-boundaries/game-play-source-interaction-boundaries.class.spec.ts": { "tests": [ { - "id": "2001", + "id": "2004", "name": "Game Play Source Interaction Boundaries Class create should create a game play source interaction boundaries when called." } ], @@ -236565,7 +237022,7 @@ "tests/unit/specs/composables/api/game/game-play/game-play.class.spec.ts": { "tests": [ { - "id": "2002", + "id": "2005", "name": "Game Play Class create should create a game play when called." } ], @@ -236574,7 +237031,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/cupid-game-options/cupid-game-options.class.spec.ts": { "tests": [ { - "id": "2003", + "id": "2006", "name": "Cupid Game Options Class create should create a cupid game options when called." } ], @@ -236583,7 +237040,7 @@ "tests/unit/specs/composables/api/game/game-play/game-play-source/game-play-source.class.spec.ts": { "tests": [ { - "id": "2004", + "id": "2007", "name": "Game Play Source Class create should create a game play source when called." } ], @@ -236592,7 +237049,7 @@ "tests/unit/specs/components/pages/game/GamePlaying/GameEventsMonitor/GameEventsMonitor.nuxt.spec.ts": { "tests": [ { - "id": "2005", + "id": "2008", "name": "Game Events Monitor Component should match snapshot when rendered." } ], @@ -236601,7 +237058,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/pied-piper-game-options/pied-piper-game-options.class.spec.ts": { "tests": [ { - "id": "2006", + "id": "2009", "name": "Pied Piper Game Options Class create should create a pied piper game options when called." } ], @@ -236610,7 +237067,7 @@ "tests/unit/specs/composables/api/game/game-event/game-event.class.spec.ts": { "tests": [ { - "id": "2007", + "id": "2010", "name": "Game Event class create should create a game event when called." } ], @@ -236619,7 +237076,7 @@ "tests/unit/specs/composables/api/role/role.class.spec.ts": { "tests": [ { - "id": "2008", + "id": "2011", "name": "Role Class create should create a role when called." } ], @@ -236628,11 +237085,11 @@ "tests/unit/specs/composables/api/game/player/usePlayers.spec.ts": { "tests": [ { - "id": "2009", + "id": "2012", "name": "Use Players Composable getPlayersNamesText should return player names text when called." }, { - "id": "2010", + "id": "2013", "name": "Use Players Composable getPlayersNamesText should return empty string when there are no players." } ], @@ -236641,7 +237098,7 @@ "tests/unit/specs/composables/api/game/dto/create-game/create-game-additional-card/create-game-additional-card.dto.spec.ts": { "tests": [ { - "id": "2011", + "id": "2014", "name": "Create Game Additional Card Dto create should create a game additional card dto when called." } ], @@ -236650,15 +237107,15 @@ "tests/unit/specs/composables/misc/useTimers.spec.ts": { "tests": [ { - "id": "2012", + "id": "2015", "name": "Use Timers Composable getSecondsInMinutesLabel should return only minutes when there are no remaining seconds." }, { - "id": "2013", + "id": "2016", "name": "Use Timers Composable getSecondsInMinutesLabel should return only seconds when there are no minutes." }, { - "id": "2014", + "id": "2017", "name": "Use Timers Composable getSecondsInMinutesLabel should return minutes and seconds when there are both." } ], @@ -236667,7 +237124,7 @@ "tests/unit/specs/composables/api/game/game-additional-card/game-additional-card.class.spec.ts": { "tests": [ { - "id": "2015", + "id": "2018", "name": "Game Additional Card Class Create should create a game additional card when called." } ], @@ -236676,7 +237133,7 @@ "tests/unit/specs/composables/api/game/player/player-attribute/player-attribute-activation/player-attribute-activation.class.spec.ts": { "tests": [ { - "id": "2016", + "id": "2019", "name": "Player Attribute Activation Class create should create a player attribute activation when called." } ], @@ -236685,7 +237142,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/sheriff-game-options/sheriff-election-game-options/sheriff-election-game-options.class.spec.ts": { "tests": [ { - "id": "2017", + "id": "2020", "name": "Sheriff Election Game Options Class create should create a sheriff election game options when called." } ], @@ -236694,11 +237151,11 @@ "tests/unit/specs/components/pages/index/IndexFooter.nuxt.spec.ts": { "tests": [ { - "id": "2018", + "id": "2021", "name": "Index Page Footer Component should match snapshot when rendered." }, { - "id": "2019", + "id": "2022", "name": "Index Page Footer Component Contact Me Button should display contact me with translated text button when rendered." } ], @@ -236707,7 +237164,7 @@ "tests/unit/specs/composables/api/game/game-victory/game-victory.class.spec.ts": { "tests": [ { - "id": "2020", + "id": "2023", "name": "Game Victory Class create should create a game victory when called." } ], @@ -236716,7 +237173,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/wolf-hound-game-options/wolf-hound-game-options.class.spec.ts": { "tests": [ { - "id": "2021", + "id": "2024", "name": "Wolf Hound Game Options Class create should create a wolf hound game options when called." } ], @@ -236725,15 +237182,15 @@ "tests/unit/specs/composables/misc/useStrings.spec.ts": { "tests": [ { - "id": "2022", + "id": "2025", "name": "Use Strings Composable convertBooleanAsAffirmativeString should return 'yes' when value is true." }, { - "id": "2023", + "id": "2026", "name": "Use Strings Composable convertBooleanAsAffirmativeString should return 'no' when value is false." }, { - "id": "2024", + "id": "2027", "name": "Use Strings Composable lowerCaseFirstLetter should return a string with the first letter in lowercase when called." } ], @@ -236742,7 +237199,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/thief-game-options/thief-game-options.class.spec.ts": { "tests": [ { - "id": "2025", + "id": "2028", "name": "Thief Game Options Class create should create a thief game options when called." } ], @@ -236751,7 +237208,7 @@ "tests/unit/specs/composables/api/useWerewolvesAssistantApi.spec.ts": { "tests": [ { - "id": "2026", + "id": "2029", "name": "Use Werewolves Assistant Api Composable fetchWerewolvesAssistantApi should create a fetch instance for Werewolves Assistant API when called." } ], @@ -236760,7 +237217,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/stuttering-judge-game-options/stuttering-judge-game-options.class.spec.ts": { "tests": [ { - "id": "2027", + "id": "2030", "name": "Stuttering Judge Game Options Class create should create a stuttering judge game options when called." } ], @@ -236769,11 +237226,11 @@ "tests/unit/specs/composables/misc/useArrays.spec.ts": { "tests": [ { - "id": "2028", + "id": "2031", "name": "Use Arrays Composable insertIf should return an empty array when condition is false." }, { - "id": "2029", + "id": "2032", "name": "Use Arrays Composable insertIf should return an array with the value when condition is true." } ], @@ -236782,7 +237239,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/elder-game-options/elder-game-options.class.spec.ts": { "tests": [ { - "id": "2030", + "id": "2033", "name": "Elder Game Options Class create should create an elder game options when called." } ], @@ -236791,7 +237248,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/cupid-game-options/cupid-lovers-game-options/cupid-lovers-game-options.class.spec.ts": { "tests": [ { - "id": "2031", + "id": "2034", "name": "Cupid Lovers Game Options Class create should create a cupid lovers game options when called." } ], @@ -236800,7 +237257,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/three-brothers-game-options/three-brothers-game-options.class.spec.ts": { "tests": [ { - "id": "2032", + "id": "2035", "name": "Three Brothers Game Options Class create should create a three brothers game options when called." } ], @@ -236809,7 +237266,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/scandalmonger-game-options/scandalmonger-game-options.class.spec.ts": { "tests": [ { - "id": "2033", + "id": "2036", "name": "Scandalmonger Game Options Class create should create a scandalmonger game options when called." } ], @@ -236818,11 +237275,11 @@ "tests/unit/specs/composables/api/game/game-phase/useGamePhase.spec.ts": { "tests": [ { - "id": "2034", + "id": "2037", "name": "Use Game Phase Composable getGamePhaseWithTurnText should return game phase without turn text when phase is twilight." }, { - "id": "2035", + "id": "2038", "name": "Use Game Phase Composable getGamePhaseWithTurnText should return game phase with turn text when called." } ], @@ -236831,7 +237288,7 @@ "tests/unit/specs/composables/api/game/player/player-role/player-role.class.spec.ts": { "tests": [ { - "id": "2036", + "id": "2039", "name": "Player Role Class create should create a player role when called." } ], @@ -236840,7 +237297,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/little-girl-game-options/little-girl-game-options.class.spec.ts": { "tests": [ { - "id": "2037", + "id": "2040", "name": "Little Girl Game Options Class create should create a little girl game options when called." } ], @@ -236849,7 +237306,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/white-werewolf-game-options/white-werewolf-game-options.class.spec.ts": { "tests": [ { - "id": "2038", + "id": "2041", "name": "White Werewolf create should create a white werewolf game options when called." } ], @@ -236858,7 +237315,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/bear-tamer-game-options/bear-tamer-game-options.class.spec.ts": { "tests": [ { - "id": "2039", + "id": "2042", "name": "Bear Tamer Game Options Class create should create a bear tamer game options when called." } ], @@ -236867,7 +237324,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/seer-game-options/seer-game-options.class.spec.ts": { "tests": [ { - "id": "2040", + "id": "2043", "name": "Seer Game Options Class create should create a seer game options when called." } ], @@ -236876,7 +237333,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/wild-child-game-options/wild-child-game-options.class.spec.ts": { "tests": [ { - "id": "2041", + "id": "2044", "name": "Wild Child Game Options Class create should create a wild child game options when called." } ], @@ -236885,7 +237342,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/two-sisters-game-options/two-sisters-game-options.class.spec.ts": { "tests": [ { - "id": "2042", + "id": "2045", "name": "Two Sisters Game Options Class create should create a two sisters game options when called." } ], @@ -236894,7 +237351,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/big-bad-wolf-options/big-bad-wolf-options.class.spec.ts": { "tests": [ { - "id": "2043", + "id": "2046", "name": "Big Bad Wolf Game Options Class create should create a big bad wolf options when called." } ], @@ -236903,7 +237360,7 @@ "tests/unit/specs/stores/keyboard/useKeyboardStore.spec.ts": { "tests": [ { - "id": "2044", + "id": "2047", "name": "Use Keyboard Store should have initial state when created." } ], @@ -236912,7 +237369,7 @@ "tests/unit/specs/composables/api/game/game-options/votes-game-options/votes-game-options.class.spec.ts": { "tests": [ { - "id": "2045", + "id": "2048", "name": "Votes Game Option Class create should create a votes game option when called." } ], @@ -236921,7 +237378,7 @@ "tests/unit/specs/composables/api/game/game-options/composition-game-options/composition-game-options.class.spec.ts": { "tests": [ { - "id": "2046", + "id": "2049", "name": "Composition Game Options Class create should create a composition game options when called." } ], @@ -236930,7 +237387,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/actor-game-options/actor-game-options.class.spec.ts": { "tests": [ { - "id": "2047", + "id": "2050", "name": "Actor Game Options Class create should create an actor game options when called." } ], @@ -236939,7 +237396,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/defender-game-options/defender-game-options.class.spec.ts": { "tests": [ { - "id": "2048", + "id": "2051", "name": "Defender Game Options Class create should create a defender game options when called." } ], @@ -236948,7 +237405,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/werewolf-game-options/werewolf-game-options.class.spec.ts": { "tests": [ { - "id": "2049", + "id": "2052", "name": "Werewolf Game Options Class create should create a werewolf game options when called." } ], @@ -236957,7 +237414,7 @@ "tests/unit/specs/composables/api/game/player/player-side/player-side.class.spec.ts": { "tests": [ { - "id": "2050", + "id": "2053", "name": "Player Side Class create should create a player side when called." } ], @@ -236966,7 +237423,7 @@ "tests/unit/specs/components/pages/game/GamePlaying/GamePlayground/GamePlaygroundHeader/GamePlaygroundHeader.nuxt.spec.ts": { "tests": [ { - "id": "2051", + "id": "2054", "name": "Game Playground Header Component should match snapshot when rendered." } ], @@ -236975,7 +237432,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/witch-game-options/witch-game-options.class.spec.ts": { "tests": [ { - "id": "2052", + "id": "2055", "name": "Witch Game Options Class create should create a witch game options when called." } ], @@ -236984,7 +237441,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/idiot-game-options/idiot-game-options.class.spec.ts": { "tests": [ { - "id": "2053", + "id": "2056", "name": "Idiot Game Options Class create should create an idiot game options when called." } ], @@ -236993,7 +237450,7 @@ "tests/unit/specs/composables/api/game/game-options/roles-game-options/fox-game-options/fox-game-options.class.spec.ts": { "tests": [ { - "id": "2054", + "id": "2057", "name": "Fox Game Options Class create should create a fox game options when called." } ], @@ -237002,7 +237459,7 @@ "tests/unit/specs/composables/api/game/game-phase/game-phase.class.spec.ts": { "tests": [ { - "id": "2055", + "id": "2058", "name": "Game Phase Class create should create a game phase when called." } ], @@ -237011,7 +237468,7 @@ "tests/unit/specs/modules/i18n.spec.ts": { "tests": [ { - "id": "2056", + "id": "2059", "name": "I18n module Locales should contain all keys set in fr locale when locale is en." } ], @@ -237020,7 +237477,7 @@ "tests/unit/specs/layouts/default.nuxt.spec.ts": { "tests": [ { - "id": "2057", + "id": "2060", "name": "Default Layout should match snapshot when rendered." } ], @@ -237029,7 +237486,7 @@ "tests/unit/specs/utils/url.utils.spec.ts": { "tests": [ { - "id": "2058", + "id": "2061", "name": "URL Utils removeTrailingSlashes should remove trailing slashes when called." } ], diff --git a/tests/unit/specs/__snapshots__/app.nuxt.spec.ts.snap b/tests/unit/specs/__snapshots__/app.nuxt.spec.ts.snap index e7d066a7141..327c5f5a25d 100644 --- a/tests/unit/specs/__snapshots__/app.nuxt.spec.ts.snap +++ b/tests/unit/specs/__snapshots__/app.nuxt.spec.ts.snap @@ -4,7 +4,7 @@ exports[`App Component > should match snapshot when rendered. 1`] = ` "
- +
" `; diff --git a/tests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts b/tests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts index 99c0a7e482b..f6dfb56d9aa 100644 --- a/tests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts +++ b/tests/unit/specs/pages/game-lobby/game-lobby.nuxt.spec.ts @@ -1,6 +1,7 @@ import { mockNuxtImport } from "@nuxt/test-utils/runtime"; import { createFakeUseRoute } from "@tests/unit/utils/factories/composables/nuxt/useRoute.factory"; import type { mount } from "@vue/test-utils"; +import type Radash from "radash"; import type { UseHeadInput } from "unhead"; import type { Mock } from "vitest"; import { expect } from "vitest"; @@ -19,11 +20,26 @@ import { mountSuspendedComponent } from "@tests/unit/utils/helpers/mount.helpers import type { VueVm } from "@tests/unit/utils/types/vue-test-utils.types"; const hoistedMocks = vi.hoisted(() => ({ + useBreakpoints: { + smaller: vi.fn(), + }, useRoute: {} as unknown as ReturnType, + usePrimeVueToasts: { + addInfoToast: vi.fn(), + }, })); mockNuxtImport("useRoute", () => vi.fn(() => hoistedMocks.useRoute)); +vi.mock("@vueuse/core", async importOriginal => ({ + ...await importOriginal(), + useBreakpoints: (): typeof hoistedMocks.useBreakpoints => hoistedMocks.useBreakpoints, +})); + +vi.mock("~/composables/prime-vue/usePrimeVueToasts", () => ({ + usePrimeVueToasts: (): typeof hoistedMocks.usePrimeVueToasts => hoistedMocks.usePrimeVueToasts, +})); + describe("Game Lobby Page", () => { let wrapper: ReturnType>; let mocks: { @@ -93,6 +109,7 @@ describe("Game Lobby Page", () => { beforeEach(async() => { hoistedMocks.useRoute = createFakeUseRoute(); + hoistedMocks.useBreakpoints.smaller.mockReturnValue(ref(false)); wrapper = await mountGameLobbyPageComponent(); }); @@ -110,6 +127,33 @@ describe("Game Lobby Page", () => { expect(useHead).toHaveBeenCalledExactlyOnceWith(expectedUseHeadInput); }); + describe("Small Screen Toast", () => { + it("should add info toast for small screen after 200ms when screen is smaller than md.", async() => { + hoistedMocks.useBreakpoints.smaller.mockReturnValue(ref(true)); + wrapper = await mountGameLobbyPageComponent(); + vi.advanceTimersByTime(200); + + expect(hoistedMocks.usePrimeVueToasts.addInfoToast).toHaveBeenCalledExactlyOnceWith({ + detail: "pages.gameLobby.smallScreenWarning", + life: 7500, + summary: "pages.gameLobby.smallScreenDetected", + }); + }); + + it("should not add info toast for small screen after 200ms when screen is not smaller than md.", () => { + vi.advanceTimersByTime(200); + + expect(hoistedMocks.usePrimeVueToasts.addInfoToast).not.toHaveBeenCalled(); + }); + + it("should not add info toast for small screen when screen is smaller than md but 200ms have not passed.", async() => { + hoistedMocks.useBreakpoints.smaller.mockReturnValue(ref(true)); + wrapper = await mountGameLobbyPageComponent(); + + expect(hoistedMocks.usePrimeVueToasts.addInfoToast).not.toHaveBeenCalled(); + }); + }); + describe("Game Lobby Players Party", () => { it("should reset create game dto when rendered.", () => { const createGameDtoStore = useCreateGameDtoStore();