chore(data): replace plebeius.bso with bitsocialist.bso

Update board directory owners, known developer registry, and related tests to use the new bitsocialist.bso address.
This commit is contained in:
Tommaso Casaburi
2026-07-18 16:43:39 +07:00
parent bbc2d5860d
commit 3431c26755
69 changed files with 80 additions and 80 deletions
+4 -4
View File
@@ -845,8 +845,8 @@ describe('Board', () => {
testState.account = {
id: 'active-account',
author: {
address: 'plebeius.bso',
shortAddress: 'plebeius',
address: 'bitsocialist.bso',
shortAddress: 'bitsocialist',
},
subscriptions: [],
};
@@ -870,12 +870,12 @@ describe('Board', () => {
const firstPost = container.querySelector('[data-testid="post"]');
expect(firstPost?.textContent).toBe('fresh-dev-post');
expect(firstPost?.getAttribute('data-author-address')).toBe('plebeius.bso');
expect(firstPost?.getAttribute('data-author-address')).toBe('bitsocialist.bso');
expect(firstPost?.getAttribute('data-content')).toBe('[color=red]hello[/color]');
expect(testState.registerCommentsMock).toHaveBeenCalledWith(
expect.arrayContaining([
expect.objectContaining({
author: expect.objectContaining({ address: 'plebeius.bso' }),
author: expect.objectContaining({ address: 'bitsocialist.bso' }),
cid: 'fresh-dev-post',
content: '[color=red]hello[/color]',
}),