We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
headlessFirefox
1 parent 90b5791 commit 2e1415cCopy full SHA for 2e1415c
.github/workflows/nodejs.yml
@@ -23,11 +23,14 @@ concurrency:
23
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
24
cancel-in-progress: true
25
26
+env:
27
+ FORCE_COLOR: "1"
28
+
29
jobs:
30
build:
31
runs-on: ubuntu-latest
32
env:
- node-version: "16"
33
+ node-version: "20"
34
35
steps:
36
- uses: actions/checkout@v4
@@ -37,5 +40,4 @@ jobs:
37
40
node-version: ${{ env.node-version }}
38
41
cache: "npm"
39
42
- run: npm install
- - name: Run headless test
- run: xvfb-run -a npm test
43
+ - run: npm test
tests/js/jasmine-browser.mjs
@@ -23,6 +23,6 @@ export default {
hostname: "127.0.0.1",
browser: {
- name: "firefox"
+ name: "headlessFirefox"
}
};
0 commit comments