|
|
@@ -73,7 +73,7 @@ const testAccounts: protoAccount[] = [
|
|
73
|
73
|
class: 'Druid',
|
|
74
|
74
|
race: 'Night Elf',
|
|
75
|
75
|
spec: 'Restoration',
|
|
76
|
|
- rank: 'Raider'
|
|
|
76
|
+ rank: 'Trial'
|
|
77
|
77
|
}, {
|
|
78
|
78
|
name: 'Dagger',
|
|
79
|
79
|
race: 'Dwarf',
|
|
|
@@ -259,8 +259,24 @@ describe('Frontcraft', () => {
|
|
259
|
259
|
})
|
|
260
|
260
|
}
|
|
261
|
261
|
|
|
262
|
|
-
|
|
263
|
262
|
Promise.all([
|
|
|
263
|
+ makePrio(
|
|
|
264
|
+ 'Quick Strike Ring',
|
|
|
265
|
+ { class: 'Warrior', specname: 'Fury' },
|
|
|
266
|
+ undefined, 2, "str-to-ap bias"
|
|
|
267
|
+ ),
|
|
|
268
|
+ makePrio(
|
|
|
269
|
+ 'Quick Strike Ring',
|
|
|
270
|
+ { class: 'Druid', specname: 'Feral (DPS)' },
|
|
|
271
|
+ undefined, 2, "str-to-ap bias"
|
|
|
272
|
+ ),
|
|
|
273
|
+
|
|
|
274
|
+ makePrio(
|
|
|
275
|
+ 'Band of Accuria',
|
|
|
276
|
+ { class: 'Warrior', specname: 'Protection' },
|
|
|
277
|
+ undefined, 2, "hit bias"
|
|
|
278
|
+ ),
|
|
|
279
|
+
|
|
264
|
280
|
makePrio(
|
|
265
|
281
|
'Bracers of Arcane Accuracy',
|
|
266
|
282
|
{ class: 'Warlock', specname: 'Demonology' },
|
|
|
@@ -507,7 +523,7 @@ describe('Frontcraft', () => {
|
|
507
|
523
|
makePrio(
|
|
508
|
524
|
'Cloak of Draconic Might',
|
|
509
|
525
|
{ class: 'Druid', specname: 'Feral (DPS)' },
|
|
510
|
|
- undefined, 1, "str-to-ap bias"
|
|
|
526
|
+ undefined, 3, "str-to-ap + agi-to-ap bias"
|
|
511
|
527
|
),
|
|
512
|
528
|
]).then(() => {
|
|
513
|
529
|
const user = Object.values(users)[0]
|