mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
|
const documentListingShown = async app => {
|
||
|
const item = await app.client.$('.document-listing');
|
||
|
await item.waitForExist();
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
documentListingShown,
|
||
|
};
|