Skip to content

Commit a62346f

Browse files
committed
rm native-hello-world
1 parent 4abc9ee commit a62346f

3 files changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ jobs:
1515
- '20'
1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Setup Python 3.8
19-
uses: actions/setup-python@v4
20-
with:
21-
python-version: '3.8'
2218
- name: Use Node.js ${{ matrix.node-version }}
2319
uses: actions/setup-node@v4
2420
with:

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"license": "MIT",
2626
"devDependencies": {
2727
"mocha": "^5.2.0",
28-
"native-hello-world": "^1.0.0",
2928
"should": "^13.2.3",
3029
"sinon": "^7.3.2",
3130
"standard": "^13.0.1"

test/proxyquire-global.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,10 @@ describe('global flags set', function () {
4545
}
4646
}
4747

48-
proxyquire('native-hello-world', stubs)
49-
proxyquire('native-hello-world', stubs)
48+
// Using 'crypto' instead of 'native-hello-world' as it's a built-in native module
49+
// that's always available and doesn't require compilation
50+
proxyquire('crypto', stubs)
51+
proxyquire('crypto', stubs)
5052
})
5153
})
5254

0 commit comments

Comments
 (0)