Disable broken test case for VSO Windows builds (#2339)

This commit is contained in:
Karl Burtram
2018-08-28 17:02:26 -04:00
committed by GitHub
parent b66ac2781c
commit fa961832f3

View File

@@ -508,8 +508,9 @@ suite('Extfs', () => {
mkdirp(newDir, 493, error => {
// {{SQL CARBON EDIT}} don't run this test case on Windows as this fails in VSO
// assume case insensitive file system
if (process.platform === 'win32' || process.platform === 'darwin') {
if (process.platform === 'darwin') {
const upper = newDir.toUpperCase();
const real = extfs.realcaseSync(upper);
@@ -521,7 +522,7 @@ suite('Extfs', () => {
}
// linux, unix, etc. -> assume case sensitive file system
else {
else if (process.platform !== 'win32') {
const real = extfs.realcaseSync(newDir);
assert.equal(real, newDir);
}