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/page.test.js')
-rw-r--r-- | test/integration/page.test.js | 18 |
1 files changed, 18 insertions, 0 deletions
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'); +}); |