Skip to content

Commit c90fe39

Browse files
committed
Adjust test
1 parent eb3ca49 commit c90fe39

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ jobs:
4040
# if: matrix.os == 'windows-2022'
4141
# run: npm run test-ci
4242

43-
- name: Test - MacOS
44-
if: matrix.os == 'macos-14'
45-
run: npm run test-ci
43+
# - name: Test - MacOS
44+
# if: matrix.os == 'macos-14'
45+
# run: npm run test-ci

test/init.js

+4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,14 @@ const initOptsMac = {
1212
...initOpts,
1313
isGles3: false,
1414
isWebGL2: false,
15+
major: 2,
16+
minor: 1,
1517
};
1618

1719
if (platform === 'darwin') {
1820
glfw.windowHint(glfw.STENCIL_BITS, 8);
21+
// this would be nice... - https://github.com/glfw/glfw/pull/2571
22+
// glfw.windowHint(glfw.CONTEXT_RENDERER, glfw.SOFTWARE_RENDERER);
1923
}
2024

2125
const inited = init(platform === 'darwin' ? initOptsMac : initOpts);

0 commit comments

Comments
 (0)