Suppress ffi test on Windows
This commit is contained in:
parent
37a4267450
commit
3402c7be3f
1 changed files with 2 additions and 0 deletions
|
@ -23,6 +23,8 @@ describe('third-party module', function () {
|
|||
})
|
||||
|
||||
describe('ffi', function () {
|
||||
if (process.platform === 'win32') return
|
||||
|
||||
it('does not crash', function () {
|
||||
var ffi = require('ffi')
|
||||
var libm = ffi.Library('libm', {
|
||||
|
|
Loading…
Reference in a new issue