move search tag test

This commit is contained in:
Jake McDermott
2018-04-05 01:35:42 -04:00
parent cf68df41d5
commit 1362b444f2

View File

@@ -38,6 +38,7 @@ const checkTags = (client, tags) => {
module.exports = { module.exports = {
before: (client, done) => { before: (client, done) => {
const resources = range(25).map(n => getAdminMachineCredential(`test-search-${n}`)); const resources = range(25).map(n => getAdminMachineCredential(`test-search-${n}`));
Promise.all(resources).then(done); Promise.all(resources).then(done);
}, },
'add and remove search tags': client => { 'add and remove search tags': client => {
@@ -120,4 +121,4 @@ module.exports = {
client.end(); client.end();
}, },
}; };