This reverts commit 228180b1ef.
This commit is contained in:
committed by
GitHub
parent
228180b1ef
commit
adf879e8b2
@@ -17,7 +17,7 @@ var dbNameList = db.getMongo().getDBNames();
|
||||
for (var i in dbNameList) {
|
||||
if (dbNameList[i].startsWith('test_') || dbNameList[i].startsWith('acceptance_')) {
|
||||
dbToDrop = db.getMongo().getDB(dbNameList[i]);
|
||||
print(`Dropping test db ${dbNameList[i]}`);
|
||||
print('Dropping test db ' + dbNameList[i]);
|
||||
dbToDrop.dropDatabase();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
var message = 'Rock & Roll';
|
||||
var x = `<string>${message}</strong>`;
|
||||
var x = '<string>' + message + '</strong>';
|
||||
var template = '<%= invalid %>';
|
||||
// quiet the linter
|
||||
alert(x);
|
||||
|
||||
Reference in New Issue
Block a user