index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-28 17:46:32 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-05-28 18:44:28 -0700 |
commit | 7e5aedeb0a1ffa727005c98d80044429bf20ff45 (patch) | |
tree | e50e71d53cf77f6cb850d3fab01d24e91c9551ae /test/integration/page.test.js | |
parent | 2df718998a89cb622bb9a76655abdeafc33d9aa5 (diff) |
Move takeScreenshot() function into a test helper file
Diffstat (limited to 'test/integration/page.test.js')
-rw-r--r-- | test/integration/page.test.js | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/test/integration/page.test.js b/test/integration/page.test.js index db0bf0d..8bb703e 100644 --- a/test/integration/page.test.js +++ b/test/integration/page.test.js @@ -1,9 +1,7 @@ const { Builder } = require('selenium-webdriver'), chrome = require('selenium-webdriver/chrome.js'), chromeOptions = new chrome.Options(), - { expect, it } = require('@jest/globals'), - { mkdir, writeFile } = require('node:fs/promises'), - path = require('path'); + { expect, it } = require('@jest/globals'); chromeOptions.addArguments('--headless', '--disable-gpu', '--no-sandbox'); chromeOptions.enableBidi(); @@ -22,11 +20,3 @@ it('loads the page', async () => { afterEach(async () => { await driver.quit(); }); - -async function takeScreenshot(driver) { - const dir = './test/screenshots'; - const fileName = path.relative(process.cwd(), __filename) + ' "' + expect.getState().currentTestName + `" ${new Date().toISOString()}.png`; - const image = await driver.takeScreenshot(); - await mkdir(dir, { recursive: true }); - await writeFile(`${dir}/${fileName.replaceAll('/', '-')}`, image, 'base64'); -} |