Skip to content
Snippets Groups Projects
Commit ec03be9e authored by Mohamed Amine Ben Salah's avatar Mohamed Amine Ben Salah
Browse files

reuse users collection instead of users-persistent-data collection

parent c8668641
No related branches found
No related tags found
No related merge requests found
......@@ -33,8 +33,8 @@ class VirtualizeList {
try {
const USER_LIST_VLIST_VISIBLE_USERS = await this.page1.page.evaluate(async () => await document.querySelectorAll('[data-test^="userListItem"]').length);
const totalNumberOfUsersMongo = await this.page1.page.evaluate(() => {
const collection = require('/imports/api/users-persistent-data/index.js');
const users = collection.default._collection.find({}, {}, {}, {}, {}, { loggedOut: 'false' }).count();
const collection = require('/imports/api/users/index.js');
const users = collection.default._collection.find().count();
return users;
});
if (USER_LIST_VLIST_VISIBLE_USERS === totalNumberOfUsersMongo) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment