Fix failing test due to missing fields
This commit is contained in:
parent
4e8d9a543b
commit
e8050874ea
1 changed files with 7 additions and 1 deletions
|
@ -1,11 +1,17 @@
|
|||
import DeckList from "@/components/DeckBuilder/DeckList.vue";
|
||||
import { shallowMount } from "@vue/test-utils";
|
||||
import { colorNames } from "@/mlpccg";
|
||||
|
||||
// Generate 10 test cards
|
||||
const testCards = new Array(3).fill("test").map((t, i) => ({
|
||||
ID: `test${i}`,
|
||||
Name: `Test name ${i}`,
|
||||
Subname: `Subname ${i}`
|
||||
Subname: `Subname ${i}`,
|
||||
Type: "Friend",
|
||||
Element: [colorNames[i]],
|
||||
Power: i,
|
||||
Cost: i,
|
||||
Requirement: { Generosity: i }
|
||||
}));
|
||||
const testSlots = testCards.map((c, i) => ({ data: c, limit: 3, howmany: i }));
|
||||
|
||||
|
|
Loading…
Reference in a new issue