diff --git a/.run/Game Lobby Confirm Dialog.run.xml b/.run/Game Lobby Confirm Dialog.run.xml
new file mode 100644
index 00000000000..e3d73668628
--- /dev/null
+++ b/.run/Game Lobby Confirm Dialog.run.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyFooter.vue b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyFooter.vue
index bebc6d4a088..109126c8d8d 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyFooter.vue
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyFooter.vue
@@ -11,6 +11,7 @@
@@ -38,4 +39,8 @@ function onRejectThiefAdditionalCardsPlacedStep(): void {
function onRejectActorAdditionalCardsPlacedStep(): void {
emit("rejectActorAdditionalCardsPlacedStep");
}
+
+function onRejectGameOptionsChangedStep(): void {
+ emit("rejectGameOptionsChangedStep");
+}
\ No newline at end of file
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.vue b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.vue
index ff1deea14d4..3ad8001f899 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.vue
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameButton.vue
@@ -27,6 +27,7 @@
ref="gameLobbyStartGameConfirmDialog"
@confirm-start-game="onConfirmStartGameFromGameLobbyStartGameConfirmDialog"
@reject-actor-additional-cards-placed-step="onRejectActorAdditionalCardsPlacedStepFromGameLobbyStartGameConfirmDialog"
+ @reject-game-options-changed-step="onRejectGameOptionsChangedStep"
@reject-players-position-step="onRejectPlayersPositionStepFromGameLobbyStartGameConfirmDialog"
@reject-thief-additional-cards-placed-step="onRejectThiefAdditionalCardsPlacedStepFromGameLobbyStartGameConfirmDialog"
/>
@@ -93,4 +94,8 @@ function onRejectThiefAdditionalCardsPlacedStepFromGameLobbyStartGameConfirmDial
function onRejectActorAdditionalCardsPlacedStepFromGameLobbyStartGameConfirmDialog(): void {
emit("rejectActorAdditionalCardsPlacedStep");
}
+
+function onRejectGameOptionsChangedStep(): void {
+ emit("rejectGameOptionsChangedStep");
+}
\ No newline at end of file
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.vue b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.vue
index 67f982745b2..26579bf7c78 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.vue
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.vue
@@ -12,6 +12,7 @@
@confirm-start-game="acceptCallback"
@confirm-step="onConfirmStepFromGameLobbyStartGameConfirmDialogContainer"
@reject-actor-additional-cards-placed-step="onRejectActorAdditionalCardsPlacedStepFromGameLobbyStartGameConfirmDialogContainer"
+ @reject-game-options-changed-step="onRejectGameOptionsChangedStepFromGameLobbyStartGameConfirmDialogContainer"
@reject-players-position-step="onRejectPlayersPositionStepFromGameLobbyStartGameConfirmDialogContainer"
@reject-start-game="rejectCallback"
@reject-thief-additional-cards-placed-step="onRejectThiefAdditionalCardsPlacedStepFromGameLobbyStartGameConfirmDialogContainer"
@@ -25,6 +26,7 @@ import { storeToRefs } from "pinia";
import { useConfirm } from "primevue/useconfirm";
import type { GameLobbyStartGameConfirmDialogEmits, GameLobbyStartGameConfirmDialogExposed, GameLobbyStartGameConfirmDialogStep } from "~/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.types";
import GameLobbyStartGameConfirmDialogContainer from "~/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContainer.vue";
+import { useGameOptionsTexts } from "~/composables/api/game/game-options/useGameOptionsTexts";
import { useArrays } from "~/composables/misc/useArrays";
import { useCreateGameDtoStore } from "~/stores/game/create-game-dto/useCreateGameDtoStore";
@@ -34,7 +36,9 @@ const confirmStepIndex = ref(0);
const createGameDtoStore = useCreateGameDtoStore();
const { getPlayersWithRoleNameInCreateGameDto } = createGameDtoStore;
-const { doesCreateGameDtoContainPositionDependantRoles } = storeToRefs(createGameDtoStore);
+const { doesCreateGameDtoContainPositionDependantRoles, createGameOptionsDto } = storeToRefs(createGameDtoStore);
+
+const { changedGameOptionsTexts } = useGameOptionsTexts(createGameOptionsDto);
const { require: confirmRequire } = useConfirm();
@@ -44,10 +48,13 @@ const doesCreateGameDtoContainThief = computed(() => getPlayersWithRole
const doesCreateGameDtoContainActor = computed(() => getPlayersWithRoleNameInCreateGameDto("actor").length > 0);
+const areGameOptionsChanged = computed(() => changedGameOptionsTexts.value.length > 0);
+
const confirmSteps = computed(() => [
...insertIf(doesCreateGameDtoContainPositionDependantRoles.value, "players-positioned"),
...insertIf(doesCreateGameDtoContainThief.value, "thief-additional-cards-placed"),
...insertIf(doesCreateGameDtoContainActor.value, "actor-additional-cards-placed"),
+ ...insertIf(areGameOptionsChanged.value, "game-options-changed"),
"players-ready",
]);
@@ -85,6 +92,11 @@ function onRejectActorAdditionalCardsPlacedStepFromGameLobbyStartGameConfirmDial
emit("rejectActorAdditionalCardsPlacedStep");
}
+function onRejectGameOptionsChangedStepFromGameLobbyStartGameConfirmDialogContainer(rejectCallback: () => void): void {
+ rejectCallback();
+ emit("rejectGameOptionsChangedStep");
+}
+
defineExpose({
open,
});
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContainer.vue b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContainer.vue
index a08b029fdd3..626a89bc2b5 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContainer.vue
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContainer.vue
@@ -28,6 +28,7 @@
:current-confirm-step="currentConfirmStep"
@confirm-step="onConfirmStep"
@reject-actor-additional-cards-placed-step="onRejectActorAdditionalCardsPlacedStep"
+ @reject-game-options-changed-step="onRejectGameOptionsChangedStep"
@reject-players-position-step="onRejectPlayersPositionStep"
@reject-thief-additional-cards-placed-step="onRejectThiefAdditionalCardsPlacedStep"
/>
@@ -67,6 +68,10 @@ function onRejectActorAdditionalCardsPlacedStep(): void {
emit("rejectActorAdditionalCardsPlacedStep", props.rejectCallback);
}
+function onRejectGameOptionsChangedStep(): void {
+ emit("rejectGameOptionsChangedStep", props.rejectCallback);
+}
+
function onConfirmStartGame(): void {
emit("confirmStartGame");
}
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogContent.vue b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogContent.vue
index 451972917c8..500588d0644 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogContent.vue
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogContent.vue
@@ -9,6 +9,7 @@
:key="currentConfirmStep"
@confirm-step="onConfirmStepFromConfirmStepComponent"
@reject-actor-additional-cards-placed-step="onRejectActorAdditionalCardsPlacedStep"
+ @reject-game-options-changed-step="onRejectGameOptionsChangedStep"
@reject-players-position-step="onRejectPlayersPositionStepFromConfirmStepComponent"
@reject-thief-additional-cards-placed-step="onRejectThiefAdditionalCardsPlacedStep"
/>
@@ -17,9 +18,11 @@
\ No newline at end of file
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.vue b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.vue
new file mode 100644
index 00000000000..475238ecdbc
--- /dev/null
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/ChangedGameOptionsList/ChangedGameOptionsList.vue
@@ -0,0 +1,55 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/GameLobbyStartGameConfirmDialogGameOptionsChanged.vue b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/GameLobbyStartGameConfirmDialogGameOptionsChanged.vue
new file mode 100644
index 00000000000..cb1e9b8ebc4
--- /dev/null
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/GameLobbyStartGameConfirmDialogGameOptionsChanged.vue
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+ {{ gameOptionsChangedText }}
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/game-lobby-start-game-confirm-dialog-game-options-changed.types.ts b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/game-lobby-start-game-confirm-dialog-game-options-changed.types.ts
new file mode 100644
index 00000000000..8c64dec0f12
--- /dev/null
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/game-lobby-start-game-confirm-dialog-game-options-changed.types.ts
@@ -0,0 +1,6 @@
+type GameLobbyStartGameConfirmDialogGameOptionsChangedEmits = {
+ confirmStep: [];
+ rejectGameOptionsChangedStep: [];
+};
+
+export type { GameLobbyStartGameConfirmDialogGameOptionsChangedEmits };
\ No newline at end of file
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/game-lobby-start-game-confirm-dialog-content.types.ts b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/game-lobby-start-game-confirm-dialog-content.types.ts
index 535150897f1..a43ce411b5e 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/game-lobby-start-game-confirm-dialog-content.types.ts
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/game-lobby-start-game-confirm-dialog-content.types.ts
@@ -1,5 +1,4 @@
import type { GameLobbyStartGameConfirmDialogStep } from "~/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.types";
-import type GameLobbyStartGameConfirmDialogPlayersPositioned from "~/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogPlayersPositioned/GameLobbyStartGameConfirmDialogPlayersPositioned.vue";
type GameLobbyStartGameConfirmDialogContentProps = {
currentConfirmStep: GameLobbyStartGameConfirmDialogStep;
@@ -10,12 +9,10 @@ type GameLobbyStartGameConfirmDialogContentEmits = {
rejectPlayersPositionStep: [];
rejectThiefAdditionalCardsPlacedStep: [];
rejectActorAdditionalCardsPlacedStep: [];
+ rejectGameOptionsChangedStep: [];
};
-type GameLobbyStartGameConfirmDialogStepComponents = typeof GameLobbyStartGameConfirmDialogPlayersPositioned;
-
export type {
GameLobbyStartGameConfirmDialogContentProps,
GameLobbyStartGameConfirmDialogContentEmits,
- GameLobbyStartGameConfirmDialogStepComponents,
};
\ No newline at end of file
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/game-lobby-start-game-confirm-dialog-container.types.ts b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/game-lobby-start-game-confirm-dialog-container.types.ts
index f15c4c659f0..b947c57660c 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/game-lobby-start-game-confirm-dialog-container.types.ts
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/game-lobby-start-game-confirm-dialog-container.types.ts
@@ -12,6 +12,7 @@ type GameLobbyStartGameConfirmDialogContainerEmits = {
rejectPlayersPositionStep: [rejectCallback: () => void];
rejectThiefAdditionalCardsPlacedStep: [rejectCallback: () => void];
rejectActorAdditionalCardsPlacedStep: [rejectCallback: () => void];
+ rejectGameOptionsChangedStep: [rejectCallback: () => void];
};
export type {
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.constants.ts b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.constants.ts
index 19826de6e38..1becde4e760 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.constants.ts
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.constants.ts
@@ -3,6 +3,7 @@ const GAME_LOBBY_START_GAME_CONFIRM_DIALOG_STEPS = [
"actor-additional-cards-placed",
"players-positioned",
"players-ready",
+ "game-options-changed",
] as const;
export { GAME_LOBBY_START_GAME_CONFIRM_DIALOG_STEPS };
\ No newline at end of file
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.types.ts b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.types.ts
index 84481ec1285..7e5fcbe53c6 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.types.ts
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/game-lobby-start-game-confirm-dialog.types.ts
@@ -6,6 +6,7 @@ type GameLobbyStartGameConfirmDialogEmits = {
rejectPlayersPositionStep: [];
rejectThiefAdditionalCardsPlacedStep: [];
rejectActorAdditionalCardsPlacedStep: [];
+ rejectGameOptionsChangedStep: [];
};
type GameLobbyStartGameConfirmDialogExposed = {
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/game-lobby-start-game-button.types.ts b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/game-lobby-start-game-button.types.ts
index ba5713eab5d..d8c37171d65 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/game-lobby-start-game-button.types.ts
+++ b/app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/game-lobby-start-game-button.types.ts
@@ -2,6 +2,7 @@ type GameLobbyStartGameButtonEmits = {
rejectPlayersPositionStep: [];
rejectThiefAdditionalCardsPlacedStep: [];
rejectActorAdditionalCardsPlacedStep: [];
+ rejectGameOptionsChangedStep: [];
};
export type {
diff --git a/app/components/pages/game-lobby/GameLobbyFooter/game-lobby-footer.types.ts b/app/components/pages/game-lobby/GameLobbyFooter/game-lobby-footer.types.ts
index 4f53c552382..7da55c4006d 100644
--- a/app/components/pages/game-lobby/GameLobbyFooter/game-lobby-footer.types.ts
+++ b/app/components/pages/game-lobby/GameLobbyFooter/game-lobby-footer.types.ts
@@ -2,6 +2,7 @@ type GameLobbyFooterEmits = {
rejectPlayersPositionStep: [];
rejectThiefAdditionalCardsPlacedStep: [];
rejectActorAdditionalCardsPlacedStep: [];
+ rejectGameOptionsChangedStep: [];
};
export type {
diff --git a/app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.vue b/app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.vue
index 7a7cdf1976f..855b05c2cbb 100644
--- a/app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.vue
+++ b/app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeader.vue
@@ -85,6 +85,13 @@ function onAdditionalCardsManagerButtonClickFromGameLobbyHeaderSetupButtons(): v
emit("additionalCardsManagerButtonClick");
}
+function highlightGameOptionsButton(): void {
+ if (gameLobbyHeaderSetupButtons.value === null) {
+ throw createError("Game Lobby Header Setup Buttons is not defined");
+ }
+ gameLobbyHeaderSetupButtons.value.highlightGameOptionsButton();
+}
+
function highlightPositionCoordinatorButton(): void {
if (gameLobbyHeaderSetupButtons.value === null) {
throw createError("Game Lobby Header Setup Buttons is not defined");
@@ -100,6 +107,7 @@ function highlightAdditionalCardsManagerButton(): void {
}
defineExpose({
+ highlightGameOptionsButton,
highlightPositionCoordinatorButton,
highlightAdditionalCardsManagerButton,
});
diff --git a/app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.vue b/app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.vue
index a1fad320597..5315bbb9b58 100644
--- a/app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.vue
+++ b/app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderOptionsButton/GameLobbyHeaderOptionsButton.vue
@@ -1,26 +1,52 @@
"
+ "source": "\n \n \n\n"
},
"app/components/pages/game-lobby/GameLobbyFooter/GameLobbyRandomCompositionButton/GameLobbyRandomCompositionButton.vue": {
"language": "html",
"mutants": [
{
- "id": "1974",
+ "id": "1976",
"mutatorName": "BooleanLiteral",
"replacement": "true",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -60955,25 +61003,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -60987,7 +61035,7 @@
}
},
{
- "id": "1975",
+ "id": "1977",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -60995,25 +61043,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61027,7 +61075,7 @@
}
},
{
- "id": "1976",
+ "id": "1978",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected '' to be 'small' // Object.is equality",
@@ -61035,11 +61083,11 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "448"
+ "472"
],
"coveredBy": [
- "446",
- "448"
+ "470",
+ "472"
],
"location": {
"end": {
@@ -61053,7 +61101,7 @@
}
},
{
- "id": "1977",
+ "id": "1979",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61061,25 +61109,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61093,7 +61141,7 @@
}
},
{
- "id": "1978",
+ "id": "1980",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "expected '' to be 'components.GameLobbyRandomComposition…' // Object.is equality",
@@ -61101,25 +61149,25 @@
"testsCompleted": 4,
"static": false,
"killedBy": [
- "445"
+ "469"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61133,7 +61181,7 @@
}
},
{
- "id": "1979",
+ "id": "1981",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected '' to be 'components.GameLobbyRandomComposition…' // Object.is equality",
@@ -61141,25 +61189,25 @@
"testsCompleted": 4,
"static": false,
"killedBy": [
- "445"
+ "469"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61173,7 +61221,7 @@
}
},
{
- "id": "1980",
+ "id": "1982",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61181,25 +61229,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61213,7 +61261,7 @@
}
},
{
- "id": "1981",
+ "id": "1983",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expected 'true' to be 'false' // Object.is equality",
@@ -61221,25 +61269,25 @@
"testsCompleted": 9,
"static": false,
"killedBy": [
- "450"
+ "474"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61253,7 +61301,7 @@
}
},
{
- "id": "1982",
+ "id": "1984",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61261,25 +61309,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61293,7 +61341,7 @@
}
},
{
- "id": "1983",
+ "id": "1985",
"mutatorName": "LogicalOperator",
"replacement": "!isMinimumPlayersReached.value && isLoadingGetRandomGameComposition.value",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61301,25 +61349,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61333,7 +61381,7 @@
}
},
{
- "id": "1984",
+ "id": "1986",
"mutatorName": "BooleanLiteral",
"replacement": "isMinimumPlayersReached.value",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61341,25 +61389,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61373,7 +61421,7 @@
}
},
{
- "id": "1985",
+ "id": "1987",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61381,25 +61429,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61413,7 +61461,7 @@
}
},
{
- "id": "1986",
+ "id": "1988",
"mutatorName": "BooleanLiteral",
"replacement": "isMinimumPlayersReached.value",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61421,25 +61469,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61453,7 +61501,7 @@
}
},
{
- "id": "1987",
+ "id": "1989",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expected 'components.GameLobbyRandomComposition…' to be undefined",
@@ -61461,25 +61509,25 @@
"testsCompleted": 3,
"static": false,
"killedBy": [
- "444"
+ "468"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61493,7 +61541,7 @@
}
},
{
- "id": "1988",
+ "id": "1990",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61501,25 +61549,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61533,7 +61581,7 @@
}
},
{
- "id": "1989",
+ "id": "1991",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61541,25 +61589,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61573,7 +61621,7 @@
}
},
{
- "id": "1990",
+ "id": "1992",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Random Composition Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61581,25 +61629,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "442"
+ "466"
],
"coveredBy": [
- "442",
- "443",
- "444",
- "445",
- "446",
- "447",
- "448",
- "449",
- "450",
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "466",
+ "467",
+ "468",
+ "469",
+ "470",
+ "471",
+ "472",
+ "473",
+ "474",
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61613,7 +61661,7 @@
}
},
{
- "id": "1991",
+ "id": "1993",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -61621,16 +61669,16 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "451"
+ "475"
],
"coveredBy": [
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61644,7 +61692,7 @@
}
},
{
- "id": "1992",
+ "id": "1994",
"mutatorName": "BooleanLiteral",
"replacement": "false",
"statusReason": "expect(received).toBeTrue()\n\nExpected value to be true:\n true\nReceived:\n false",
@@ -61652,16 +61700,16 @@
"testsCompleted": 6,
"static": false,
"killedBy": [
- "456"
+ "480"
],
"coveredBy": [
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61675,7 +61723,7 @@
}
},
{
- "id": "1993",
+ "id": "1995",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"excludedRoles\": Array [\n \"prejudiced-manipulator\",\n ],\n \"players\": Array [\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Player 1\",\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\": \"Player 2\",\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\": \"Player 3\",\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\": \"Player 4\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ],\n },\n], but it was called with Object {}",
@@ -61683,16 +61731,16 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "451"
+ "475"
],
"coveredBy": [
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61706,7 +61754,7 @@
}
},
{
- "id": "1994",
+ "id": "1996",
"mutatorName": "ArrayDeclaration",
"replacement": "[]",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"excludedRoles\": Array [\n \"prejudiced-manipulator\",\n ],\n \"players\": Array [\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Player 1\",\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\": \"Player 2\",\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\": \"Player 3\",\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\": \"Player 4\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ],\n },\n], but it was called with Object {\n \"excludedRoles\": Array [],\n \"players\": Array [\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Player 1\",\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\": \"Player 2\",\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\": \"Player 3\",\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\": \"Player 4\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ],\n}",
@@ -61714,16 +61762,16 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "451"
+ "475"
],
"coveredBy": [
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61737,7 +61785,7 @@
}
},
{
- "id": "1995",
+ "id": "1997",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"excludedRoles\": Array [\n \"prejudiced-manipulator\",\n ],\n \"players\": Array [\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Player 1\",\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\": \"Player 2\",\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\": \"Player 3\",\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\": \"Player 4\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ],\n },\n], but it was called with Object {\n \"excludedRoles\": Array [\n \"\",\n ],\n \"players\": Array [\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Player 1\",\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\": \"Player 2\",\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\": \"Player 3\",\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\": \"Player 4\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ],\n}",
@@ -61745,16 +61793,16 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "451"
+ "475"
],
"coveredBy": [
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61768,7 +61816,7 @@
}
},
{
- "id": "1996",
+ "id": "1998",
"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 null,\n ]\n\n\nNumber of calls: 1\n",
@@ -61776,16 +61824,16 @@
"testsCompleted": 3,
"static": false,
"killedBy": [
- "453"
+ "477"
],
"coveredBy": [
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61799,7 +61847,7 @@
}
},
{
- "id": "1997",
+ "id": "1999",
"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",
@@ -61807,16 +61855,16 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "452"
+ "476"
],
"coveredBy": [
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61830,7 +61878,7 @@
}
},
{
- "id": "1998",
+ "id": "2000",
"mutatorName": "EqualityOperator",
"replacement": "randomGameComposition === null",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -61838,16 +61886,16 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "452"
+ "476"
],
"coveredBy": [
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61861,7 +61909,7 @@
}
},
{
- "id": "1999",
+ "id": "2001",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -61869,14 +61917,14 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "452"
+ "476"
],
"coveredBy": [
- "451",
- "452",
- "454",
- "456",
- "457"
+ "475",
+ "476",
+ "478",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61890,7 +61938,7 @@
}
},
{
- "id": "2000",
+ "id": "2002",
"mutatorName": "BooleanLiteral",
"replacement": "true",
"statusReason": "expected 'true' to be 'false' // Object.is equality",
@@ -61898,16 +61946,16 @@
"testsCompleted": 7,
"static": false,
"killedBy": [
- "457"
+ "481"
],
"coveredBy": [
- "451",
- "452",
- "453",
- "454",
- "455",
- "456",
- "457"
+ "475",
+ "476",
+ "477",
+ "478",
+ "479",
+ "480",
+ "481"
],
"location": {
"end": {
@@ -61927,7 +61975,7 @@
"language": "html",
"mutants": [
{
- "id": "2001",
+ "id": "2003",
"mutatorName": "BooleanLiteral",
"replacement": "true",
"statusReason": "Snapshot `Game Lobby Start Game Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61935,13 +61983,9 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "321"
+ "325"
],
"coveredBy": [
- "321",
- "322",
- "323",
- "324",
"325",
"326",
"327",
@@ -61954,21 +61998,26 @@
"334",
"335",
"336",
- "337"
+ "337",
+ "338",
+ "339",
+ "340",
+ "341",
+ "342"
],
"location": {
"end": {
"column": 47,
- "line": 62
+ "line": 63
},
"start": {
"column": 42,
- "line": 62
+ "line": 63
}
}
},
{
- "id": "2002",
+ "id": "2004",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "Snapshot `Game Lobby Start Game Button Component > should match snapshot when rendered. 1` mismatched",
@@ -61976,13 +62025,9 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "321"
+ "325"
],
"coveredBy": [
- "321",
- "322",
- "323",
- "324",
"325",
"326",
"327",
@@ -61995,21 +62040,26 @@
"334",
"335",
"336",
- "337"
+ "337",
+ "338",
+ "339",
+ "340",
+ "341",
+ "342"
],
"location": {
"end": {
"column": 98,
- "line": 64
+ "line": 65
},
"start": {
"column": 55,
- "line": 64
+ "line": 65
}
}
},
{
- "id": "2003",
+ "id": "2005",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "Snapshot `Game Lobby Start Game Button Component > should match snapshot when rendered. 1` mismatched",
@@ -62017,13 +62067,9 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "321"
+ "325"
],
"coveredBy": [
- "321",
- "322",
- "323",
- "324",
"325",
"326",
"327",
@@ -62036,21 +62082,26 @@
"334",
"335",
"336",
- "337"
+ "337",
+ "338",
+ "339",
+ "340",
+ "341",
+ "342"
],
"location": {
"end": {
"column": 99,
- "line": 66
+ "line": 67
},
"start": {
"column": 44,
- "line": 66
+ "line": 67
}
}
},
{
- "id": "2004",
+ "id": "2006",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expected 'true' to be 'false' // Object.is equality",
@@ -62058,13 +62109,9 @@
"testsCompleted": 6,
"static": false,
"killedBy": [
- "326"
+ "330"
],
"coveredBy": [
- "321",
- "322",
- "323",
- "324",
"325",
"326",
"327",
@@ -62077,21 +62124,26 @@
"334",
"335",
"336",
- "337"
+ "337",
+ "338",
+ "339",
+ "340",
+ "341",
+ "342"
],
"location": {
"end": {
"column": 99,
- "line": 66
+ "line": 67
},
"start": {
"column": 50,
- "line": 66
+ "line": 67
}
}
},
{
- "id": "2005",
+ "id": "2007",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "Snapshot `Game Lobby Start Game Button Component > should match snapshot when rendered. 1` mismatched",
@@ -62099,13 +62151,9 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "321"
+ "325"
],
"coveredBy": [
- "321",
- "322",
- "323",
- "324",
"325",
"326",
"327",
@@ -62118,21 +62166,26 @@
"334",
"335",
"336",
- "337"
+ "337",
+ "338",
+ "339",
+ "340",
+ "341",
+ "342"
],
"location": {
"end": {
"column": 99,
- "line": 66
+ "line": 67
},
"start": {
"column": 50,
- "line": 66
+ "line": 67
}
}
},
{
- "id": "2006",
+ "id": "2008",
"mutatorName": "LogicalOperator",
"replacement": "!canCreateGame.value && isLoadingCreateGame.value",
"statusReason": "Snapshot `Game Lobby Start Game Button Component > should match snapshot when rendered. 1` mismatched",
@@ -62140,13 +62193,9 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "321"
+ "325"
],
"coveredBy": [
- "321",
- "322",
- "323",
- "324",
"325",
"326",
"327",
@@ -62159,21 +62208,26 @@
"334",
"335",
"336",
- "337"
+ "337",
+ "338",
+ "339",
+ "340",
+ "341",
+ "342"
],
"location": {
"end": {
"column": 99,
- "line": 66
+ "line": 67
},
"start": {
"column": 50,
- "line": 66
+ "line": 67
}
}
},
{
- "id": "2007",
+ "id": "2009",
"mutatorName": "BooleanLiteral",
"replacement": "canCreateGame.value",
"statusReason": "Snapshot `Game Lobby Start Game Button Component > should match snapshot when rendered. 1` mismatched",
@@ -62181,13 +62235,9 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "321"
+ "325"
],
"coveredBy": [
- "321",
- "322",
- "323",
- "324",
"325",
"326",
"327",
@@ -62200,21 +62250,26 @@
"334",
"335",
"336",
- "337"
+ "337",
+ "338",
+ "339",
+ "340",
+ "341",
+ "342"
],
"location": {
"end": {
"column": 70,
- "line": 66
+ "line": 67
},
"start": {
"column": 50,
- "line": 66
+ "line": 67
}
}
},
{
- "id": "2008",
+ "id": "2010",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -62222,25 +62277,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "327"
+ "331"
],
"coveredBy": [
- "327",
- "328"
+ "331",
+ "332"
],
"location": {
"end": {
"column": 2,
- "line": 73
+ "line": 74
},
"start": {
"column": 45,
- "line": 68
+ "line": 69
}
}
},
{
- "id": "2009",
+ "id": "2011",
"mutatorName": "BooleanLiteral",
"replacement": "gameLobbyStartGameConfirmDialog.value",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -62248,25 +62303,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "327"
+ "331"
],
"coveredBy": [
- "327",
- "328"
+ "331",
+ "332"
],
"location": {
"end": {
"column": 45,
- "line": 69
+ "line": 70
},
"start": {
"column": 7,
- "line": 69
+ "line": 70
}
}
},
{
- "id": "2010",
+ "id": "2012",
"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",
@@ -62274,25 +62329,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "327"
+ "331"
],
"coveredBy": [
- "327",
- "328"
+ "331",
+ "332"
],
"location": {
"end": {
"column": 45,
- "line": 69
+ "line": 70
},
"start": {
"column": 7,
- "line": 69
+ "line": 70
}
}
},
{
- "id": "2011",
+ "id": "2013",
"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",
@@ -62300,25 +62355,25 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "328"
+ "332"
],
"coveredBy": [
- "327",
- "328"
+ "331",
+ "332"
],
"location": {
"end": {
"column": 45,
- "line": 69
+ "line": 70
},
"start": {
"column": 7,
- "line": 69
+ "line": 70
}
}
},
{
- "id": "2012",
+ "id": "2014",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -62326,24 +62381,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "328"
+ "332"
],
"coveredBy": [
- "328"
+ "332"
],
"location": {
"end": {
"column": 4,
- "line": 71
+ "line": 72
},
"start": {
"column": 47,
- "line": 69
+ "line": 70
}
}
},
{
- "id": "2013",
+ "id": "2015",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Start Game Confirm Dialog is not defined\",\n], but it was called with \"\"",
@@ -62351,24 +62406,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "328"
+ "332"
],
"coveredBy": [
- "328"
+ "332"
],
"location": {
"end": {
"column": 76,
- "line": 70
+ "line": 71
},
"start": {
"column": 23,
- "line": 70
+ "line": 71
}
}
},
{
- "id": "2014",
+ "id": "2016",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -62376,29 +62431,29 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "329"
+ "333"
],
"coveredBy": [
- "329",
- "330",
- "331",
- "332",
"333",
- "334"
+ "334",
+ "335",
+ "336",
+ "337",
+ "338"
],
"location": {
"end": {
"column": 2,
- "line": 83
+ "line": 84
},
"start": {
"column": 87,
- "line": 75
+ "line": 76
}
}
},
{
- "id": "2015",
+ "id": "2017",
"mutatorName": "BooleanLiteral",
"replacement": "false",
"statusReason": "expect(received).toBeTrue()\n\nExpected value to be true:\n true\nReceived:\n false",
@@ -62406,29 +62461,29 @@
"testsCompleted": 5,
"static": false,
"killedBy": [
- "333"
+ "337"
],
"coveredBy": [
- "329",
- "330",
- "331",
- "332",
"333",
- "334"
+ "334",
+ "335",
+ "336",
+ "337",
+ "338"
],
"location": {
"end": {
"column": 35,
- "line": 76
+ "line": 77
},
"start": {
"column": 31,
- "line": 76
+ "line": 77
}
}
},
{
- "id": "2016",
+ "id": "2018",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expected 'true' to be 'false' // Object.is equality",
@@ -62436,29 +62491,29 @@
"testsCompleted": 6,
"static": false,
"killedBy": [
- "334"
+ "338"
],
"coveredBy": [
- "329",
- "330",
- "331",
- "332",
"333",
- "334"
+ "334",
+ "335",
+ "336",
+ "337",
+ "338"
],
"location": {
"end": {
"column": 18,
- "line": 78
+ "line": 79
},
"start": {
"column": 7,
- "line": 78
+ "line": 79
}
}
},
{
- "id": "2017",
+ "id": "2019",
"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",
@@ -62466,29 +62521,29 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "330"
+ "334"
],
"coveredBy": [
- "329",
- "330",
- "331",
- "332",
"333",
- "334"
+ "334",
+ "335",
+ "336",
+ "337",
+ "338"
],
"location": {
"end": {
"column": 18,
- "line": 78
+ "line": 79
},
"start": {
"column": 7,
- "line": 78
+ "line": 79
}
}
},
{
- "id": "2018",
+ "id": "2020",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -62496,51 +62551,51 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "330"
+ "334"
],
"coveredBy": [
- "330",
- "331"
+ "334",
+ "335"
],
"location": {
"end": {
"column": 4,
- "line": 81
+ "line": 82
},
"start": {
"column": 20,
- "line": 78
+ "line": 79
}
}
},
{
- "id": "2019",
+ "id": "2021",
"mutatorName": "StringLiteral",
"replacement": "``",
- "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/game/323d720a-074b-4f12-ac4c-8ccd68722387\",\n], but it was called with \"\"",
+ "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"/game/e90c7ba9-2fb1-48bc-9666-6d2fa08a11aa\",\n], but it was called with \"\"",
"status": "Killed",
"testsCompleted": 1,
"static": false,
"killedBy": [
- "330"
+ "334"
],
"coveredBy": [
- "330",
- "331"
+ "334",
+ "335"
],
"location": {
"end": {
"column": 48,
- "line": 79
+ "line": 80
},
"start": {
"column": 22,
- "line": 79
+ "line": 80
}
}
},
{
- "id": "2020",
+ "id": "2022",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"summary\": \"components.GameLobbyStartGameButton.gameCreated\",\n },\n], but it was called with Object {}",
@@ -62548,25 +62603,25 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "331"
+ "335"
],
"coveredBy": [
- "330",
- "331"
+ "334",
+ "335"
],
"location": {
"end": {
"column": 86,
- "line": 80
+ "line": 81
},
"start": {
"column": 21,
- "line": 80
+ "line": 81
}
}
},
{
- "id": "2021",
+ "id": "2023",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"summary\": \"components.GameLobbyStartGameButton.gameCreated\",\n },\n], but it was called with Object {\n \"summary\": \"\",\n}",
@@ -62574,25 +62629,25 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "331"
+ "335"
],
"coveredBy": [
- "330",
- "331"
+ "334",
+ "335"
],
"location": {
"end": {
"column": 83,
- "line": 80
+ "line": 81
},
"start": {
"column": 34,
- "line": 80
+ "line": 81
}
}
},
{
- "id": "2022",
+ "id": "2024",
"mutatorName": "BooleanLiteral",
"replacement": "true",
"statusReason": "expected 'true' to be 'false' // Object.is equality",
@@ -62600,29 +62655,29 @@
"testsCompleted": 6,
"static": false,
"killedBy": [
- "334"
+ "338"
],
"coveredBy": [
- "329",
- "330",
- "331",
- "332",
"333",
- "334"
+ "334",
+ "335",
+ "336",
+ "337",
+ "338"
],
"location": {
"end": {
"column": 36,
- "line": 82
+ "line": 83
},
"start": {
"column": 31,
- "line": 82
+ "line": 83
}
}
},
{
- "id": "2023",
+ "id": "2025",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -62630,24 +62685,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "335"
+ "339"
],
"coveredBy": [
- "335"
+ "339"
],
"location": {
"end": {
"column": 2,
- "line": 87
+ "line": 88
},
"start": {
"column": 81,
- "line": 85
+ "line": 86
}
}
},
{
- "id": "2024",
+ "id": "2026",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -62655,24 +62710,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "335"
+ "339"
],
"coveredBy": [
- "335"
+ "339"
],
"location": {
"end": {
"column": 35,
- "line": 86
+ "line": 87
},
"start": {
"column": 8,
- "line": 86
+ "line": 87
}
}
},
{
- "id": "2025",
+ "id": "2027",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -62680,24 +62735,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "336"
+ "340"
],
"coveredBy": [
- "336"
+ "340"
],
"location": {
"end": {
"column": 2,
- "line": 91
+ "line": 92
},
"start": {
"column": 92,
- "line": 89
+ "line": 90
}
}
},
{
- "id": "2026",
+ "id": "2028",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -62705,24 +62760,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "336"
+ "340"
],
"coveredBy": [
- "336"
+ "340"
],
"location": {
"end": {
"column": 46,
- "line": 90
+ "line": 91
},
"start": {
"column": 8,
- "line": 90
+ "line": 91
}
}
},
{
- "id": "2027",
+ "id": "2029",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -62730,24 +62785,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "337"
+ "341"
],
"coveredBy": [
- "337"
+ "341"
],
"location": {
"end": {
"column": 2,
- "line": 95
+ "line": 96
},
"start": {
"column": 92,
- "line": 93
+ "line": 94
}
}
},
{
- "id": "2028",
+ "id": "2030",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -62755,30 +62810,80 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "337"
+ "341"
],
"coveredBy": [
- "337"
+ "341"
],
"location": {
"end": {
"column": 46,
- "line": 94
+ "line": 95
},
"start": {
"column": 8,
- "line": 94
+ "line": 95
+ }
+ }
+ },
+ {
+ "id": "2031",
+ "mutatorName": "BlockStatement",
+ "replacement": "{}",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "342"
+ ],
+ "coveredBy": [
+ "342"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 100
+ },
+ "start": {
+ "column": 49,
+ "line": 98
+ }
+ }
+ },
+ {
+ "id": "2032",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "342"
+ ],
+ "coveredBy": [
+ "342"
+ ],
+ "location": {
+ "end": {
+ "column": 38,
+ "line": 99
+ },
+ "start": {
+ "column": 8,
+ "line": 99
}
}
}
],
- "source": "\n \n \n\n"
+ "source": "\n \n \n\n"
},
"app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialog.vue": {
"language": "html",
"mutants": [
{
- "id": "2029",
+ "id": "2033",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "expected [ 'players-ready' ] to strictly equal [ …(2) ]",
@@ -62786,39 +62891,42 @@
"testsCompleted": 4,
"static": false,
"killedBy": [
- "528"
+ "371"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 43
+ "line": 47
},
"start": {
"column": 57,
- "line": 43
+ "line": 47
}
}
},
{
- "id": "2030",
+ "id": "2034",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expected [ …(2) ] to strictly equal [ 'players-ready' ]",
@@ -62826,39 +62934,42 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "526"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 43
+ "line": 47
},
"start": {
"column": 63,
- "line": 43
+ "line": 47
}
}
},
{
- "id": "2031",
+ "id": "2035",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "expected [ 'players-ready' ] to strictly equal [ …(2) ]",
@@ -62866,39 +62977,42 @@
"testsCompleted": 4,
"static": false,
"killedBy": [
- "528"
+ "371"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 43
+ "line": 47
},
"start": {
"column": 63,
- "line": 43
+ "line": 47
}
}
},
{
- "id": "2032",
+ "id": "2036",
"mutatorName": "EqualityOperator",
"replacement": "getPlayersWithRoleNameInCreateGameDto(\"thief\").length >= 0",
"statusReason": "expected [ …(2) ] to strictly equal [ 'players-ready' ]",
@@ -62906,39 +63020,42 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "526"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 43
+ "line": 47
},
"start": {
"column": 63,
- "line": 43
+ "line": 47
}
}
},
{
- "id": "2033",
+ "id": "2037",
"mutatorName": "EqualityOperator",
"replacement": "getPlayersWithRoleNameInCreateGameDto(\"thief\").length <= 0",
"statusReason": "expected [ …(2) ] to strictly equal [ 'players-ready' ]",
@@ -62946,39 +63063,42 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "526"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 43
+ "line": 47
},
"start": {
"column": 63,
- "line": 43
+ "line": 47
}
}
},
{
- "id": "2034",
+ "id": "2038",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected [ 'players-ready' ] to strictly equal [ …(2) ]",
@@ -62986,39 +63106,42 @@
"testsCompleted": 4,
"static": false,
"killedBy": [
- "528"
+ "371"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 108,
- "line": 43
+ "line": 47
},
"start": {
"column": 101,
- "line": 43
+ "line": 47
}
}
},
{
- "id": "2035",
+ "id": "2039",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "expected [ 'players-ready' ] to strictly equal [ …(2) ]",
@@ -63026,39 +63149,42 @@
"testsCompleted": 5,
"static": false,
"killedBy": [
- "529"
+ "372"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 45
+ "line": 49
},
"start": {
"column": 57,
- "line": 45
+ "line": 49
}
}
},
{
- "id": "2036",
+ "id": "2040",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expected [ …(2) ] to strictly equal [ 'players-ready' ]",
@@ -63066,39 +63192,42 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "526"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 45
+ "line": 49
},
"start": {
"column": 63,
- "line": 45
+ "line": 49
}
}
},
{
- "id": "2037",
+ "id": "2041",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "expected [ 'players-ready' ] to strictly equal [ …(2) ]",
@@ -63106,39 +63235,42 @@
"testsCompleted": 5,
"static": false,
"killedBy": [
- "529"
+ "372"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 45
+ "line": 49
},
"start": {
"column": 63,
- "line": 45
+ "line": 49
}
}
},
{
- "id": "2038",
+ "id": "2042",
"mutatorName": "EqualityOperator",
"replacement": "getPlayersWithRoleNameInCreateGameDto(\"actor\").length >= 0",
"statusReason": "expected [ …(2) ] to strictly equal [ 'players-ready' ]",
@@ -63146,39 +63278,42 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "526"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 45
+ "line": 49
},
"start": {
"column": 63,
- "line": 45
+ "line": 49
}
}
},
{
- "id": "2039",
+ "id": "2043",
"mutatorName": "EqualityOperator",
"replacement": "getPlayersWithRoleNameInCreateGameDto(\"actor\").length <= 0",
"statusReason": "expected [ …(2) ] to strictly equal [ 'players-ready' ]",
@@ -63186,39 +63321,42 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "526"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 45
+ "line": 49
},
"start": {
"column": 63,
- "line": 45
+ "line": 49
}
}
},
{
- "id": "2040",
+ "id": "2044",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected [ 'players-ready' ] to strictly equal [ …(2) ]",
@@ -63226,239 +63364,515 @@
"testsCompleted": 5,
"static": false,
"killedBy": [
- "529"
+ "372"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 108,
- "line": 45
+ "line": 49
},
"start": {
"column": 101,
- "line": 45
+ "line": 49
}
}
},
{
- "id": "2041",
+ "id": "2045",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
- "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\".",
+ "statusReason": "expected [ 'players-ready' ] to strictly equal [ 'game-options-changed', …(1) ]",
"status": "Killed",
- "testsCompleted": 1,
+ "testsCompleted": 6,
"static": false,
"killedBy": [
- "525"
+ "373"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
- "column": 2,
- "line": 52
+ "column": 95,
+ "line": 51
},
"start": {
- "column": 70,
- "line": 47
+ "column": 49,
+ "line": 51
}
}
},
{
- "id": "2042",
- "mutatorName": "ArrayDeclaration",
- "replacement": "[]",
- "statusReason": "expected [] to strictly equal [ 'players-ready' ]",
+ "id": "2046",
+ "mutatorName": "ConditionalExpression",
+ "replacement": "true",
+ "statusReason": "expected [ 'game-options-changed', …(1) ] to strictly equal [ 'players-ready' ]",
"status": "Killed",
"testsCompleted": 2,
"static": false,
"killedBy": [
- "526"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
- "column": 2,
- "line": 52
+ "column": 95,
+ "line": 51
},
"start": {
- "column": 76,
- "line": 47
+ "column": 55,
+ "line": 51
}
}
},
{
- "id": "2043",
- "mutatorName": "StringLiteral",
- "replacement": "\"\"",
- "statusReason": "expected [ '', 'players-ready' ] to strictly equal [ 'players-positioned', …(1) ]",
+ "id": "2047",
+ "mutatorName": "ConditionalExpression",
+ "replacement": "false",
+ "statusReason": "expected [ 'players-ready' ] to strictly equal [ 'game-options-changed', …(1) ]",
"status": "Killed",
- "testsCompleted": 3,
+ "testsCompleted": 6,
"static": false,
"killedBy": [
- "527"
+ "373"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
- "column": 126,
- "line": 48
+ "column": 95,
+ "line": 51
},
"start": {
- "column": 106,
- "line": 48
+ "column": 55,
+ "line": 51
}
}
},
{
- "id": "2044",
- "mutatorName": "StringLiteral",
- "replacement": "\"\"",
- "statusReason": "expected [ '', 'players-ready' ] to strictly equal [ …(2) ]",
+ "id": "2048",
+ "mutatorName": "EqualityOperator",
+ "replacement": "changedGameOptionsTexts.value.length >= 0",
+ "statusReason": "expected [ 'game-options-changed', …(1) ] to strictly equal [ 'players-ready' ]",
"status": "Killed",
- "testsCompleted": 4,
+ "testsCompleted": 2,
"static": false,
"killedBy": [
- "528"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
- "column": 120,
- "line": 49
+ "column": 95,
+ "line": 51
},
"start": {
- "column": 89,
- "line": 49
+ "column": 55,
+ "line": 51
}
}
},
{
- "id": "2045",
- "mutatorName": "StringLiteral",
- "replacement": "\"\"",
- "statusReason": "expected [ '', 'players-ready' ] to strictly equal [ …(2) ]",
+ "id": "2049",
+ "mutatorName": "EqualityOperator",
+ "replacement": "changedGameOptionsTexts.value.length <= 0",
+ "statusReason": "expected [ 'game-options-changed', …(1) ] to strictly equal [ 'players-ready' ]",
"status": "Killed",
- "testsCompleted": 5,
+ "testsCompleted": 2,
"static": false,
"killedBy": [
- "529"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
+ ],
+ "location": {
+ "end": {
+ "column": 95,
+ "line": 51
+ },
+ "start": {
+ "column": 55,
+ "line": 51
+ }
+ }
+ },
+ {
+ "id": "2050",
+ "mutatorName": "ArrowFunction",
+ "replacement": "() => undefined",
+ "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": [
+ "368"
+ ],
+ "coveredBy": [
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 59
+ },
+ "start": {
+ "column": 70,
+ "line": 53
+ }
+ }
+ },
+ {
+ "id": "2051",
+ "mutatorName": "ArrayDeclaration",
+ "replacement": "[]",
+ "statusReason": "expected [] to strictly equal [ 'players-ready' ]",
+ "status": "Killed",
+ "testsCompleted": 2,
+ "static": false,
+ "killedBy": [
+ "369"
+ ],
+ "coveredBy": [
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 59
+ },
+ "start": {
+ "column": 76,
+ "line": 53
+ }
+ }
+ },
+ {
+ "id": "2052",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "expected [ '', 'players-ready' ] to strictly equal [ 'players-positioned', …(1) ]",
+ "status": "Killed",
+ "testsCompleted": 3,
+ "static": false,
+ "killedBy": [
+ "370"
+ ],
+ "coveredBy": [
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
+ ],
+ "location": {
+ "end": {
+ "column": 126,
+ "line": 54
+ },
+ "start": {
+ "column": 106,
+ "line": 54
+ }
+ }
+ },
+ {
+ "id": "2053",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "expected [ '', 'players-ready' ] to strictly equal [ …(2) ]",
+ "status": "Killed",
+ "testsCompleted": 4,
+ "static": false,
+ "killedBy": [
+ "371"
+ ],
+ "coveredBy": [
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 120,
- "line": 50
+ "line": 55
},
"start": {
"column": 89,
- "line": 50
+ "line": 55
}
}
},
{
- "id": "2046",
+ "id": "2054",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "expected [ '', 'players-ready' ] to strictly equal [ …(2) ]",
+ "status": "Killed",
+ "testsCompleted": 5,
+ "static": false,
+ "killedBy": [
+ "372"
+ ],
+ "coveredBy": [
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
+ ],
+ "location": {
+ "end": {
+ "column": 120,
+ "line": 56
+ },
+ "start": {
+ "column": 89,
+ "line": 56
+ }
+ }
+ },
+ {
+ "id": "2055",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "expected [ '', 'players-ready' ] to strictly equal [ 'game-options-changed', …(1) ]",
+ "status": "Killed",
+ "testsCompleted": 6,
+ "static": false,
+ "killedBy": [
+ "373"
+ ],
+ "coveredBy": [
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
+ ],
+ "location": {
+ "end": {
+ "column": 103,
+ "line": 57
+ },
+ "start": {
+ "column": 81,
+ "line": 57
+ }
+ }
+ },
+ {
+ "id": "2056",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected [ '' ] to strictly equal [ 'players-ready' ]",
@@ -63466,79 +63880,85 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "526"
+ "369"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 18,
- "line": 51
+ "line": 58
},
"start": {
"column": 3,
- "line": 51
+ "line": 58
}
}
},
{
- "id": "2047",
+ "id": "2057",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "expected undefined to be 'players-ready' // Object.is equality",
"status": "Killed",
- "testsCompleted": 9,
+ "testsCompleted": 10,
"static": false,
"killedBy": [
- "533"
+ "377"
],
"coveredBy": [
- "525",
- "526",
- "527",
- "528",
- "529",
- "530",
- "531",
- "532",
- "533",
- "534",
- "535",
- "536",
- "537",
- "538",
- "539",
- "540"
+ "368",
+ "369",
+ "370",
+ "371",
+ "372",
+ "373",
+ "374",
+ "375",
+ "376",
+ "377",
+ "378",
+ "379",
+ "380",
+ "381",
+ "382",
+ "383",
+ "384",
+ "385",
+ "386"
],
"location": {
"end": {
"column": 122,
- "line": 54
+ "line": 61
},
"start": {
"column": 74,
- "line": 54
+ "line": 61
}
}
},
{
- "id": "2048",
+ "id": "2058",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected 1 to be +0 // Object.is equality",
@@ -63546,25 +63966,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "530"
+ "374"
],
"coveredBy": [
- "530",
- "531"
+ "374",
+ "375"
],
"location": {
"end": {
"column": 2,
- "line": 63
+ "line": 70
},
"start": {
"column": 23,
- "line": 56
+ "line": 63
}
}
},
{
- "id": "2049",
+ "id": "2059",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"accept\": Any,\n \"group\": \"game-lobby-start-game-confirm-dialog\",\n \"position\": \"bottom\",\n },\n], but it was called with Object {}",
@@ -63572,25 +63992,25 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "531"
+ "375"
],
"coveredBy": [
- "530",
- "531"
+ "374",
+ "375"
],
"location": {
"end": {
"column": 4,
- "line": 62
+ "line": 69
},
"start": {
"column": 18,
- "line": 58
+ "line": 65
}
}
},
{
- "id": "2050",
+ "id": "2060",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"accept\": Any,\n \"group\": \"game-lobby-start-game-confirm-dialog\",\n \"position\": \"bottom\",\n },\n], but it was called with Object {\n \"accept\": [Function confirmStartGame],\n \"group\": \"\",\n \"position\": \"bottom\",\n}",
@@ -63598,25 +64018,25 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "531"
+ "375"
],
"coveredBy": [
- "530",
- "531"
+ "374",
+ "375"
],
"location": {
"end": {
"column": 50,
- "line": 59
+ "line": 66
},
"start": {
"column": 12,
- "line": 59
+ "line": 66
}
}
},
{
- "id": "2051",
+ "id": "2061",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Object {\n \"accept\": Any,\n \"group\": \"game-lobby-start-game-confirm-dialog\",\n \"position\": \"bottom\",\n },\n], but it was called with Object {\n \"accept\": [Function confirmStartGame],\n \"group\": \"game-lobby-start-game-confirm-dialog\",\n \"position\": \"\",\n}",
@@ -63624,25 +64044,25 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "531"
+ "375"
],
"coveredBy": [
- "530",
- "531"
+ "374",
+ "375"
],
"location": {
"end": {
"column": 23,
- "line": 60
+ "line": 67
},
"start": {
"column": 15,
- "line": 60
+ "line": 67
}
}
},
{
- "id": "2052",
+ "id": "2062",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected +0 to be 1 // Object.is equality",
@@ -63650,25 +64070,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "532"
+ "376"
],
"coveredBy": [
- "532",
- "533"
+ "376",
+ "377"
],
"location": {
"end": {
"column": 2,
- "line": 67
+ "line": 74
},
"start": {
"column": 76,
- "line": 65
+ "line": 72
}
}
},
{
- "id": "2053",
+ "id": "2063",
"mutatorName": "UpdateOperator",
"replacement": "confirmStepIndex.value--",
"statusReason": "expected -1 to be 1 // Object.is equality",
@@ -63676,25 +64096,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "532"
+ "376"
],
"coveredBy": [
- "532",
- "533"
+ "376",
+ "377"
],
"location": {
"end": {
"column": 27,
- "line": 66
+ "line": 73
},
"start": {
"column": 3,
- "line": 66
+ "line": 73
}
}
},
{
- "id": "2054",
+ "id": "2064",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -63702,24 +64122,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "534"
+ "378"
],
"coveredBy": [
- "534"
+ "378"
],
"location": {
"end": {
"column": 2,
- "line": 71
+ "line": 78
},
"start": {
"column": 35,
- "line": 69
+ "line": 76
}
}
},
{
- "id": "2055",
+ "id": "2065",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -63727,24 +64147,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "534"
+ "378"
],
"coveredBy": [
- "534"
+ "378"
],
"location": {
"end": {
"column": 26,
- "line": 70
+ "line": 77
},
"start": {
"column": 8,
- "line": 70
+ "line": 77
}
}
},
{
- "id": "2056",
+ "id": "2066",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -63752,25 +64172,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "535"
+ "379"
],
"coveredBy": [
- "535",
- "536"
+ "379",
+ "380"
],
"location": {
"end": {
"column": 2,
- "line": 76
+ "line": 83
},
"start": {
"column": 116,
- "line": 73
+ "line": 80
}
}
},
{
- "id": "2057",
+ "id": "2067",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -63778,25 +64198,25 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "536"
+ "380"
],
"coveredBy": [
- "535",
- "536"
+ "379",
+ "380"
],
"location": {
"end": {
"column": 35,
- "line": 75
+ "line": 82
},
"start": {
"column": 8,
- "line": 75
+ "line": 82
}
}
},
{
- "id": "2058",
+ "id": "2068",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -63804,25 +64224,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "537"
+ "381"
],
"coveredBy": [
- "537",
- "538"
+ "381",
+ "382"
],
"location": {
"end": {
"column": 2,
- "line": 81
+ "line": 88
},
"start": {
"column": 127,
- "line": 78
+ "line": 85
}
}
},
{
- "id": "2059",
+ "id": "2069",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -63830,25 +64250,25 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "538"
+ "382"
],
"coveredBy": [
- "537",
- "538"
+ "381",
+ "382"
],
"location": {
"end": {
"column": 46,
- "line": 80
+ "line": 87
},
"start": {
"column": 8,
- "line": 80
+ "line": 87
}
}
},
{
- "id": "2060",
+ "id": "2070",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -63856,25 +64276,25 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "539"
+ "383"
],
"coveredBy": [
- "539",
- "540"
+ "383",
+ "384"
],
"location": {
"end": {
"column": 2,
- "line": 86
+ "line": 93
},
"start": {
"column": 127,
- "line": 83
+ "line": 90
}
}
},
{
- "id": "2061",
+ "id": "2071",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -63882,25 +64302,77 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "540"
+ "384"
],
"coveredBy": [
- "539",
- "540"
+ "383",
+ "384"
],
"location": {
"end": {
"column": 46,
- "line": 85
+ "line": 92
},
"start": {
"column": 8,
- "line": 85
+ "line": 92
}
}
},
{
- "id": "2062",
+ "id": "2072",
+ "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": [
+ "385"
+ ],
+ "coveredBy": [
+ "385",
+ "386"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 98
+ },
+ "start": {
+ "column": 119,
+ "line": 95
+ }
+ }
+ },
+ {
+ "id": "2073",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 2,
+ "static": false,
+ "killedBy": [
+ "386"
+ ],
+ "coveredBy": [
+ "385",
+ "386"
+ ],
+ "location": {
+ "end": {
+ "column": 38,
+ "line": 97
+ },
+ "start": {
+ "column": 8,
+ "line": 97
+ }
+ }
+ },
+ {
+ "id": "2074",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "The macro defineExpose from Nuxt is breaking Stryker, so we ignore it.",
@@ -63909,22 +64381,22 @@
"location": {
"end": {
"column": 2,
- "line": 90
+ "line": 102
},
"start": {
"column": 54,
- "line": 88
+ "line": 100
}
}
}
],
- "source": "\n \n \n \n \n \n \n\n"
+ "source": "\n \n \n \n \n \n \n\n"
},
"app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContainer.vue": {
"language": "html",
"mutants": [
{
- "id": "2063",
+ "id": "2075",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -63932,24 +64404,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1190"
+ "1097"
],
"coveredBy": [
- "1190"
+ "1097"
],
"location": {
"end": {
"column": 2,
- "line": 56
+ "line": 57
},
"start": {
"column": 32,
- "line": 54
+ "line": 55
}
}
},
{
- "id": "2064",
+ "id": "2076",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -63957,24 +64429,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1190"
+ "1097"
],
"coveredBy": [
- "1190"
+ "1097"
],
"location": {
"end": {
"column": 21,
- "line": 55
+ "line": 56
},
"start": {
"column": 8,
- "line": 55
+ "line": 56
}
}
},
{
- "id": "2065",
+ "id": "2077",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -63982,24 +64454,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1191"
+ "1098"
],
"coveredBy": [
- "1191"
+ "1098"
],
"location": {
"end": {
"column": 2,
- "line": 60
+ "line": 61
},
"start": {
"column": 46,
- "line": 58
+ "line": 59
}
}
},
{
- "id": "2066",
+ "id": "2078",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64007,24 +64479,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1191"
+ "1098"
],
"coveredBy": [
- "1191"
+ "1098"
],
"location": {
"end": {
"column": 35,
- "line": 59
+ "line": 60
},
"start": {
"column": 8,
- "line": 59
+ "line": 60
}
}
},
{
- "id": "2067",
+ "id": "2079",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64032,24 +64504,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1192"
+ "1099"
],
"coveredBy": [
- "1192"
+ "1099"
],
"location": {
"end": {
"column": 2,
- "line": 64
+ "line": 65
},
"start": {
"column": 57,
- "line": 62
+ "line": 63
}
}
},
{
- "id": "2068",
+ "id": "2080",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64057,24 +64529,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1192"
+ "1099"
],
"coveredBy": [
- "1192"
+ "1099"
],
"location": {
"end": {
"column": 46,
- "line": 63
+ "line": 64
},
"start": {
"column": 8,
- "line": 63
+ "line": 64
}
}
},
{
- "id": "2069",
+ "id": "2081",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64082,24 +64554,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1193"
+ "1100"
],
"coveredBy": [
- "1193"
+ "1100"
],
"location": {
"end": {
"column": 2,
- "line": 68
+ "line": 69
},
"start": {
"column": 57,
- "line": 66
+ "line": 67
}
}
},
{
- "id": "2070",
+ "id": "2082",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64107,24 +64579,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1193"
+ "1100"
],
"coveredBy": [
- "1193"
+ "1100"
],
"location": {
"end": {
"column": 46,
- "line": 67
+ "line": 68
},
"start": {
"column": 8,
- "line": 67
+ "line": 68
}
}
},
{
- "id": "2071",
+ "id": "2083",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64132,24 +64604,74 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1195"
+ "1101"
],
"coveredBy": [
- "1195"
+ "1101"
],
"location": {
"end": {
"column": 2,
+ "line": 73
+ },
+ "start": {
+ "column": 49,
+ "line": 71
+ }
+ }
+ },
+ {
+ "id": "2084",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1101"
+ ],
+ "coveredBy": [
+ "1101"
+ ],
+ "location": {
+ "end": {
+ "column": 38,
+ "line": 72
+ },
+ "start": {
+ "column": 8,
"line": 72
+ }
+ }
+ },
+ {
+ "id": "2085",
+ "mutatorName": "BlockStatement",
+ "replacement": "{}",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1103"
+ ],
+ "coveredBy": [
+ "1103"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 77
},
"start": {
"column": 37,
- "line": 70
+ "line": 75
}
}
},
{
- "id": "2072",
+ "id": "2086",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64157,24 +64679,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1195"
+ "1103"
],
"coveredBy": [
- "1195"
+ "1103"
],
"location": {
"end": {
"column": 26,
- "line": 71
+ "line": 76
},
"start": {
"column": 8,
- "line": 71
+ "line": 76
}
}
},
{
- "id": "2073",
+ "id": "2087",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64182,24 +64704,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1196"
+ "1104"
],
"coveredBy": [
- "1196"
+ "1104"
],
"location": {
"end": {
"column": 2,
- "line": 76
+ "line": 81
},
"start": {
"column": 36,
- "line": 74
+ "line": 79
}
}
},
{
- "id": "2074",
+ "id": "2088",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64207,30 +64729,30 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1196"
+ "1104"
],
"coveredBy": [
- "1196"
+ "1104"
],
"location": {
"end": {
"column": 25,
- "line": 75
+ "line": 80
},
"start": {
"column": 8,
- "line": 75
+ "line": 80
}
}
}
],
- "source": "\n \n \n\n \n\n \n
\n \n\n"
+ "source": "\n \n \n\n \n\n \n
\n \n\n"
},
"app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogActorAdditionalCardsPlaced/GameLobbyStartGameConfirmDialogActorAdditionalCardsPlaced.vue": {
"language": "html",
"mutants": [
{
- "id": "2075",
+ "id": "2089",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"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\".",
@@ -64238,19 +64760,19 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1123"
+ "1150"
],
"coveredBy": [
- "1123",
- "1124",
- "1125",
- "1126",
- "1127",
- "1128",
- "1129",
- "1130",
- "1131",
- "1132"
+ "1150",
+ "1151",
+ "1152",
+ "1153",
+ "1154",
+ "1155",
+ "1156",
+ "1157",
+ "1158",
+ "1159"
],
"location": {
"end": {
@@ -64264,7 +64786,7 @@
}
},
{
- "id": "2076",
+ "id": "2090",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component > should match snapshot when rendered. 1` mismatched",
@@ -64272,19 +64794,19 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1123"
+ "1150"
],
"coveredBy": [
- "1123",
- "1124",
- "1125",
- "1126",
- "1127",
- "1128",
- "1129",
- "1130",
- "1131",
- "1132"
+ "1150",
+ "1151",
+ "1152",
+ "1153",
+ "1154",
+ "1155",
+ "1156",
+ "1157",
+ "1158",
+ "1159"
],
"location": {
"end": {
@@ -64298,7 +64820,7 @@
}
},
{
- "id": "2077",
+ "id": "2091",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component > should match snapshot when rendered. 1` mismatched",
@@ -64306,19 +64828,19 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1123"
+ "1150"
],
"coveredBy": [
- "1123",
- "1124",
- "1125",
- "1126",
- "1127",
- "1128",
- "1129",
- "1130",
- "1131",
- "1132"
+ "1150",
+ "1151",
+ "1152",
+ "1153",
+ "1154",
+ "1155",
+ "1156",
+ "1157",
+ "1158",
+ "1159"
],
"location": {
"end": {
@@ -64332,7 +64854,7 @@
}
},
{
- "id": "2078",
+ "id": "2092",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Actor Additional Cards Placed Component > should match snapshot when rendered. 1` mismatched",
@@ -64340,19 +64862,19 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1123"
+ "1150"
],
"coveredBy": [
- "1123",
- "1124",
- "1125",
- "1126",
- "1127",
- "1128",
- "1129",
- "1130",
- "1131",
- "1132"
+ "1150",
+ "1151",
+ "1152",
+ "1153",
+ "1154",
+ "1155",
+ "1156",
+ "1157",
+ "1158",
+ "1159"
],
"location": {
"end": {
@@ -64366,7 +64888,7 @@
}
},
{
- "id": "2079",
+ "id": "2093",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64374,10 +64896,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1132"
+ "1159"
],
"coveredBy": [
- "1132"
+ "1159"
],
"location": {
"end": {
@@ -64391,7 +64913,7 @@
}
},
{
- "id": "2080",
+ "id": "2094",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64399,10 +64921,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1132"
+ "1159"
],
"coveredBy": [
- "1132"
+ "1159"
],
"location": {
"end": {
@@ -64416,7 +64938,7 @@
}
},
{
- "id": "2081",
+ "id": "2095",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64424,10 +64946,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1130"
+ "1157"
],
"coveredBy": [
- "1130"
+ "1157"
],
"location": {
"end": {
@@ -64441,7 +64963,7 @@
}
},
{
- "id": "2082",
+ "id": "2096",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64449,10 +64971,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1130"
+ "1157"
],
"coveredBy": [
- "1130"
+ "1157"
],
"location": {
"end": {
@@ -64472,7 +64994,7 @@
"language": "html",
"mutants": [
{
- "id": "2083",
+ "id": "2097",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Content Component > should match snapshot when rendered. 1` mismatched",
@@ -64480,32 +65002,34 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "910"
+ "711"
],
"coveredBy": [
- "910",
- "911",
- "912",
- "913",
- "914",
- "915",
- "916",
- "917",
- "918"
+ "711",
+ "712",
+ "713",
+ "714",
+ "715",
+ "716",
+ "717",
+ "718",
+ "719",
+ "720",
+ "721"
],
"location": {
"end": {
"column": 2,
- "line": 36
+ "line": 40
},
"start": {
- "column": 124,
- "line": 31
+ "column": 88,
+ "line": 34
}
}
},
{
- "id": "2084",
+ "id": "2098",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Content Component > should match snapshot when rendered. 1` mismatched",
@@ -64513,32 +65037,34 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "910"
+ "711"
],
"coveredBy": [
- "910",
- "911",
- "912",
- "913",
- "914",
- "915",
- "916",
- "917",
- "918"
+ "711",
+ "712",
+ "713",
+ "714",
+ "715",
+ "716",
+ "717",
+ "718",
+ "719",
+ "720",
+ "721"
],
"location": {
"end": {
- "column": 147,
- "line": 38
+ "column": 111,
+ "line": 42
},
"start": {
- "column": 93,
- "line": 38
+ "column": 57,
+ "line": 42
}
}
},
{
- "id": "2085",
+ "id": "2099",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64546,24 +65072,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "915"
+ "717"
],
"coveredBy": [
- "915"
+ "717"
],
"location": {
"end": {
"column": 2,
- "line": 42
+ "line": 46
},
"start": {
"column": 56,
- "line": 40
+ "line": 44
}
}
},
{
- "id": "2086",
+ "id": "2100",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64571,24 +65097,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "915"
+ "717"
],
"coveredBy": [
- "915"
+ "717"
],
"location": {
"end": {
"column": 21,
- "line": 41
+ "line": 45
},
"start": {
"column": 8,
- "line": 41
+ "line": 45
}
}
},
{
- "id": "2087",
+ "id": "2101",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64596,24 +65122,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "916"
+ "718"
],
"coveredBy": [
- "916"
+ "718"
],
"location": {
"end": {
"column": 2,
- "line": 46
+ "line": 50
},
"start": {
"column": 70,
- "line": 44
+ "line": 48
}
}
},
{
- "id": "2088",
+ "id": "2102",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64621,24 +65147,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "916"
+ "718"
],
"coveredBy": [
- "916"
+ "718"
],
"location": {
"end": {
"column": 35,
- "line": 45
+ "line": 49
},
"start": {
"column": 8,
- "line": 45
+ "line": 49
}
}
},
{
- "id": "2089",
+ "id": "2103",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64646,24 +65172,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "917"
+ "719"
],
"coveredBy": [
- "917"
+ "719"
],
"location": {
"end": {
"column": 2,
- "line": 50
+ "line": 54
},
"start": {
"column": 57,
- "line": 48
+ "line": 52
}
}
},
{
- "id": "2090",
+ "id": "2104",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64671,24 +65197,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "917"
+ "719"
],
"coveredBy": [
- "917"
+ "719"
],
"location": {
"end": {
"column": 46,
- "line": 49
+ "line": 53
},
"start": {
"column": 8,
- "line": 49
+ "line": 53
}
}
},
{
- "id": "2091",
+ "id": "2105",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64696,24 +65222,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "918"
+ "720"
],
"coveredBy": [
- "918"
+ "720"
],
"location": {
"end": {
"column": 2,
- "line": 54
+ "line": 58
},
"start": {
"column": 57,
- "line": 52
+ "line": 56
}
}
},
{
- "id": "2092",
+ "id": "2106",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64721,30 +65247,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "918"
+ "720"
],
"coveredBy": [
- "918"
+ "720"
],
"location": {
"end": {
"column": 46,
- "line": 53
+ "line": 57
},
"start": {
"column": 8,
- "line": 53
+ "line": 57
}
}
- }
- ],
- "source": "\n \n \n \n \n
\n \n\n"
- },
- "app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogPlayersPositioned/GameLobbyStartGameConfirmDialogPlayersPositioned.vue": {
- "language": "html",
- "mutants": [
+ },
{
- "id": "2093",
+ "id": "2107",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64752,24 +65272,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1611"
+ "721"
],
"coveredBy": [
- "1611"
+ "721"
],
"location": {
"end": {
"column": 2,
- "line": 60
+ "line": 62
},
"start": {
- "column": 47,
- "line": 58
+ "column": 49,
+ "line": 60
}
}
},
{
- "id": "2094",
+ "id": "2108",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64777,39 +65297,333 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1611"
+ "721"
],
"coveredBy": [
- "1611"
+ "721"
],
"location": {
"end": {
- "column": 21,
- "line": 59
+ "column": 38,
+ "line": 61
},
"start": {
"column": 8,
- "line": 59
+ "line": 61
}
}
- },
+ }
+ ],
+ "source": "\n \n \n \n \n
\n \n\n"
+ },
+ "app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogGameOptionsChanged/GameLobbyStartGameConfirmDialogGameOptionsChanged.vue": {
+ "language": "html",
+ "mutants": [
{
- "id": "2095",
- "mutatorName": "BlockStatement",
- "replacement": "{}",
- "statusReason": "Target cannot be null or undefined.",
+ "id": "2120",
+ "mutatorName": "ArrowFunction",
+ "replacement": "() => undefined",
+ "statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Game Options Changed Component > should match snapshot when rendered. 1` mismatched",
"status": "Killed",
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1609"
+ "1296"
],
"coveredBy": [
- "1609"
+ "1296",
+ "1297",
+ "1298",
+ "1299",
+ "1300",
+ "1301",
+ "1302",
+ "1303",
+ "1304"
],
"location": {
"end": {
- "column": 2,
+ "column": 92,
+ "line": 73
+ },
+ "start": {
+ "column": 50,
+ "line": 73
+ }
+ }
+ },
+ {
+ "id": "2121",
+ "mutatorName": "BlockStatement",
+ "replacement": "{}",
+ "statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Game Options Changed Component > should match snapshot when rendered. 1` mismatched",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1296"
+ ],
+ "coveredBy": [
+ "1296",
+ "1297",
+ "1298",
+ "1299",
+ "1300",
+ "1301",
+ "1302",
+ "1303",
+ "1304"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 79
+ },
+ "start": {
+ "column": 55,
+ "line": 75
+ }
+ }
+ },
+ {
+ "id": "2122",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Game Options Changed Component > should match snapshot when rendered. 1` mismatched",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1296"
+ ],
+ "coveredBy": [
+ "1296",
+ "1297",
+ "1298",
+ "1299",
+ "1300",
+ "1301",
+ "1302",
+ "1303",
+ "1304"
+ ],
+ "location": {
+ "end": {
+ "column": 97,
+ "line": 76
+ },
+ "start": {
+ "column": 16,
+ "line": 76
+ }
+ }
+ },
+ {
+ "id": "2123",
+ "mutatorName": "ObjectLiteral",
+ "replacement": "{}",
+ "statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Game Options Changed Component > should match snapshot when rendered. 1` mismatched",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1296"
+ ],
+ "coveredBy": [
+ "1296",
+ "1297",
+ "1298",
+ "1299",
+ "1300",
+ "1301",
+ "1302",
+ "1303",
+ "1304"
+ ],
+ "location": {
+ "end": {
+ "column": 58,
+ "line": 78
+ },
+ "start": {
+ "column": 18,
+ "line": 78
+ }
+ }
+ },
+ {
+ "id": "2124",
+ "mutatorName": "BlockStatement",
+ "replacement": "{}",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1302"
+ ],
+ "coveredBy": [
+ "1302"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 83
+ },
+ "start": {
+ "column": 50,
+ "line": 81
+ }
+ }
+ },
+ {
+ "id": "2125",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1302"
+ ],
+ "coveredBy": [
+ "1302"
+ ],
+ "location": {
+ "end": {
+ "column": 21,
+ "line": 82
+ },
+ "start": {
+ "column": 8,
+ "line": 82
+ }
+ }
+ },
+ {
+ "id": "2126",
+ "mutatorName": "BlockStatement",
+ "replacement": "{}",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1304"
+ ],
+ "coveredBy": [
+ "1304"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 87
+ },
+ "start": {
+ "column": 49,
+ "line": 85
+ }
+ }
+ },
+ {
+ "id": "2127",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1304"
+ ],
+ "coveredBy": [
+ "1304"
+ ],
+ "location": {
+ "end": {
+ "column": 38,
+ "line": 86
+ },
+ "start": {
+ "column": 8,
+ "line": 86
+ }
+ }
+ }
+ ],
+ "source": "\n \n
\n \n
\n\n
\n {{ gameOptionsChangedText }}\n \n\n
\n\n \n
\n \n \n \n \n\n
\n \n \n \n \n
\n \n \n\n"
+ },
+ "app/components/pages/game-lobby/GameLobbyFooter/GameLobbyStartGameButton/GameLobbyStartGameConfirmDialog/GameLobbyStartGameConfirmDialogContainer/GameLobbyStartGameConfirmDialogContent/GameLobbyStartGameConfirmDialogPlayersPositioned/GameLobbyStartGameConfirmDialogPlayersPositioned.vue": {
+ "language": "html",
+ "mutants": [
+ {
+ "id": "2128",
+ "mutatorName": "BlockStatement",
+ "replacement": "{}",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1649"
+ ],
+ "coveredBy": [
+ "1649"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 60
+ },
+ "start": {
+ "column": 47,
+ "line": 58
+ }
+ }
+ },
+ {
+ "id": "2129",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1649"
+ ],
+ "coveredBy": [
+ "1649"
+ ],
+ "location": {
+ "end": {
+ "column": 21,
+ "line": 59
+ },
+ "start": {
+ "column": 8,
+ "line": 59
+ }
+ }
+ },
+ {
+ "id": "2130",
+ "mutatorName": "BlockStatement",
+ "replacement": "{}",
+ "statusReason": "Target cannot be null or undefined.",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "1647"
+ ],
+ "coveredBy": [
+ "1647"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
"line": 64
},
"start": {
@@ -64819,7 +65633,7 @@
}
},
{
- "id": "2096",
+ "id": "2131",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -64827,10 +65641,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1609"
+ "1647"
],
"coveredBy": [
- "1609"
+ "1647"
],
"location": {
"end": {
@@ -64850,7 +65664,7 @@
"language": "html",
"mutants": [
{
- "id": "2097",
+ "id": "2132",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"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\".",
@@ -64858,19 +65672,19 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1113"
+ "1140"
],
"coveredBy": [
- "1113",
- "1114",
- "1115",
- "1116",
- "1117",
- "1118",
- "1119",
- "1120",
- "1121",
- "1122"
+ "1140",
+ "1141",
+ "1142",
+ "1143",
+ "1144",
+ "1145",
+ "1146",
+ "1147",
+ "1148",
+ "1149"
],
"location": {
"end": {
@@ -64884,7 +65698,7 @@
}
},
{
- "id": "2098",
+ "id": "2133",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component > should match snapshot when rendered. 1` mismatched",
@@ -64892,19 +65706,19 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1113"
+ "1140"
],
"coveredBy": [
- "1113",
- "1114",
- "1115",
- "1116",
- "1117",
- "1118",
- "1119",
- "1120",
- "1121",
- "1122"
+ "1140",
+ "1141",
+ "1142",
+ "1143",
+ "1144",
+ "1145",
+ "1146",
+ "1147",
+ "1148",
+ "1149"
],
"location": {
"end": {
@@ -64918,7 +65732,7 @@
}
},
{
- "id": "2099",
+ "id": "2134",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component > should match snapshot when rendered. 1` mismatched",
@@ -64926,19 +65740,19 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1113"
+ "1140"
],
"coveredBy": [
- "1113",
- "1114",
- "1115",
- "1116",
- "1117",
- "1118",
- "1119",
- "1120",
- "1121",
- "1122"
+ "1140",
+ "1141",
+ "1142",
+ "1143",
+ "1144",
+ "1145",
+ "1146",
+ "1147",
+ "1148",
+ "1149"
],
"location": {
"end": {
@@ -64952,7 +65766,7 @@
}
},
{
- "id": "2100",
+ "id": "2135",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Thief Additional Cards Placed Component > should match snapshot when rendered. 1` mismatched",
@@ -64960,19 +65774,19 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1113"
+ "1140"
],
"coveredBy": [
- "1113",
- "1114",
- "1115",
- "1116",
- "1117",
- "1118",
- "1119",
- "1120",
- "1121",
- "1122"
+ "1140",
+ "1141",
+ "1142",
+ "1143",
+ "1144",
+ "1145",
+ "1146",
+ "1147",
+ "1148",
+ "1149"
],
"location": {
"end": {
@@ -64986,7 +65800,7 @@
}
},
{
- "id": "2101",
+ "id": "2136",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -64994,10 +65808,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1122"
+ "1149"
],
"coveredBy": [
- "1122"
+ "1149"
],
"location": {
"end": {
@@ -65011,7 +65825,7 @@
}
},
{
- "id": "2102",
+ "id": "2137",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -65019,10 +65833,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1122"
+ "1149"
],
"coveredBy": [
- "1122"
+ "1149"
],
"location": {
"end": {
@@ -65036,7 +65850,7 @@
}
},
{
- "id": "2103",
+ "id": "2138",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -65044,10 +65858,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1120"
+ "1147"
],
"coveredBy": [
- "1120"
+ "1147"
],
"location": {
"end": {
@@ -65061,7 +65875,7 @@
}
},
{
- "id": "2104",
+ "id": "2139",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -65069,10 +65883,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1120"
+ "1147"
],
"coveredBy": [
- "1120"
+ "1147"
],
"location": {
"end": {
@@ -65092,7 +65906,7 @@
"language": "html",
"mutants": [
{
- "id": "2105",
+ "id": "2140",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65100,23 +65914,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65130,7 +65944,7 @@
}
},
{
- "id": "2106",
+ "id": "2141",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65138,23 +65952,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65168,7 +65982,7 @@
}
},
{
- "id": "2107",
+ "id": "2142",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expect(received).not.toIncludeAnyMembers(expected)\n\nExpected list to not include any of the following members:\n Array [\n \"grow\",\n \"p-button-success\",\n \"justify-center\",\n \"p-button-lg\",\n]\nReceived:\n Array [\n \"p-button\",\n \"p-component\",\n \"p-button-secondary\",\n \"p-button-sm\",\n \"!transition-all\",\n \"grow\",\n \"uppercase\",\n \"p-button-success\",\n \"justify-center\",\n \"p-button-lg\",\n]",
@@ -65176,23 +65990,23 @@
"testsCompleted": 12,
"static": false,
"killedBy": [
- "844"
+ "873"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65206,7 +66020,7 @@
}
},
{
- "id": "2108",
+ "id": "2143",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65214,23 +66028,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65244,7 +66058,7 @@
}
},
{
- "id": "2109",
+ "id": "2144",
"mutatorName": "EqualityOperator",
"replacement": "props.currentConfirmStep !== \"players-ready\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65252,23 +66066,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65282,7 +66096,7 @@
}
},
{
- "id": "2110",
+ "id": "2145",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65290,23 +66104,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65320,7 +66134,7 @@
}
},
{
- "id": "2111",
+ "id": "2146",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65328,23 +66142,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65358,7 +66172,7 @@
}
},
{
- "id": "2112",
+ "id": "2147",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expected 'components.GameLobbyStartGameConfirmD…' to be 'components.GameLobbyStartGameConfirmD…' // Object.is equality",
@@ -65366,23 +66180,23 @@
"testsCompleted": 6,
"static": false,
"killedBy": [
- "838"
+ "867"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65396,7 +66210,7 @@
}
},
{
- "id": "2113",
+ "id": "2148",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65404,23 +66218,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65434,7 +66248,7 @@
}
},
{
- "id": "2114",
+ "id": "2149",
"mutatorName": "EqualityOperator",
"replacement": "props.currentConfirmStep !== \"players-ready\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65442,23 +66256,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65472,7 +66286,7 @@
}
},
{
- "id": "2115",
+ "id": "2150",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65480,23 +66294,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65510,7 +66324,7 @@
}
},
{
- "id": "2116",
+ "id": "2151",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65518,23 +66332,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65548,7 +66362,7 @@
}
},
{
- "id": "2117",
+ "id": "2152",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65556,23 +66370,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65586,7 +66400,7 @@
}
},
{
- "id": "2118",
+ "id": "2153",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected '' to be 'components.GameLobbyStartGameConfirmD…' // Object.is equality",
@@ -65594,14 +66408,14 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "838"
+ "867"
],
"coveredBy": [
- "837",
- "838",
- "839",
- "844",
- "845"
+ "866",
+ "867",
+ "868",
+ "873",
+ "874"
],
"location": {
"end": {
@@ -65615,7 +66429,7 @@
}
},
{
- "id": "2119",
+ "id": "2154",
"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\".",
@@ -65623,23 +66437,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65653,7 +66467,7 @@
}
},
{
- "id": "2120",
+ "id": "2155",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expected 'play' to be 'forward' // Object.is equality",
@@ -65661,23 +66475,23 @@
"testsCompleted": 5,
"static": false,
"killedBy": [
- "837"
+ "866"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65691,7 +66505,7 @@
}
},
{
- "id": "2121",
+ "id": "2156",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65699,23 +66513,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65729,7 +66543,7 @@
}
},
{
- "id": "2122",
+ "id": "2157",
"mutatorName": "EqualityOperator",
"replacement": "props.currentConfirmStep !== \"players-ready\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65737,23 +66551,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65767,7 +66581,7 @@
}
},
{
- "id": "2123",
+ "id": "2158",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65775,23 +66589,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65805,7 +66619,7 @@
}
},
{
- "id": "2124",
+ "id": "2159",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65813,23 +66627,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65843,7 +66657,7 @@
}
},
{
- "id": "2125",
+ "id": "2160",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65851,23 +66665,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65881,7 +66695,7 @@
}
},
{
- "id": "2126",
+ "id": "2161",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65889,23 +66703,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65919,7 +66733,7 @@
}
},
{
- "id": "2127",
+ "id": "2162",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Snapshot `Game Lobby Start Game Confirm Dialog Footer Component > should match snapshot when rendered. 1` mismatched",
@@ -65927,23 +66741,23 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "833"
+ "862"
],
"coveredBy": [
- "833",
- "834",
- "835",
- "836",
- "837",
- "838",
- "839",
- "840",
- "841",
- "842",
- "843",
- "844",
- "845",
- "846"
+ "862",
+ "863",
+ "864",
+ "865",
+ "866",
+ "867",
+ "868",
+ "869",
+ "870",
+ "871",
+ "872",
+ "873",
+ "874",
+ "875"
],
"location": {
"end": {
@@ -65957,7 +66771,7 @@
}
},
{
- "id": "2128",
+ "id": "2163",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "expected undefined to be 'forward' // Object.is equality",
@@ -65965,14 +66779,14 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "837"
+ "866"
],
"coveredBy": [
- "837",
- "838",
- "839",
- "844",
- "845"
+ "866",
+ "867",
+ "868",
+ "873",
+ "874"
],
"location": {
"end": {
@@ -65986,7 +66800,7 @@
}
},
{
- "id": "2129",
+ "id": "2164",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected '' to be 'forward' // Object.is equality",
@@ -65994,14 +66808,14 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "837"
+ "866"
],
"coveredBy": [
- "837",
- "838",
- "839",
- "844",
- "845"
+ "866",
+ "867",
+ "868",
+ "873",
+ "874"
],
"location": {
"end": {
@@ -66015,7 +66829,7 @@
}
},
{
- "id": "2130",
+ "id": "2165",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expect(received).toIncludeAllMembers(expected)\n\nExpected list to have all of the following members:\n Array [\n \"me-2\",\n]\nReceived:\n Array []",
@@ -66023,14 +66837,14 @@
"testsCompleted": 3,
"static": false,
"killedBy": [
- "839"
+ "868"
],
"coveredBy": [
- "837",
- "838",
- "839",
- "844",
- "845"
+ "866",
+ "867",
+ "868",
+ "873",
+ "874"
],
"location": {
"end": {
@@ -66044,7 +66858,7 @@
}
},
{
- "id": "2131",
+ "id": "2166",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -66052,10 +66866,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "836"
+ "865"
],
"coveredBy": [
- "836"
+ "865"
],
"location": {
"end": {
@@ -66069,7 +66883,7 @@
}
},
{
- "id": "2132",
+ "id": "2167",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -66077,10 +66891,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "836"
+ "865"
],
"coveredBy": [
- "836"
+ "865"
],
"location": {
"end": {
@@ -66094,7 +66908,7 @@
}
},
{
- "id": "2133",
+ "id": "2168",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "Target cannot be null or undefined.",
@@ -66102,10 +66916,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "834"
+ "863"
],
"coveredBy": [
- "834"
+ "863"
],
"location": {
"end": {
@@ -66119,7 +66933,7 @@
}
},
{
- "id": "2134",
+ "id": "2169",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "Target cannot be null or undefined.",
@@ -66127,10 +66941,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "834"
+ "863"
],
"coveredBy": [
- "834"
+ "863"
],
"location": {
"end": {
@@ -66150,7 +66964,7 @@
"language": "html",
"mutants": [
{
- "id": "2135",
+ "id": "2170",
"mutatorName": "StringLiteral",
"replacement": "\"Stryker was here!\"",
"statusReason": "Snapshot `Game Lobby Header Component > should match snapshot when rendered. 1` mismatched",
@@ -66158,26 +66972,28 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "609"
+ "549"
],
"coveredBy": [
- "609",
- "610",
- "611",
- "612",
- "613",
- "614",
- "615",
- "616",
- "617",
- "618",
- "619",
- "620",
- "621",
- "622",
- "623",
- "624",
- "625"
+ "549",
+ "550",
+ "551",
+ "552",
+ "553",
+ "554",
+ "555",
+ "556",
+ "557",
+ "558",
+ "559",
+ "560",
+ "561",
+ "562",
+ "563",
+ "564",
+ "565",
+ "566",
+ "567"
],
"location": {
"end": {
@@ -66191,7 +67007,7 @@
}
},
{
- "id": "2136",
+ "id": "2171",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -66199,15 +67015,15 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "613"
+ "553"
],
"coveredBy": [
- "613",
- "614",
- "615",
- "616",
- "617",
- "618"
+ "553",
+ "554",
+ "555",
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66221,7 +67037,7 @@
}
},
{
- "id": "2137",
+ "id": "2172",
"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",
@@ -66229,15 +67045,15 @@
"testsCompleted": 5,
"static": false,
"killedBy": [
- "617"
+ "557"
],
"coveredBy": [
- "613",
- "614",
- "615",
- "616",
- "617",
- "618"
+ "553",
+ "554",
+ "555",
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66251,7 +67067,7 @@
}
},
{
- "id": "2138",
+ "id": "2173",
"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",
@@ -66259,15 +67075,15 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "613"
+ "553"
],
"coveredBy": [
- "613",
- "614",
- "615",
- "616",
- "617",
- "618"
+ "553",
+ "554",
+ "555",
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66281,7 +67097,7 @@
}
},
{
- "id": "2139",
+ "id": "2174",
"mutatorName": "EqualityOperator",
"replacement": "gameLobbyPlayerInput.value !== null",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -66289,15 +67105,15 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "613"
+ "553"
],
"coveredBy": [
- "613",
- "614",
- "615",
- "616",
- "617",
- "618"
+ "553",
+ "554",
+ "555",
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66311,7 +67127,7 @@
}
},
{
- "id": "2140",
+ "id": "2175",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -66319,10 +67135,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "613"
+ "553"
],
"coveredBy": [
- "613"
+ "553"
],
"location": {
"end": {
@@ -66336,7 +67152,7 @@
}
},
{
- "id": "2141",
+ "id": "2176",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Player Input is not initialized\",\n], but it was called with \"\"",
@@ -66344,10 +67160,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "613"
+ "553"
],
"coveredBy": [
- "613"
+ "553"
],
"location": {
"end": {
@@ -66361,7 +67177,7 @@
}
},
{
- "id": "2142",
+ "id": "2177",
"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",
@@ -66369,14 +67185,14 @@
"testsCompleted": 4,
"static": false,
"killedBy": [
- "617"
+ "557"
],
"coveredBy": [
- "614",
- "615",
- "616",
- "617",
- "618"
+ "554",
+ "555",
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66390,7 +67206,7 @@
}
},
{
- "id": "2143",
+ "id": "2178",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "expected '' to be 'Player 1' // Object.is equality",
@@ -66398,14 +67214,14 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "614"
+ "554"
],
"coveredBy": [
- "614",
- "615",
- "616",
- "617",
- "618"
+ "554",
+ "555",
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66419,7 +67235,7 @@
}
},
{
- "id": "2144",
+ "id": "2179",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected '' to be 'Player 1' // Object.is equality",
@@ -66427,11 +67243,11 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "614"
+ "554"
],
"coveredBy": [
- "614",
- "615"
+ "554",
+ "555"
],
"location": {
"end": {
@@ -66445,7 +67261,7 @@
}
},
{
- "id": "2145",
+ "id": "2180",
"mutatorName": "MethodExpression",
"replacement": "playerInputValue.value",
"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 _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \" \",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ]\n\n\nNumber of calls: 1\n",
@@ -66453,12 +67269,12 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "616"
+ "556"
],
"coveredBy": [
- "616",
- "617",
- "618"
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66472,7 +67288,7 @@
}
},
{
- "id": "2146",
+ "id": "2181",
"mutatorName": "StringLiteral",
"replacement": "\"Stryker was here!\"",
"statusReason": "expected 'Stryker was here!' to be '' // Object.is equality",
@@ -66480,12 +67296,12 @@
"testsCompleted": 3,
"static": false,
"killedBy": [
- "618"
+ "558"
],
"coveredBy": [
- "616",
- "617",
- "618"
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66499,7 +67315,7 @@
}
},
{
- "id": "2147",
+ "id": "2182",
"mutatorName": "BooleanLiteral",
"replacement": "trimmedPlayerInputValue",
"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 _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ]\n\n\nNumber of calls: 1\n",
@@ -66507,12 +67323,12 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "616"
+ "556"
],
"coveredBy": [
- "616",
- "617",
- "618"
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66526,7 +67342,7 @@
}
},
{
- "id": "2148",
+ "id": "2183",
"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",
@@ -66534,12 +67350,12 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "617"
+ "557"
],
"coveredBy": [
- "616",
- "617",
- "618"
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66553,7 +67369,7 @@
}
},
{
- "id": "2149",
+ "id": "2184",
"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 _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ]\n\n\nNumber of calls: 1\n",
@@ -66561,12 +67377,12 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "616"
+ "556"
],
"coveredBy": [
- "616",
- "617",
- "618"
+ "556",
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66580,7 +67396,7 @@
}
},
{
- "id": "2150",
+ "id": "2185",
"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 _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n ]\n\n\nNumber of calls: 1\n",
@@ -66588,10 +67404,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "616"
+ "556"
],
"coveredBy": [
- "616"
+ "556"
],
"location": {
"end": {
@@ -66605,7 +67421,7 @@
}
},
{
- "id": "2151",
+ "id": "2186",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": \"Player 1\",\n \"role\": _CreateGamePlayerRoleDto {\n \"name\": undefined,\n },\n \"side\": _CreateGamePlayerSideDto {\n \"current\": undefined,\n \"original\": undefined,\n },\n },\n], but it was called with _CreateGamePlayerDto {\n \"group\": undefined,\n \"name\": undefined,\n \"role\": undefined,\n \"side\": undefined,\n}",
@@ -66613,11 +67429,11 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "617"
+ "557"
],
"coveredBy": [
- "617",
- "618"
+ "557",
+ "558"
],
"location": {
"end": {
@@ -66631,7 +67447,7 @@
}
},
{
- "id": "2152",
+ "id": "2187",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected undefined to be truthy",
@@ -66639,10 +67455,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "619"
+ "559"
],
"coveredBy": [
- "619"
+ "559"
],
"location": {
"end": {
@@ -66656,7 +67472,7 @@
}
},
{
- "id": "2153",
+ "id": "2188",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected undefined to be truthy",
@@ -66664,10 +67480,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "619"
+ "559"
],
"coveredBy": [
- "619"
+ "559"
],
"location": {
"end": {
@@ -66681,7 +67497,7 @@
}
},
{
- "id": "2154",
+ "id": "2189",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected undefined to be truthy",
@@ -66689,10 +67505,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "620"
+ "560"
],
"coveredBy": [
- "620"
+ "560"
],
"location": {
"end": {
@@ -66706,7 +67522,7 @@
}
},
{
- "id": "2155",
+ "id": "2190",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected undefined to be truthy",
@@ -66714,10 +67530,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "620"
+ "560"
],
"coveredBy": [
- "620"
+ "560"
],
"location": {
"end": {
@@ -66731,7 +67547,7 @@
}
},
{
- "id": "2156",
+ "id": "2191",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected undefined to be truthy",
@@ -66739,10 +67555,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "625"
+ "567"
],
"coveredBy": [
- "625"
+ "567"
],
"location": {
"end": {
@@ -66756,7 +67572,7 @@
}
},
{
- "id": "2157",
+ "id": "2192",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected undefined to be truthy",
@@ -66764,10 +67580,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "625"
+ "567"
],
"coveredBy": [
- "625"
+ "567"
],
"location": {
"end": {
@@ -66781,7 +67597,7 @@
}
},
{
- "id": "2158",
+ "id": "2193",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -66789,11 +67605,11 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "621"
+ "561"
],
"coveredBy": [
- "621",
- "623"
+ "561",
+ "564"
],
"location": {
"end": {
@@ -66801,13 +67617,13 @@
"line": 93
},
"start": {
- "column": 53,
+ "column": 45,
"line": 88
}
}
},
{
- "id": "2159",
+ "id": "2194",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "Mocked error",
@@ -66815,11 +67631,11 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "623"
+ "564"
],
"coveredBy": [
- "621",
- "623"
+ "561",
+ "564"
],
"location": {
"end": {
@@ -66833,7 +67649,7 @@
}
},
{
- "id": "2160",
+ "id": "2195",
"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",
@@ -66841,11 +67657,11 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "621"
+ "561"
],
"coveredBy": [
- "621",
- "623"
+ "561",
+ "564"
],
"location": {
"end": {
@@ -66859,7 +67675,7 @@
}
},
{
- "id": "2161",
+ "id": "2196",
"mutatorName": "EqualityOperator",
"replacement": "gameLobbyHeaderSetupButtons.value !== null",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -66867,11 +67683,11 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "621"
+ "561"
],
"coveredBy": [
- "621",
- "623"
+ "561",
+ "564"
],
"location": {
"end": {
@@ -66885,7 +67701,7 @@
}
},
{
- "id": "2162",
+ "id": "2197",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -66893,10 +67709,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "621"
+ "561"
],
"coveredBy": [
- "621"
+ "561"
],
"location": {
"end": {
@@ -66910,7 +67726,7 @@
}
},
{
- "id": "2163",
+ "id": "2198",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Header Setup Buttons is not defined\",\n], but it was called with \"\"",
@@ -66918,10 +67734,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "621"
+ "561"
],
"coveredBy": [
- "621"
+ "561"
],
"location": {
"end": {
@@ -66935,7 +67751,7 @@
}
},
{
- "id": "2164",
+ "id": "2199",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -66943,11 +67759,11 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "622"
+ "562"
],
"coveredBy": [
- "622",
- "624"
+ "562",
+ "565"
],
"location": {
"end": {
@@ -66955,13 +67771,13 @@
"line": 100
},
"start": {
- "column": 56,
+ "column": 53,
"line": 95
}
}
},
{
- "id": "2165",
+ "id": "2200",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "Mocked error",
@@ -66969,11 +67785,11 @@
"testsCompleted": 2,
"static": false,
"killedBy": [
- "624"
+ "565"
],
"coveredBy": [
- "622",
- "624"
+ "562",
+ "565"
],
"location": {
"end": {
@@ -66987,7 +67803,7 @@
}
},
{
- "id": "2166",
+ "id": "2201",
"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",
@@ -66995,11 +67811,11 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "622"
+ "562"
],
"coveredBy": [
- "622",
- "624"
+ "562",
+ "565"
],
"location": {
"end": {
@@ -67013,7 +67829,7 @@
}
},
{
- "id": "2167",
+ "id": "2202",
"mutatorName": "EqualityOperator",
"replacement": "gameLobbyHeaderSetupButtons.value !== null",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -67021,11 +67837,11 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "622"
+ "562"
],
"coveredBy": [
- "622",
- "624"
+ "562",
+ "565"
],
"location": {
"end": {
@@ -67039,7 +67855,7 @@
}
},
{
- "id": "2168",
+ "id": "2203",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -67047,10 +67863,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "622"
+ "562"
],
"coveredBy": [
- "622"
+ "562"
],
"location": {
"end": {
@@ -67064,7 +67880,7 @@
}
},
{
- "id": "2169",
+ "id": "2204",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Header Setup Buttons is not defined\",\n], but it was called with \"\"",
@@ -67072,10 +67888,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "622"
+ "562"
],
"coveredBy": [
- "622"
+ "562"
],
"location": {
"end": {
@@ -67089,7 +67905,161 @@
}
},
{
- "id": "2170",
+ "id": "2205",
+ "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": [
+ "563"
+ ],
+ "coveredBy": [
+ "563",
+ "566"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 107
+ },
+ "start": {
+ "column": 56,
+ "line": 102
+ }
+ }
+ },
+ {
+ "id": "2206",
+ "mutatorName": "ConditionalExpression",
+ "replacement": "true",
+ "statusReason": "Mocked error",
+ "status": "Killed",
+ "testsCompleted": 2,
+ "static": false,
+ "killedBy": [
+ "566"
+ ],
+ "coveredBy": [
+ "563",
+ "566"
+ ],
+ "location": {
+ "end": {
+ "column": 49,
+ "line": 103
+ },
+ "start": {
+ "column": 7,
+ "line": 103
+ }
+ }
+ },
+ {
+ "id": "2207",
+ "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": [
+ "563"
+ ],
+ "coveredBy": [
+ "563",
+ "566"
+ ],
+ "location": {
+ "end": {
+ "column": 49,
+ "line": 103
+ },
+ "start": {
+ "column": 7,
+ "line": 103
+ }
+ }
+ },
+ {
+ "id": "2208",
+ "mutatorName": "EqualityOperator",
+ "replacement": "gameLobbyHeaderSetupButtons.value !== null",
+ "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": [
+ "563"
+ ],
+ "coveredBy": [
+ "563",
+ "566"
+ ],
+ "location": {
+ "end": {
+ "column": 49,
+ "line": 103
+ },
+ "start": {
+ "column": 7,
+ "line": 103
+ }
+ }
+ },
+ {
+ "id": "2209",
+ "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": [
+ "563"
+ ],
+ "coveredBy": [
+ "563"
+ ],
+ "location": {
+ "end": {
+ "column": 4,
+ "line": 105
+ },
+ "start": {
+ "column": 51,
+ "line": 103
+ }
+ }
+ },
+ {
+ "id": "2210",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Header Setup Buttons is not defined\",\n], but it was called with \"\"",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "563"
+ ],
+ "coveredBy": [
+ "563"
+ ],
+ "location": {
+ "end": {
+ "column": 71,
+ "line": 104
+ },
+ "start": {
+ "column": 23,
+ "line": 104
+ }
+ }
+ },
+ {
+ "id": "2211",
"mutatorName": "ObjectLiteral",
"replacement": "{}",
"statusReason": "The macro defineExpose from Nuxt is breaking Stryker, so we ignore it.",
@@ -67098,22 +68068,22 @@
"location": {
"end": {
"column": 2,
- "line": 105
+ "line": 113
},
"start": {
"column": 38,
- "line": 102
+ "line": 109
}
}
}
],
- "source": "\n \n \n\n"
+ "source": "\n \n \n\n"
},
"app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderAdditionalCardsManagerButton/GameLobbyHeaderAdditionalCardsManagerButton.vue": {
"language": "html",
"mutants": [
{
- "id": "2171",
+ "id": "2212",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected undefined to be truthy",
@@ -67121,10 +68091,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1520"
+ "1558"
],
"coveredBy": [
- "1520"
+ "1558"
],
"location": {
"end": {
@@ -67138,7 +68108,7 @@
}
},
{
- "id": "2172",
+ "id": "2213",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected undefined to be truthy",
@@ -67146,10 +68116,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1520"
+ "1558"
],
"coveredBy": [
- "1520"
+ "1558"
],
"location": {
"end": {
@@ -67169,7 +68139,127 @@
"language": "html",
"mutants": [
{
- "id": "2173",
+ "id": "2214",
+ "mutatorName": "ArrowFunction",
+ "replacement": "() => undefined",
+ "statusReason": "Cannot call attributes on an empty VueWrapper.",
+ "status": "Killed",
+ "testsCompleted": 3,
+ "static": false,
+ "killedBy": [
+ "1439"
+ ],
+ "coveredBy": [
+ "1437",
+ "1438",
+ "1439",
+ "1440",
+ "1441",
+ "1442"
+ ],
+ "location": {
+ "end": {
+ "column": 92,
+ "line": 44
+ },
+ "start": {
+ "column": 50,
+ "line": 44
+ }
+ }
+ },
+ {
+ "id": "2215",
+ "mutatorName": "ArrowFunction",
+ "replacement": "() => undefined",
+ "statusReason": "expected undefined to be 'components.GameLobbyHeaderOptionsButt…' // Object.is equality",
+ "status": "Killed",
+ "testsCompleted": 5,
+ "static": false,
+ "killedBy": [
+ "1441"
+ ],
+ "coveredBy": [
+ "1437",
+ "1438",
+ "1439",
+ "1440",
+ "1441",
+ "1442"
+ ],
+ "location": {
+ "end": {
+ "column": 3,
+ "line": 48
+ },
+ "start": {
+ "column": 57,
+ "line": 46
+ }
+ }
+ },
+ {
+ "id": "2216",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "expected ', {\"count\":1}' to be 'components.GameLobbyHeaderOptionsButt…' // Object.is equality",
+ "status": "Killed",
+ "testsCompleted": 5,
+ "static": false,
+ "killedBy": [
+ "1441"
+ ],
+ "coveredBy": [
+ "1437",
+ "1438",
+ "1439",
+ "1440",
+ "1441",
+ "1442"
+ ],
+ "location": {
+ "end": {
+ "column": 132,
+ "line": 46
+ },
+ "start": {
+ "column": 65,
+ "line": 46
+ }
+ }
+ },
+ {
+ "id": "2217",
+ "mutatorName": "ObjectLiteral",
+ "replacement": "{}",
+ "statusReason": "expected 'components.GameLobbyHeaderOptionsButt…' to be 'components.GameLobbyHeaderOptionsButt…' // Object.is equality",
+ "status": "Killed",
+ "testsCompleted": 5,
+ "static": false,
+ "killedBy": [
+ "1441"
+ ],
+ "coveredBy": [
+ "1437",
+ "1438",
+ "1439",
+ "1440",
+ "1441",
+ "1442"
+ ],
+ "location": {
+ "end": {
+ "column": 2,
+ "line": 48
+ },
+ "start": {
+ "column": 134,
+ "line": 46
+ }
+ }
+ },
+ {
+ "id": "2218",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected undefined to be truthy",
@@ -67177,24 +68267,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1890"
+ "1442"
],
"coveredBy": [
- "1890"
+ "1442"
],
"location": {
"end": {
"column": 2,
- "line": 26
+ "line": 52
},
"start": {
"column": 47,
- "line": 24
+ "line": 50
}
}
},
{
- "id": "2174",
+ "id": "2219",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected undefined to be truthy",
@@ -67202,30 +68292,30 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1890"
+ "1442"
],
"coveredBy": [
- "1890"
+ "1442"
],
"location": {
"end": {
"column": 32,
- "line": 25
+ "line": 51
},
"start": {
"column": 8,
- "line": 25
+ "line": 51
}
}
}
],
- "source": "\n \n \n\n"
+ "source": "\n \n \n\n"
},
"app/components/pages/game-lobby/GameLobbyHeader/GameLobbyHeaderSetupButtons/GameLobbyHeaderPositionCoordinatorButton/GameLobbyHeaderPositionCoordinatorButton.vue": {
"language": "html",
"mutants": [
{
- "id": "2175",
+ "id": "2220",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected undefined to be truthy",
@@ -67233,10 +68323,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1859"
+ "1898"
],
"coveredBy": [
- "1859"
+ "1898"
],
"location": {
"end": {
@@ -67250,7 +68340,7 @@
}
},
{
- "id": "2176",
+ "id": "2221",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected undefined to be truthy",
@@ -67258,10 +68348,10 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "1859"
+ "1898"
],
"coveredBy": [
- "1859"
+ "1898"
],
"location": {
"end": {
@@ -67281,7 +68371,7 @@
"language": "html",
"mutants": [
{
- "id": "2177",
+ "id": "2222",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched",
@@ -67289,67 +68379,71 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "810"
+ "744"
],
"coveredBy": [
- "810",
- "811",
- "812",
- "813",
- "814",
- "815",
- "816",
- "817",
- "818",
- "819"
+ "744",
+ "745",
+ "746",
+ "747",
+ "748",
+ "749",
+ "750",
+ "751",
+ "752",
+ "753",
+ "754",
+ "755"
],
"location": {
"end": {
"column": 137,
- "line": 57
+ "line": 60
},
"start": {
"column": 56,
- "line": 57
+ "line": 60
}
}
},
{
- "id": "2178",
+ "id": "2223",
"mutatorName": "ConditionalExpression",
"replacement": "true",
"statusReason": "expected true to be falsy",
"status": "Killed",
- "testsCompleted": 3,
+ "testsCompleted": 5,
"static": false,
"killedBy": [
- "812"
+ "748"
],
"coveredBy": [
- "810",
- "811",
- "812",
- "813",
- "814",
- "815",
- "816",
- "817",
- "818",
- "819"
+ "744",
+ "745",
+ "746",
+ "747",
+ "748",
+ "749",
+ "750",
+ "751",
+ "752",
+ "753",
+ "754",
+ "755"
],
"location": {
"end": {
"column": 137,
- "line": 57
+ "line": 60
},
"start": {
"column": 62,
- "line": 57
+ "line": 60
}
}
},
{
- "id": "2179",
+ "id": "2224",
"mutatorName": "ConditionalExpression",
"replacement": "false",
"statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched",
@@ -67357,33 +68451,35 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "810"
+ "744"
],
"coveredBy": [
- "810",
- "811",
- "812",
- "813",
- "814",
- "815",
- "816",
- "817",
- "818",
- "819"
+ "744",
+ "745",
+ "746",
+ "747",
+ "748",
+ "749",
+ "750",
+ "751",
+ "752",
+ "753",
+ "754",
+ "755"
],
"location": {
"end": {
"column": 137,
- "line": 57
+ "line": 60
},
"start": {
"column": 62,
- "line": 57
+ "line": 60
}
}
},
{
- "id": "2180",
+ "id": "2225",
"mutatorName": "EqualityOperator",
"replacement": "createGameDto.value.players.length > minPlayerToDisplayPositionCoordinator",
"statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched",
@@ -67391,33 +68487,35 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "810"
+ "744"
],
"coveredBy": [
- "810",
- "811",
- "812",
- "813",
- "814",
- "815",
- "816",
- "817",
- "818",
- "819"
+ "744",
+ "745",
+ "746",
+ "747",
+ "748",
+ "749",
+ "750",
+ "751",
+ "752",
+ "753",
+ "754",
+ "755"
],
"location": {
"end": {
"column": 137,
- "line": 57
+ "line": 60
},
"start": {
"column": 62,
- "line": 57
+ "line": 60
}
}
},
{
- "id": "2181",
+ "id": "2226",
"mutatorName": "EqualityOperator",
"replacement": "createGameDto.value.players.length < minPlayerToDisplayPositionCoordinator",
"statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched",
@@ -67425,33 +68523,35 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "810"
+ "744"
],
"coveredBy": [
- "810",
- "811",
- "812",
- "813",
- "814",
- "815",
- "816",
- "817",
- "818",
- "819"
+ "744",
+ "745",
+ "746",
+ "747",
+ "748",
+ "749",
+ "750",
+ "751",
+ "752",
+ "753",
+ "754",
+ "755"
],
"location": {
"end": {
"column": 137,
- "line": 57
+ "line": 60
},
"start": {
"column": 62,
- "line": 57
+ "line": 60
}
}
},
{
- "id": "2182",
+ "id": "2227",
"mutatorName": "ArrowFunction",
"replacement": "() => undefined",
"statusReason": "Snapshot `Game Lobby Header Setup Buttons Component > should match snapshot when rendered. 1` mismatched",
@@ -67459,33 +68559,35 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "810"
+ "744"
],
"coveredBy": [
- "810",
- "811",
- "812",
- "813",
- "814",
- "815",
- "816",
- "817",
- "818",
- "819"
+ "744",
+ "745",
+ "746",
+ "747",
+ "748",
+ "749",
+ "750",
+ "751",
+ "752",
+ "753",
+ "754",
+ "755"
],
"location": {
"end": {
"column": 124,
- "line": 59
+ "line": 62
},
"start": {
"column": 59,
- "line": 59
+ "line": 62
}
}
},
{
- "id": "2183",
+ "id": "2228",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected undefined to be truthy",
@@ -67493,24 +68595,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "811"
+ "745"
],
"coveredBy": [
- "811"
+ "745"
],
"location": {
"end": {
"column": 2,
- "line": 63
+ "line": 66
},
"start": {
"column": 63,
- "line": 61
+ "line": 64
}
}
},
{
- "id": "2184",
+ "id": "2229",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected undefined to be truthy",
@@ -67518,24 +68620,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "811"
+ "745"
],
"coveredBy": [
- "811"
+ "745"
],
"location": {
"end": {
"column": 32,
- "line": 62
+ "line": 65
},
"start": {
"column": 8,
- "line": 62
+ "line": 65
}
}
},
{
- "id": "2185",
+ "id": "2230",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected undefined to be truthy",
@@ -67543,24 +68645,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "813"
+ "749"
],
"coveredBy": [
- "813"
+ "749"
],
"location": {
"end": {
"column": 2,
- "line": 67
+ "line": 70
},
"start": {
"column": 84,
- "line": 65
+ "line": 68
}
}
},
{
- "id": "2186",
+ "id": "2231",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected undefined to be truthy",
@@ -67568,24 +68670,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "813"
+ "749"
],
"coveredBy": [
- "813"
+ "749"
],
"location": {
"end": {
"column": 40,
- "line": 66
+ "line": 69
},
"start": {
"column": 8,
- "line": 66
+ "line": 69
}
}
},
{
- "id": "2187",
+ "id": "2232",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expected undefined to be truthy",
@@ -67593,24 +68695,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "817"
+ "753"
],
"coveredBy": [
- "817"
+ "753"
],
"location": {
"end": {
"column": 2,
- "line": 71
+ "line": 74
},
"start": {
"column": 90,
- "line": 69
+ "line": 72
}
}
},
{
- "id": "2188",
+ "id": "2233",
"mutatorName": "StringLiteral",
"replacement": "\"\"",
"statusReason": "expected undefined to be truthy",
@@ -67618,24 +68720,24 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "817"
+ "753"
],
"coveredBy": [
- "817"
+ "753"
],
"location": {
"end": {
"column": 43,
- "line": 70
+ "line": 73
},
"start": {
"column": 8,
- "line": 70
+ "line": 73
}
}
},
{
- "id": "2189",
+ "id": "2234",
"mutatorName": "BlockStatement",
"replacement": "{}",
"statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once, but it was called 0 times",
@@ -67643,25 +68745,204 @@
"testsCompleted": 1,
"static": false,
"killedBy": [
- "814"
+ "746"
],
"coveredBy": [
- "814",
- "815"
+ "746",
+ "747"
],
"location": {
"end": {
"column": 2,
+ "line": 81
+ },
+ "start": {
+ "column": 60,
+ "line": 76
+ }
+ }
+ },
+ {
+ "id": "2235",
+ "mutatorName": "BooleanLiteral",
+ "replacement": "gameLobbyHeaderOptionsButton.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": [
+ "746"
+ ],
+ "coveredBy": [
+ "746",
+ "747"
+ ],
+ "location": {
+ "end": {
+ "column": 42,
+ "line": 77
+ },
+ "start": {
+ "column": 7,
+ "line": 77
+ }
+ }
+ },
+ {
+ "id": "2236",
+ "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": 2,
+ "static": false,
+ "killedBy": [
+ "747"
+ ],
+ "coveredBy": [
+ "746",
+ "747"
+ ],
+ "location": {
+ "end": {
+ "column": 42,
+ "line": 77
+ },
+ "start": {
+ "column": 7,
+ "line": 77
+ }
+ }
+ },
+ {
+ "id": "2237",
+ "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": [
+ "746"
+ ],
+ "coveredBy": [
+ "746",
+ "747"
+ ],
+ "location": {
+ "end": {
+ "column": 42,
+ "line": 77
+ },
+ "start": {
+ "column": 7,
+ "line": 77
+ }
+ }
+ },
+ {
+ "id": "2238",
+ "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": [
+ "746"
+ ],
+ "coveredBy": [
+ "746"
+ ],
+ "location": {
+ "end": {
+ "column": 4,
+ "line": 79
+ },
+ "start": {
+ "column": 44,
+ "line": 77
+ }
+ }
+ },
+ {
+ "id": "2239",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n \"Game Lobby Header Options Button is not defined\",\n], but it was called with \"\"",
+ "status": "Killed",
+ "testsCompleted": 1,
+ "static": false,
+ "killedBy": [
+ "746"
+ ],
+ "coveredBy": [
+ "746"
+ ],
+ "location": {
+ "end": {
+ "column": 72,
+ "line": 78
+ },
+ "start": {
+ "column": 23,
"line": 78
+ }
+ }
+ },
+ {
+ "id": "2240",
+ "mutatorName": "StringLiteral",
+ "replacement": "\"\"",
+ "statusReason": "expect(received).toHaveBeenCalledExactlyOnceWith(expected)\n\nExpected mock function to have been called exactly once with Array [\n Anything,\n \"heartBeat\",\n], but it was called with