Skip to content

Commit

Permalink
Separate get follows into the follows testing button
Browse files Browse the repository at this point in the history
  • Loading branch information
luminamystere committed Jul 12, 2024
1 parent 5f460a6 commit 8e68e9d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Fluff4me.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,14 +213,15 @@ export default class Fluff4me {
for (let i = 0; i < 30; i++) {
await BUTTON_REGISTRY.follow.execute("work", `teststory${i}`);
}
await BUTTON_REGISTRY.getAllFollows.execute("work", 0);
await BUTTON_REGISTRY.getAllFollows.execute("work", 1);

},
}));

testButtons.append(createButton({
name: "Get all follows testing",
name: "Follows testing",
async execute () {
await BUTTON_REGISTRY.getAllFollows.execute("work", 0);
await BUTTON_REGISTRY.getAllFollows.execute("work", 1);
await BUTTON_REGISTRY.getAllFollowsMerged.execute(0);
await BUTTON_REGISTRY.getAllFollowsMerged.execute(1);
},
Expand Down

0 comments on commit 8e68e9d

Please sign in to comment.