We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb5b0c6 commit 94b867eCopy full SHA for 94b867e
src/api/api.ts
@@ -192,6 +192,7 @@ export class Hashtag<T> extends Instagram<T> {
192
*/
193
export class User<T> extends Instagram<T> {
194
defaultPageFunctions = [
195
+ /* istanbul ignore next */
196
() => {
197
let morePostsIntervalCounter = 0;
198
const morePostsInterval = setInterval(() => {
src/api/instagram.ts
@@ -743,7 +743,6 @@ export class Instagram<PostType> {
743
744
// Run defaultPagePlugins
745
for (const f of this.defaultPageFunctions) {
746
- /* istanbul ignore next */
747
await this.page.evaluate(f);
748
}
749
0 commit comments