diff --git a/app/soapbox/__fixtures__/accounts_counter_follow.json b/app/soapbox/__fixtures__/accounts_counter_follow.json new file mode 100644 index 0000000000..3d2faf8012 --- /dev/null +++ b/app/soapbox/__fixtures__/accounts_counter_follow.json @@ -0,0 +1,7 @@ +{ + "9vMAje101ngtjlMj7w": { + "followers_count": 3, + "following_count": 2, + "statuses_count": 2 + } +} diff --git a/app/soapbox/__fixtures__/accounts_counter_initial.json b/app/soapbox/__fixtures__/accounts_counter_initial.json new file mode 100644 index 0000000000..ce9b3279ef --- /dev/null +++ b/app/soapbox/__fixtures__/accounts_counter_initial.json @@ -0,0 +1,7 @@ +{ + "9vMAje101ngtjlMj7w": { + "followers_count": 2, + "following_count": 2, + "statuses_count": 2 + } +} diff --git a/app/soapbox/__fixtures__/accounts_counter_unfollow.json b/app/soapbox/__fixtures__/accounts_counter_unfollow.json new file mode 100644 index 0000000000..285e4c6f29 --- /dev/null +++ b/app/soapbox/__fixtures__/accounts_counter_unfollow.json @@ -0,0 +1,7 @@ +{ + "9vMAje101ngtjlMj7w": { + "followers_count": 1, + "following_count": 2, + "statuses_count": 2 + } +} diff --git a/app/soapbox/reducers/__tests__/accounts_counters-test.js b/app/soapbox/reducers/__tests__/accounts_counters-test.js index f6c9e3bb0f..c39c959388 100644 Binary files a/app/soapbox/reducers/__tests__/accounts_counters-test.js and b/app/soapbox/reducers/__tests__/accounts_counters-test.js differ