implement MC prios and trials no reserve

This commit is contained in:
peter
2020-02-11 14:44:01 +01:00
parent 3b7de5cf2d
commit 3671f11749
2 changed files with 21 additions and 3 deletions
+19 -3
View File
@@ -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]