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.
1 parent 2ba0063 commit f07d172Copy full SHA for f07d172
appveyor.yml
@@ -12,9 +12,9 @@ configuration:
12
13
install:
14
- ps: Install-Product node $env:nodejs_version $env:platform
15
- - npm install --verbose
+ - npm install
16
17
test_script:
18
- node --version
19
- npm --version
20
- - npm test
+ - node windows/smoketest.js
windows/smoketest.js
@@ -0,0 +1,10 @@
1
+// minimal smoke test for appveyor
2
+// while mocha tests don't run
3
+var zmq = require('..');
4
+
5
+var s = new zmq.socket('pub');
6
+s.bind('tcp://127.0.0.1:0');
7
+s.send('test');
8
+setTimeout(function () {
9
+ s.close();
10
+}, 1000);
0 commit comments