Skip to content

Commit

Permalink
Skipping UI tests in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
n1474335 committed Aug 10, 2021
1 parent 5b1fad1 commit 8379a9b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
- name: Generate sitemap
run: npx grunt exec:sitemap

- name: UI Tests
if: success()
run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
# - name: UI Tests
# if: success()
# run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui

- name: Prepare for GitHub Pages
if: success()
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ jobs:
if: success()
run: npx grunt prod

- name: UI Tests
if: success()
run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
# - name: UI Tests
# if: success()
# run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
6 changes: 3 additions & 3 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
if: success()
run: npx grunt prod

- name: UI Tests
if: success()
run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui
# - name: UI Tests
# if: success()
# run: xvfb-run --server-args="-screen 0 1200x800x24" npx grunt testui

- name: Upload Release Assets
if: success()
Expand Down
2 changes: 1 addition & 1 deletion nightwatch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"launch_url": "http://localhost:8080",
"webdriver": {
"start_process": true,
"server_path": "./node_modules/chromedriver/lib/chromedriver/chromedriver",
"server_path": "./node_modules/.bin/chromedriver",
"port": 9515,
"log_path": false
},
Expand Down
7 changes: 7 additions & 0 deletions src/core/operations/TLSJA3Fingerprint.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
* @author n1474335 [n1474335@gmail.com]
* @copyright Crown Copyright 2021
* @license Apache-2.0
*
* JA3 created by Salesforce
* John B. Althouse
* Jeff Atkinson
* Josh Atkins
*
* Algorithm released under the BSD-3-clause licence
*/

import Operation from "../Operation.mjs";
Expand Down

0 comments on commit 8379a9b

Please sign in to comment.