1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 09:51:09 +03:00

move search tag test

This commit is contained in:
Jake McDermott 2018-04-05 01:35:42 -04:00
parent cf68df41d5
commit 1362b444f2
No known key found for this signature in database
GPG Key ID: 3B02CAD476EECB35

View File

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