gw2e-account-statistics 3.4.2 → 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.history/tests/{items.spec_20220727185343.js → items.spec_20230225210556.js} +2 -1
- package/.history/tests/{items.spec_20220727185019.js → items.spec_20230225210926.js} +13 -3
- package/.history/tests/items.spec_20230225211005.js +932 -0
- package/.history/tests/{items.spec_20220727184943.js → items.spec_20230225211015.js} +30 -4
- package/.history/tests/{items.spec_20220727184950.js → items.spec_20230225211035.js} +30 -5
- package/.history/tests/items.spec_20230225211040.js +932 -0
- package/build/static/fishItems.js +4 -0
- package/build/statistics/items.js +50 -0
- package/package.json +1 -1
- package/tests/items.spec.js +25 -0
- package/.history/tests/items.spec_20220727184939.js +0 -906
|
@@ -106,6 +106,7 @@ describe('statistics > items', () => {
|
|
|
106
106
|
polysaturatingInfusions: null,
|
|
107
107
|
silverwastesShovels: null,
|
|
108
108
|
thirtyTwoSlotBags: null,
|
|
109
|
+
flyingCowTokens: null,
|
|
109
110
|
heartOfTheKhanUr: null,
|
|
110
111
|
brokenTwig: null,
|
|
111
112
|
warmStone: null,
|
|
@@ -899,7 +900,7 @@ describe('statistics > items', () => {
|
|
|
899
900
|
{id: 81790, count: 1}, // Celestial Infusion Chest
|
|
900
901
|
{id: 82070, count: 1}, // Celestial Infusion (Red)
|
|
901
902
|
{id: 81632, count: 1}, // Endless Chaos Combat Tonic
|
|
902
|
-
{id:
|
|
903
|
+
{id: 94055, count: 1}, // Endless Inner Demon Combat Tonic
|
|
903
904
|
|
|
904
905
|
{id: 81761, count: 9999999} // Celestial Infusion (Blue) -- (!) Does not count
|
|
905
906
|
]))._unstableFractalEssenceFromItems).to.equal(7410)
|
|
@@ -35,6 +35,15 @@ describe('statistics > items', () => {
|
|
|
35
35
|
whiteMantlePortalDevices: null,
|
|
36
36
|
blackLionClaimTickets: null,
|
|
37
37
|
instruments: null,
|
|
38
|
+
fishItems: null,
|
|
39
|
+
fishItemsLegendary: null,
|
|
40
|
+
fishItemsAscended: null,
|
|
41
|
+
fishItemsExotic: null,
|
|
42
|
+
fishItemsRare: null,
|
|
43
|
+
fishItemsMasterwork: null,
|
|
44
|
+
fishItemsFine: null,
|
|
45
|
+
fishItemsBasic: null,
|
|
46
|
+
fishItemsJunk: null,
|
|
38
47
|
musicBoxes: null,
|
|
39
48
|
chakEggs: null,
|
|
40
49
|
fossilizedInsects: null,
|
|
@@ -106,6 +115,7 @@ describe('statistics > items', () => {
|
|
|
106
115
|
polysaturatingInfusions: null,
|
|
107
116
|
silverwastesShovels: null,
|
|
108
117
|
thirtyTwoSlotBags: null,
|
|
118
|
+
flyingCowTokens: null,
|
|
109
119
|
heartOfTheKhanUr: null,
|
|
110
120
|
brokenTwig: null,
|
|
111
121
|
warmStone: null,
|
|
@@ -121,8 +131,8 @@ describe('statistics > items', () => {
|
|
|
121
131
|
deldrimorStoneskinInfusions: null,
|
|
122
132
|
jormagEyeInfusions: null,
|
|
123
133
|
primordusEyeInfusions: null,
|
|
124
|
-
|
|
125
|
-
|
|
134
|
+
_legendaryInsightsFromItems: null,
|
|
135
|
+
_legendaryDivinationsFromItems: null
|
|
126
136
|
}
|
|
127
137
|
|
|
128
138
|
const bothPermissions = {bank: null, characters: null}
|
|
@@ -899,7 +909,7 @@ describe('statistics > items', () => {
|
|
|
899
909
|
{id: 81790, count: 1}, // Celestial Infusion Chest
|
|
900
910
|
{id: 82070, count: 1}, // Celestial Infusion (Red)
|
|
901
911
|
{id: 81632, count: 1}, // Endless Chaos Combat Tonic
|
|
902
|
-
{id:
|
|
912
|
+
{id: 94055, count: 1}, // Endless Inner Demon Combat Tonic
|
|
903
913
|
|
|
904
914
|
{id: 81761, count: 9999999} // Celestial Infusion (Blue) -- (!) Does not count
|
|
905
915
|
]))._unstableFractalEssenceFromItems).to.equal(7410)
|