mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-16 09:36:17 +08:00
test: test case is added to firebase.app redirect
This commit is contained in:
@@ -14,4 +14,24 @@ test.describe('Login Flow', () => {
|
||||
.getByRole('heading', { name: 'Currently not logged in' })
|
||||
.click();
|
||||
});
|
||||
|
||||
test('Open google firebase page', async ({ page }) => {
|
||||
await page.getByTestId('current-workspace').click();
|
||||
await page.waitForTimeout(800);
|
||||
// why don't we use waitForSelector, It seems that waitForSelector not stable?
|
||||
await page.getByTestId('open-login-modal').click();
|
||||
await page.waitForTimeout(800);
|
||||
const [firebasePage] = await Promise.all([
|
||||
page.waitForEvent('popup'),
|
||||
page
|
||||
.getByRole('button', {
|
||||
name: 'Google Continue with Google Set up an AFFINE account to sync data',
|
||||
})
|
||||
.click(),
|
||||
]);
|
||||
|
||||
expect(await firebasePage.url()).toContain(
|
||||
'.firebaseapp.com/__/auth/handler'
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user