Skip to content

Commit a85c1f4

Browse files
committed
Try dynamic load 8
1 parent 8c8be11 commit a85c1f4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ jobs:
4747
sudo apt-get install -y libgles2-mesa-dev libxcb-cursor0
4848
# LD_DEBUG=libs node .
4949
# export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$GITHUB_WORKSPACE/ci
50-
LD_DEBUG=libs xvfb-run --auto-servernum npm run test-ci
50+
# LD_DEBUG=libs xvfb-run --auto-servernum npm run test-ci
51+
cd examples && LD_DEBUG=libs xvfb-run --auto-servernum node debug.js
5152
# xvfb-run --auto-servernum npm run test-ci
5253
5354
# - name: Run Unit Tests - MacOS

test/debug.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
const { View } = require('./init');
4+
5+
const view = new View({ file: 'test.qml' });

0 commit comments

Comments
 (0)