formatting

This commit is contained in:
2020-02-20 10:47:38 +01:00
parent 53e0f0569f
commit b33dd78bd1
8 changed files with 23 additions and 15 deletions

View File

@ -57,11 +57,12 @@ function assert (folder, args) {
reason: 'migration already exists'
}
];
for (const test of tests)
for (const test of tests) {
if (!test.f ()) {
console.log (test.reason);
return false;
}
}
return true;
}