Skip failing tests of macOS and add to CI

Fixes #687
This commit is contained in:
Daniel Imms
2017-06-09 16:27:47 -07:00
parent a889fef752
commit 6480933861
2 changed files with 7 additions and 0 deletions
+3
View File
@@ -1,4 +1,7 @@
language: node_js
os:
- linux
- osx
node_js:
- 6
env:
+4
View File
@@ -97,6 +97,10 @@ describe('xterm output comparison', function() {
51, 52, 54, 55, 56, 57, 58, 59, 60, 61,
63, 68
];
if (os.platform() === 'darwin') {
// These are failing on macOS only
skip.push(3, 7, 11, 67);
}
for (var i = 0; i < files.length; i++) {
if (skip.indexOf(i) >= 0) {
continue;