implement MC prios and trials no reserve
This commit is contained in:
+19
-3
@@ -73,7 +73,7 @@ const testAccounts: protoAccount[] = [
|
||||
class: 'Druid',
|
||||
race: 'Night Elf',
|
||||
spec: 'Restoration',
|
||||
rank: 'Raider'
|
||||
rank: 'Trial'
|
||||
}, {
|
||||
name: 'Dagger',
|
||||
race: 'Dwarf',
|
||||
@@ -259,8 +259,24 @@ describe('Frontcraft', () => {
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
Promise.all([
|
||||
makePrio(
|
||||
'Quick Strike Ring',
|
||||
{ class: 'Warrior', specname: 'Fury' },
|
||||
undefined, 2, "str-to-ap bias"
|
||||
),
|
||||
makePrio(
|
||||
'Quick Strike Ring',
|
||||
{ class: 'Druid', specname: 'Feral (DPS)' },
|
||||
undefined, 2, "str-to-ap bias"
|
||||
),
|
||||
|
||||
makePrio(
|
||||
'Band of Accuria',
|
||||
{ class: 'Warrior', specname: 'Protection' },
|
||||
undefined, 2, "hit bias"
|
||||
),
|
||||
|
||||
makePrio(
|
||||
'Bracers of Arcane Accuracy',
|
||||
{ class: 'Warlock', specname: 'Demonology' },
|
||||
@@ -507,7 +523,7 @@ describe('Frontcraft', () => {
|
||||
makePrio(
|
||||
'Cloak of Draconic Might',
|
||||
{ class: 'Druid', specname: 'Feral (DPS)' },
|
||||
undefined, 1, "str-to-ap bias"
|
||||
undefined, 3, "str-to-ap + agi-to-ap bias"
|
||||
),
|
||||
]).then(() => {
|
||||
const user = Object.values(users)[0]
|
||||
|
||||
Reference in New Issue
Block a user