Skip to content

Commit

Permalink
Use new mochfiy
Browse files Browse the repository at this point in the history
  • Loading branch information
mantoni committed Dec 24, 2023
1 parent 0f28610 commit 3b32903
Show file tree
Hide file tree
Showing 4 changed files with 2,118 additions and 873 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ jobs:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 1
- name: Integration
run: |
export SINON_CHROME_BIN=$(which google-chrome-stable)
export PUPPETEER_EXECUTABLE_PATH=$(which google-chrome-stable)
# test-coverage runs test-headless in Chrome
npm run test-headless -- --chrome $SINON_CHROME_BIN --allow-chrome-as-root
npm run test-headless
saucelabs-test:
if: ${{ github.ref == 'refs/heads/main' }}
Expand Down
25 changes: 25 additions & 0 deletions mochify.webdriver.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
"use strict";

module.exports = {

Check warning on line 3 in mochify.webdriver.js

View check run for this annotation

Codecov / codecov/patch

mochify.webdriver.js#L3

Added line #L3 was not covered by tests
driver: "webdriver",
// eslint-disable-next-line camelcase
driver_options: {
// Tests must run on a http website for Microsoft Edge to have
// sessionStorage.
url: "http://maxantoni.de/doctype.html",
hostname: "ondemand.saucelabs.com",
path: "/wd/hub",
port: 80,
capabilities: {
browserName: process.env.BROWSER_NAME,
browserVersion: "latest",
"sauce:options": {
build: `${process.env.BROWSER_NAME} ${
process.env.GITHUB_RUN_NUMBER || Date.now()
}`,
username: process.env.SAUCE_USERNAME,
accessKey: process.env.SAUCE_ACCESS_KEY,
},
},
},
};

0 comments on commit 3b32903

Please sign in to comment.