index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'test/integration/select.test.js')
-rw-r--r-- | test/integration/select.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/integration/select.test.js b/test/integration/select.test.js index e16ad4d..e78ec44 100644 --- a/test/integration/select.test.js +++ b/test/integration/select.test.js @@ -26,7 +26,7 @@ beforeEach(async () => { describe('a trooper', () => { beforeEach(async () => { await mockResponse(driver, `/assets/images/${scenario}`, fixture, (document) => { - placeCounter(document, createTroopCounter(), { x: 1, y: 1 }); + placeCounter(document, createTroopCounter(), { q: 0, r: 0, s: 0 }); return svgDocument(document); }); }); @@ -43,7 +43,7 @@ describe('a trooper', () => { await page.expectNotSelected(counter); await counter.click(); - + await takeScreenshot(driver); await page.expectSelected(counter); await driver.switchTo().defaultContent(); await page.expectSelected(await record); |