mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 10:21:37 +03:00
8c650f7b43
fix AF-1496
60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
import { test } from '@affine-test/kit/playwright';
|
|
import {
|
|
createRandomUser,
|
|
deleteUser,
|
|
enableCloudWorkspace,
|
|
loginUser,
|
|
} from '@affine-test/kit/utils/cloud';
|
|
import { waitForEditorLoad } from '@affine-test/kit/utils/page-logic';
|
|
import { expect } from '@playwright/test';
|
|
|
|
let user: {
|
|
id: string;
|
|
name: string;
|
|
email: string;
|
|
password: string;
|
|
};
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
user = await createRandomUser();
|
|
await loginUser(page, user);
|
|
await enableCloudWorkspace(page);
|
|
await waitForEditorLoad(page);
|
|
await page.reload();
|
|
await waitForEditorLoad(page);
|
|
});
|
|
|
|
test.afterEach(async () => {
|
|
// if you want to keep the user in the database for debugging,
|
|
// comment this line
|
|
await deleteUser(user.email);
|
|
});
|
|
|
|
test('open in app card should be shown for cloud workspace', async ({
|
|
page,
|
|
}) => {
|
|
await expect(page.getByTestId('open-in-app-card')).toBeVisible();
|
|
|
|
await page
|
|
.getByTestId('open-in-app-card')
|
|
.getByRole('checkbox', {
|
|
name: 'Remember choice',
|
|
})
|
|
.locator('input')
|
|
.click();
|
|
|
|
await page
|
|
.getByRole('button', {
|
|
name: 'Dismiss',
|
|
})
|
|
.click();
|
|
|
|
await expect(page.getByTestId('open-in-app-card')).not.toBeInViewport();
|
|
|
|
await page.reload();
|
|
|
|
await expect(page.getByTestId('open-in-app-card')).not.toBeInViewport();
|
|
|
|
// seems there is no way to bypass the open popup blocker via playwright
|
|
});
|