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-04-18 10:01:26 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-04-18 10:05:21 -0700 |
commit | 8e74cef4a5b63ab14e47d8d698f804745c0c4ea6 (patch) | |
tree | 6fee17cb5c152ae584d4e81a7c941ee9d08588e9 /test/google.test.js | |
parent | 23967fe2f5ae9fb6d6c8a2cbc29845531f7acece (diff) |
Run server on different port when running tests
Diffstat (limited to 'test/google.test.js')
-rw-r--r-- | test/google.test.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/google.test.js b/test/google.test.js deleted file mode 100644 index 56729bf..0000000 --- a/test/google.test.js +++ /dev/null @@ -1,18 +0,0 @@ -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:8080"); - - expect(await driver.getTitle()).toEqual('Infantry Combat Solo Basic'); -}); |