-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fast-follows-0.34
- Loading branch information
Showing
120 changed files
with
2,581 additions
and
952 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Note that provide always without trailing forward slash to have expected behaviour | ||
FRONTEND_BASE_URL=http://localhost:3001 | ||
FRONTEND_BASE_URL=http://app.localhost:3001 | ||
CI_DEFAULT_BASE_URL=https://demo.twenty.com | ||
DEFAULT_LOGIN=[email protected] | ||
NEW_WORKSPACE_LOGIN=[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
packages/twenty-e2e-testing/tests/authentication/login.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { test as base, expect } from '../../lib/fixtures/screenshot'; | ||
import { LoginPage } from '../../lib/pom/loginPage'; | ||
|
||
// fixture | ||
const test = base.extend<{ loginPage: LoginPage }>({ | ||
loginPage: async ({ page }, use) => { | ||
await use(new LoginPage(page)); | ||
}, | ||
}); | ||
|
||
test('Check login with email', async ({ loginPage }) => { | ||
await loginPage.typeEmail(process.env.DEFAULT_LOGIN); | ||
await loginPage.clickContinueButton(); | ||
await loginPage.typePassword(process.env.DEFAULT_PASSWORD); | ||
await loginPage.clickSignInButton(); | ||
await expect(loginPage.signInButton).not.toBeVisible(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ront/src/modules/object-record/object-options-dropdown/hooks/useSearchRecordGroupField.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.