mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
995edaa966
Just a bunch of minor refactorings in admin-x-activitypub: - Reorganised api methods - Reorganised api query hooks - Reorganised api tests - Removed redundant `getActor` api method - Colocate `Search` type with component - Moved `ViewProfileModal` to `modals` - Refactored profile - Remove redundant `useFollowersForUser` - Remove redundant `useBrowseInboxForUser` - Removed redundant acceptance tests
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
import {expect, test} from '@playwright/test';
|
|
|
|
test.describe('Inbox', async () => {
|
|
test('Renders the inbox page', async ({page}) => {
|
|
await page.goto('/');
|
|
|
|
await expect(page.locator('body')).toContainText('This is your inbox');
|
|
});
|
|
});
|