Skip to content

Commit e7d9e87

Browse files
dnohalesremy
authored andcommitted
test: only run run-mac-only.test.js in darwin platform
1 parent 5a47a32 commit e7d9e87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/fork/run-mac-only.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const filenames = [
99
[__dirname + 'some\ \\file', '#!/bin/sh\necho "OK"'],
1010
];
1111

12-
if (!process.env.TRAVIS && process.platform !== 'win32') {
12+
if (!process.env.TRAVIS && process.platform === 'darwin') {
1313
describe('nodemon fork (mac only)', () => {
1414
before(() => {
1515
filenames.map(file => fs.writeFileSync(file[0], file[1], 'utf8'));

0 commit comments

Comments
 (0)