Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/select.test.js')
-rw-r--r--test/integration/select.test.js11
1 files changed, 1 insertions, 10 deletions
diff --git a/test/integration/select.test.js b/test/integration/select.test.js
index 69eea00..2594179 100644
--- a/test/integration/select.test.js
+++ b/test/integration/select.test.js
@@ -2,8 +2,7 @@ const { Builder, By, until } = require('selenium-webdriver'),
chrome = require('selenium-webdriver/chrome.js'),
chromeOptions = new chrome.Options(),
{ expect, it } = require('@jest/globals'),
- { mkdir, writeFile, readFile } = require('node:fs/promises'),
- path = require('path'),
+ { readFile } = require('node:fs/promises'),
{ HttpResponse } = require('selenium-webdriver/devtools/networkinterceptor');
chromeOptions.addArguments('--headless', '--disable-gpu', '--no-sandbox');
@@ -182,11 +181,3 @@ it('selects a trooper by clicking on its record and deselects it by clicking on
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');
-}