Run prettier

This commit is contained in:
Alex Dima 2021-11-15 09:37:13 +01:00
parent a66f20ee2e
commit edb439d4f6
No known key found for this signature in database
GPG key ID: 39563C1504FDD0C9
14 changed files with 998 additions and 982 deletions

View file

@ -35,21 +35,25 @@ global.window = {
requirejs(
['test/unit/setup'],
function () {
glob('out/amd/basic-languages/*/*.test.js', { cwd: path.join(__dirname, '../../') }, function (err, files) {
if (err) {
console.log(err);
return;
}
requirejs(
files.map((f) => f.replace(/^out\/amd/, 'vs').replace(/\.js$/, '')),
function () {
// We can launch the tests!
},
function (err) {
glob(
'out/amd/basic-languages/*/*.test.js',
{ cwd: path.join(__dirname, '../../') },
function (err, files) {
if (err) {
console.log(err);
return;
}
);
});
requirejs(
files.map((f) => f.replace(/^out\/amd/, 'vs').replace(/\.js$/, '')),
function () {
// We can launch the tests!
},
function (err) {
console.log(err);
}
);
}
);
},
function (err) {
console.log(err);