mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-06 01:25:38 -05:00
Disable broken test case for VSO Windows builds (#2339)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user