Web Dev Solutions

Catalin Mititiuc

From 8e74cef4a5b63ab14e47d8d698f804745c0c4ea6 Mon Sep 17 00:00:00 2001 From: Catalin Mititiuc Date: Thu, 18 Apr 2024 10:01:26 -0700 Subject: Run server on different port when running tests --- test/integration/page.test.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/integration/page.test.js (limited to 'test/integration/page.test.js') diff --git a/test/integration/page.test.js b/test/integration/page.test.js new file mode 100644 index 0000000..7157bff --- /dev/null +++ b/test/integration/page.test.js @@ -0,0 +1,18 @@ +const { Builder } = require('selenium-webdriver'), + chrome = require('selenium-webdriver/chrome.js'), + { expect, it } = require('@jest/globals'), + chromeOptions = new chrome.Options(); + +let driver; + +chromeOptions.addArguments('--headless', '--disable-gpu', '--no-sandbox'); + +beforeAll(async () => { + driver = new Builder().forBrowser('chrome').setChromeOptions(chromeOptions).build(); +}); + +it('loads the page', async () => { + await driver.get("http://localhost:3005"); + + expect(await driver.getTitle()).toEqual('Infantry Combat Solo Basic'); +}); -- cgit v1.2.3