Fix unit tests (#3368)

pull/3369/head
Alexandru Dima 2 years ago committed by GitHub
parent 547870b688
commit a3d4b960c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -74,7 +74,7 @@ function runTest(type, browser) {
proc.on('error', reject);
proc.on('exit', (code) => {
if (code === 0) {
resolve();
resolve(undefined);
} else {
reject(code);
}

@ -58,5 +58,6 @@ requirejs(
},
function (err) {
console.log(err);
process.exit(1);
}
);

@ -9,6 +9,9 @@ define('vs/nls', [], {
return {
localize: function () {
return 'NO_LOCALIZATION_FOR_YOU';
},
getConfiguredDefaultLocale: function () {
return undefined;
}
};
},

Loading…
Cancel
Save