Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
skip opn test in appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
igorklopov committed Sep 7, 2017
1 parent c8dfbbc commit 4a2055e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/test-79-npm/opn/opn.meta.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
'use strict';

module.exports = function () {
module.exports = function (stamp, flags) {
if (stamp.p === 'win32' && flags.ci) {
return {
allow: false,
note: 'headless windows CI seems to fail'
};
}

return {
deployFilesFrom: [ 'opn' ]
};
Expand Down

0 comments on commit 4a2055e

Please sign in to comment.